/* Halle Merrick LLP — firm site */

:root {
  --navy: #0b1c2c;
  --navy-2: #13283c;
  --ink: #14202b;
  --mute: #5c6973;
  --line: #d9dde1;
  --paper: #f4f5f6;
  --white: #fff;
  --gold: #b08d4f;
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --pad: clamp(1.15rem, 3.5vw, 2.75rem);
  --wrap: 1180px;
  --util-h: 36px;
  --head-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}

button {
  cursor: pointer;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 80;
  padding: 0.45rem 0.7rem;
  background: var(--navy);
  color: var(--white);
}

.skip:focus {
  top: 0.5rem;
}

.wrap {
  width: min(var(--wrap), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}

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

/* —— chrome —— */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
}

.util {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: var(--util-h);
  padding: 0 var(--pad);
  background: var(--navy);
  color: #c5d0d8;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.util a {
  margin-left: 1.35rem;
}

.util a:hover,
.util a.is-on {
  color: var(--white);
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 1.5rem;
}

.lang button {
  padding: 0;
  color: #8fa0ad;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.lang button.is-on,
.lang button:hover {
  color: var(--white);
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 1.5rem;
}

.lang button {
  padding: 0;
  color: #8fa0ad;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.lang button.is-on,
.lang button:hover {
  color: var(--white);
}

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--head-h);
  padding: 0 var(--pad);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--navy);
  white-space: nowrap;
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: block;
}

.logo small {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.head__nav {
  display: flex;
  align-items: stretch;
  gap: 0.2rem 1.75rem;
  margin-left: auto;
  height: 100%;
  font-size: 0.95rem;
}

.head__nav > a,
.drop > .drop__btn {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--navy);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.head__nav > a:hover,
.drop:hover > .drop__btn,
.head__nav > a.is-on,
.drop.is-on > .drop__btn {
  color: var(--gold);
}

.drop {
  position: relative;
}

.drop__menu {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: -1.25rem;
  min-width: 280px;
  padding: 0.65rem 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(11, 28, 44, 0.08);
}

.drop:hover .drop__menu,
.drop:focus-within .drop__menu {
  display: block;
}

.drop__menu a {
  display: block;
  padding: 0.45rem 1.35rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.drop__menu a:hover {
  background: var(--paper);
  color: var(--navy);
}

.head__tools {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--navy);
}

.icon-btn:hover {
  color: var(--gold);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.menu-btn {
  display: none;
}

/* —— search / mobile —— */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(11, 28, 44, 0.42);
}

.overlay.is-open {
  display: block;
}

.search {
  display: none;
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem var(--pad) 1.75rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.search.is-open {
  display: block;
}

.search label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.search input[type="search"] {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--navy);
  font-size: 1.35rem;
  font-family: var(--serif);
}

.search__hits {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  max-height: 50vh;
  overflow: auto;
}

.search__hits a {
  display: block;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.search__hits a strong {
  font-weight: 600;
}

.search__hits a span {
  display: block;
  color: var(--mute);
  font-size: 0.82rem;
}

.drawer {
  display: none;
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  padding: 1.25rem 1.4rem 2rem;
  background: var(--navy);
  color: var(--white);
  overflow: auto;
}

.drawer.is-open {
  display: block;
}

.drawer a {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid #24384a;
  font-size: 1.15rem;
}

.drawer .drawer__sub {
  font-size: 0.92rem;
  color: #c5d0d8;
  padding-left: 0.4rem;
}

/* —— hero —— */
.hero {
  position: relative;
  min-height: min(78vh, 760px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--navy) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 28, 44, 0.15) 0%,
    rgba(11, 28, 44, 0.45) 48%,
    rgba(11, 28, 44, 0.88) 100%
  );
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 3.4rem;
  padding-top: 6rem;
}

.hero h1 {
  max-width: 22ch;
  margin-top: 0.7rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.8vw, 3.1rem);
  font-weight: 400;
  line-height: 1.18;
}

.hero__meta {
  margin-top: 1.15rem;
  max-width: 34rem;
  color: #d5dde3;
  font-size: 1.02rem;
}

.hero__more {
  display: inline-block;
  margin-top: 1.35rem;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

/* —— page hero (inner) —— */
.page-hero {
  padding: 2.75rem 0 2.4rem;
  background: var(--navy);
  color: var(--white);
}

.page-hero h1 {
  margin-top: 0.45rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.page-hero p {
  max-width: 38rem;
  margin-top: 0.85rem;
  color: #c5d0d8;
}

/* —— sections —— */
.sec {
  padding: 4.25rem 0;
}

.sec--paper {
  background: var(--paper);
}

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

.sec h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 400;
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.sec--navy .sec-head {
  border-bottom-color: #2a4156;
}

.news {
  list-style: none;
}

.news li {
  border-bottom: 1px solid var(--line);
}

.news a {
  display: grid;
  grid-template-columns: 8.5rem 8.5rem 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  align-items: baseline;
}

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

.news time,
.news em {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--mute);
}

.news h3 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.card {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy) center / cover no-repeat;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(11, 28, 44, 0.88));
}

.card div {
  position: relative;
  z-index: 1;
  padding: 1.2rem 1.15rem 1.3rem;
}

.card span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e2c98a;
}

.card h3 {
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.overview h2 {
  margin-bottom: 0.7rem;
}

.overview p {
  color: #33404a;
  max-width: 28rem;
}

.practices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.practices a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.28rem;
}

.practices a:nth-child(odd) {
  padding-right: 1.5rem;
}

.practices a:nth-child(even) {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

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

.practices i {
  font-style: normal;
  color: var(--gold);
}

.find {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.find p {
  margin-top: 0.7rem;
  color: #c5d0d8;
}

.find form {
  display: flex;
  gap: 0;
  background: var(--white);
}

.find input {
  flex: 1;
  padding: 0.9rem 1rem;
  color: var(--navy);
}

.find button {
  padding: 0.9rem 1.2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

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

.offices h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.offices p {
  margin-top: 0.35rem;
  color: var(--mute);
  font-size: 0.92rem;
}

.office-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.office-card__img {
  min-height: 220px;
  background: var(--navy) center / cover no-repeat;
}

.office-card.is-hq {
  border-color: var(--navy);
}

.office-card__badge {
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.office-card.is-hq {
  border-color: var(--navy);
}

.office-card__badge {
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.office-card__body {
  padding: 1.4rem 1.35rem 1.5rem;
}

.office-card__body address {
  font-style: normal;
  margin-top: 0.55rem;
  line-height: 1.55;
  color: #33404a;
}

.office-card__meta {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #33404a;
}

.office-card__meta a {
  border-bottom: 1px solid var(--line);
}

.office-card__meta a:hover {
  border-bottom-color: var(--gold);
  color: var(--navy);
}

.office-card__body .blurb {
  margin-top: 0.85rem;
  color: var(--mute);
  font-size: 0.92rem;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-media__img {
  min-height: 360px;
  background: var(--navy) center / cover no-repeat;
}

.scare {
  background: #070f16;
  color: var(--white);
  border-top: 1px solid #1c2c3a;
  border-bottom: 1px solid #1c2c3a;
}

.scare .wrap {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.scare h2 {
  max-width: 18ch;
}

.scare p {
  max-width: 40rem;
  margin-top: 0.9rem;
  color: #c5d0d8;
}

.scare__rules {
  list-style: none;
  margin-top: 1.5rem;
  max-width: 42rem;
  border-top: 1px solid #2a4156;
}

.scare__rules li {
  padding: 0.85rem 0;
  border-bottom: 1px solid #2a4156;
  font-size: 0.98rem;
  color: #e8eef2;
}

.scare__rules strong {
  color: var(--gold);
  font-weight: 600;
}

.scare .link {
  margin-top: 1.5rem;
  color: var(--white);
  border-bottom-color: var(--gold);
}

.letter {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.letter__ref {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.letter h1 {
  margin: 0.6rem 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 400;
  line-height: 1.15;
}

.letter p {
  margin-top: 0.95rem;
  line-height: 1.65;
}

.letter__box {
  margin: 1.75rem 0;
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--navy);
  background: var(--paper);
}

.letter__box p {
  margin: 0;
  font-size: 0.95rem;
}

.letter__box p + p {
  margin-top: 0.55rem;
}

.addr-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2rem;
  margin-top: 1.5rem;
}

.addr-list h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.addr-list address {
  font-style: normal;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #33404a;
}

.addr-list .tel {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
}

.roster td small {
  display: block;
  margin-top: 0.15rem;
  font-weight: 400;
  color: var(--mute);
  font-size: 0.82rem;
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 2rem 0 0.85rem;
}

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

.prose p + p,
.prose ul {
  margin-top: 0.9rem;
}

.practice-block {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line);
}

.practice-block header {
  margin-bottom: 1.15rem;
}

.practice-block header span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.practice-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 400;
  margin-top: 0.35rem;
}

.prose ul {
  padding-left: 1.1rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
}

.filters input,
.filters select {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--white);
  min-width: 160px;
}

.roster {
  width: 100%;
  border-collapse: collapse;
}

.roster th,
.roster td {
  text-align: left;
  padding: 0.85rem 0.6rem 0.85rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.roster th {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.roster td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.roster td a {
  color: var(--navy);
}

.roster td:first-child a {
  border-bottom: 1px solid var(--line);
}

.roster td:first-child a {
  border-bottom: 1px solid var(--line);
}

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

.roster-group {
  margin-top: 2.25rem;
}

.roster-group:first-child {
  margin-top: 0;
}

.roster-group h2 {
  margin-bottom: 0.65rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.az {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin: 0 0 1.5rem;
}

.az button {
  min-width: 1.85rem;
  padding: 0.3rem 0.4rem;
  color: var(--mute);
  font-size: 0.82rem;
  font-weight: 600;
}

.az button:hover,
.az button.is-on {
  color: var(--navy);
}

.profile-page {
  padding: 2.4rem 0 4rem;
}

.profile-back {
  margin-bottom: 1.5rem;
}

.profile {
  max-width: 42rem;
}

.profile__body h1 {
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
}

.profile__meta {
  margin: 0.65rem 0 1rem;
  color: var(--mute);
}

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

.profile__email {
  margin: 1.15rem 0;
}

.profile__email a {
  border-bottom: 1px solid var(--gold);
}

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

.roster td a {
  color: var(--navy);
}

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

.roster-group {
  margin-top: 2.25rem;
}

.roster-group:first-child {
  margin-top: 0;
}

.roster-group h2 {
  margin-bottom: 0.65rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.az {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin: 0 0 1.5rem;
}

.az button {
  min-width: 1.85rem;
  padding: 0.3rem 0.4rem;
  color: var(--mute);
  font-size: 0.82rem;
  font-weight: 600;
}

.az button:hover,
.az button.is-on {
  color: var(--navy);
}

.profile-page {
  padding: 2.4rem 0 4rem;
}

.profile-back {
  margin-bottom: 1.5rem;
}

.profile {
  max-width: 42rem;
}

.profile__body h1 {
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
}

.profile__meta {
  margin: 0.65rem 0 1rem;
  color: var(--mute);
}

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

.profile__email {
  margin: 1.15rem 0;
}

.profile__email a {
  border-bottom: 1px solid var(--gold);
}

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

.roster tr:hover td {
  background: #fafbfc;
}

.insight {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--util-h) + var(--head-h) + 1rem);
}

.insight:target {
  background: #f7f5ef;
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.insight header {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--mute);
  margin-bottom: 0.4rem;
}

.insight h2 {
  font-size: 1.45rem;
}

.insight p {
  margin-top: 0.55rem;
  max-width: 46rem;
}

.byline {
  font-size: 0.88rem;
  color: var(--mute);
}

.byline a {
  border-bottom: 1px solid var(--line);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
}

form.stack {
  display: grid;
  gap: 0.85rem;
}

form.stack label span {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

form.stack input,
form.stack select,
form.stack textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0;
}

form.stack input:focus,
form.stack select:focus,
form.stack textarea:focus {
  outline: 1px solid var(--navy);
  border-color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  width: fit-content;
}

.btn:hover {
  background: var(--navy-2);
}

.form-sent {
  min-height: 1.2em;
  font-size: 0.88rem;
  color: var(--mute);
}

.form-sent.is-error {
  color: #8a2a1b;
}

.notice {
  padding: 2.5rem 0 4rem;
}

.notice h1 {
  max-width: 18ch;
  margin: 0.4rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
}

.notice p {
  max-width: 40rem;
}

.notice p + p {
  margin-top: 0.85rem;
}

.rankings__lead {
  margin: -0.4rem 0 1.6rem;
  max-width: 42rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.sec--rankings {
  padding: 1.75rem 0;
  background: #f7f4ee;
}

.rankings__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.85rem;
}

.ll-group__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.15rem;
}

.ll-group__head h3 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: #7a4a3a;
}

.ll-group__head span {
  font-size: 0.75rem;
  color: #9aa3ab;
}

.ll-rows {
  list-style: none;
}

.ll-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dotted #e2d9cc;
  font-size: 0.88rem;
  color: var(--mute);
}

.ll-marks {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.ll-tier {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  color: #7a4a3a;
  background: #efe4d8;
}

.ll-stamps {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.ll-stamps img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--white);
}

.ll-stamps--foot {
  grid-template-columns: repeat(2, 72px);
  justify-content: start;
  gap: 0.65rem;
}

.ll-stamps--foot img {
  background: var(--white);
}

.foot__rankings {
  width: min(var(--wrap), 100%);
  margin: 0 auto;
  padding: 1rem 0 0.35rem;
  border-bottom: 1px solid #2a4156;
}

.foot__rankings p {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.foot {
  background: var(--navy);
  color: #c5d0d8;
  padding: 3rem var(--pad) 1.5rem;
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  width: min(var(--wrap), 100%);
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2a4156;
}

.foot__brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--white);
}

.foot__brand + address {
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #c5d0d8;
}

.foot__brand + address a {
  display: inline;
}

.foot h2 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.foot a {
  display: block;
  padding: 0.18rem 0;
  font-size: 0.92rem;
}

.foot a:hover {
  color: var(--white);
}

.foot__legal {
  width: min(var(--wrap), 100%);
  margin: 0 auto;
  padding-top: 1.1rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #8fa0ad;
}

.foot__legal p + p {
  margin-top: 0.35rem;
}

.foot__legal a {
  display: inline;
  font-size: inherit;
}

@media (max-width: 900px) {
  .head__nav {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .news a {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.95rem 0;
  }

  .cards,
  .overview,
  .practices,
  .find,
  .offices,
  .contact-grid,
  .foot__grid,
  .office-card,
  .split-media,
  .addr-list,
  .profile {
    grid-template-columns: 1fr;
  }

  .ll-stamps--foot {
    grid-template-columns: repeat(2, 72px);
  }

  .practices a:nth-child(odd),
  .practices a:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .roster {
    display: block;
    overflow-x: auto;
  }

  .office-card__img {
    min-height: 160px;
  }

  .cookies {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookies {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem var(--pad);
  background: var(--navy);
  color: #e8eef2;
  box-shadow: 0 -8px 24px rgba(11, 28, 44, 0.18);
}

.cookies[hidden] {
  display: none;
}

.cookies p {
  margin: 0;
  max-width: 46rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookies a {
  color: var(--gold);
  border-bottom: 1px solid rgba(176, 141, 79, 0.45);
}

.cookies__btns {
  display: flex;
  flex-shrink: 0;
  gap: 0.6rem;
}

.cookies button {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookies button[data-cookie="allow"] {
  background: var(--gold);
  color: var(--navy);
}

.cookies button[data-cookie="decline"] {
  color: var(--white);
}

body.has-cookies {
  padding-bottom: 5.5rem;
}

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