@font-face {
  font-family: "Petrona";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/petrona-400.woff2") format("woff2");
}

@font-face {
  font-family: "Petrona";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/petrona-500.woff2") format("woff2");
}

@font-face {
  font-family: "Petrona";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/petrona-600.woff2") format("woff2");
}

@font-face {
  font-family: "Petrona";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/petrona-700.woff2") format("woff2");
}

@font-face {
  font-family: "Petrona";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/petrona-400-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/instrument-sans-400.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/instrument-sans-500.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/instrument-sans-600.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/instrument-sans-700.woff2") format("woff2");
}

:root {
  --navy: #212233;
  --navy-deep: #16172a;
  --indigo: #37375c;
  --indigo-lift: #4a4a78;
  --olive: #667353;
  --olive-lift: #9dae74;
  --olive-pale: #c3cfa6;
  --paper: #f1f1f4;
  --paper-2: #e6e6ec;
  --pad: 45px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 136px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy-deep);
  font: 400 17px/1.75 "Instrument Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: "Petrona", Palatino, Georgia, serif;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

p {
  margin: 0 0 1.05em;
}

:focus-visible {
  outline: 2px solid var(--olive-lift);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 19px 34px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  max-width: 100%;
  text-align: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--primary {
  background: var(--olive);
  color: #fff;
}

.btn--primary:hover {
  background: #55613f;
}

.btn--outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(195, 207, 166, 0.55);
}

.btn--outline:hover {
  background: var(--olive-lift);
  color: var(--navy-deep);
  border-color: var(--olive-lift);
}

.btn--sm {
  font-size: 16px;
  padding: 14px 26px;
}

/* ---------- utility bar ---------- */

.utility {
  background: var(--navy-deep);
  color: #b9bac9;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.utility__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.utility__location {
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.utility__right {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  flex-shrink: 0;
}

.utility__phone:hover {
  color: var(--olive-pale);
}

/* ---------- header ---------- */

.header {
  position: relative;
  z-index: 20;
}

.header__overlay {
  display: none;
}

.header__bar {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid #dedee5;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 158px;
  height: 32px;
  max-width: none;
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  z-index: 4;
}

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.is-open .header__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header.is-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header.is-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 34px);
}

.header__nav-item {
  flex-shrink: 0;
}

.header__nav-link {
  display: block;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.005em;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--olive);
  transition: right 0.3s ease;
}

.header__nav-link:hover::after {
  right: 0;
}

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  flex-shrink: 0;
}

.header__phone {
  font-family: "Petrona", Georgia, serif;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 600;
  color: var(--indigo);
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.header__cta .btn--sm {
  font-size: clamp(13px, 1vw, 16px);
  padding: clamp(10px, 0.9vw, 14px) clamp(16px, 1.6vw, 26px);
  flex-shrink: 0;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(19, 20, 35, 0.97) 0%,
    rgba(23, 24, 42, 0.9) 38%,
    rgba(33, 34, 51, 0.5) 66%,
    rgba(33, 34, 51, 0.22) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(100%, 640px);
  width: min(100%, 55%);
  padding: clamp(8px, 2vw, 28px) clamp(0px, 1vw, 12px) 0 0;
}

.hero__eyebrow {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-lift);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  line-height: 1.4;
}

.hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.hero__title {
  font-size: clamp(36px, 4.1vw, 60px);
  color: #fff;
  letter-spacing: -0.028em;
  font-weight: 600;
  margin: 0 0 20px;
}

.hero__subtitle {
  font-family: "Petrona", Georgia, serif;
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 400;
  font-style: italic;
  color: var(--olive-pale);
  line-height: 1.45;
  margin: 0 0 34px;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__tel {
  font-family: "Petrona", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero__tel svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--olive-lift);
}

.hero__tel:hover {
  color: var(--olive-pale);
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}

.hero__image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 3;
  background: linear-gradient(90deg, var(--olive) 0%, var(--olive) 22%, rgba(102, 115, 83, 0) 22%);
}

/* ---------- accolades ---------- */

.accolades {
  background: #fff;
  border-bottom: 1px solid #dedee5;
}

.accolades__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
  padding-top: 34px;
  padding-bottom: 34px;
}

.accolades__claim {
  flex: 0 0 auto;
  max-width: 306px;
  font-family: "Petrona", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--indigo);
  letter-spacing: -0.015em;
  border-right: 1px solid #dedee5;
  padding-right: clamp(24px, 2.4vw, 44px);
}

.accolades__label {
  display: block;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 9px;
}

.accolades__seals {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(20px, 3vw, 52px);
  min-width: 0;
  flex-wrap: wrap;
}

.accolades__seal {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolades__seal img {
  opacity: 0.58;
  transition: opacity 0.3s ease;
  max-width: 100%;
  height: auto;
}

.accolades__seal:hover img {
  opacity: 1;
}

/* ---------- sections ---------- */

.section {
  padding-top: clamp(72px, 6.4vw, 116px);
  padding-bottom: clamp(72px, 6.4vw, 116px);
}

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

.section--white {
  background: #fff;
}

.section__eyebrow {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

.section__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.section__eyebrow--light {
  color: var(--olive-lift);
}

.section__eyebrow--centered {
  justify-content: center;
}

.section__title {
  font-size: clamp(29px, 2.9vw, 44px);
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}

.section__lede {
  font-size: 18px;
  line-height: 1.72;
  color: #4c4d63;
  max-width: 60ch;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(34px, 3.2vw, 54px);
  flex-wrap: wrap;
}

/* ---------- about ---------- */

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(40px, 4.4vw, 86px);
  align-items: start;
}

.about__figure {
  position: relative;
  margin: 0;
}

.about__image {
  width: 100%;
  aspect-ratio: 104 / 124;
  object-fit: cover;
  border-radius: 3px;
}

.about__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--indigo);
  color: #fff;
  padding: 22px 26px;
  max-width: 82%;
  border-radius: 0 3px 0 0;
}

.about__name {
  display: block;
  font-family: "Petrona", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.about__role {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-pale);
  display: block;
  margin-top: 7px;
}

.about__title {
  font-size: clamp(28px, 2.8vw, 42px);
  letter-spacing: -0.026em;
  margin: 0 0 14px;
}

.about__sub {
  font-family: "Petrona", Georgia, serif;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--olive);
  line-height: 1.42;
  margin: 0 0 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dcdce4;
  letter-spacing: -0.01em;
}

.about__body p {
  font-size: 17px;
  line-height: 1.78;
  color: #43445a;
}

.about__callout {
  margin-top: 36px;
  background: #fff;
  border-left: 4px solid var(--olive);
  padding: 30px 34px;
  border-radius: 0 3px 3px 0;
}

.about__callout p {
  margin: 0;
  font-family: "Petrona", Georgia, serif;
  font-size: 21px;
  line-height: 1.5;
  color: var(--indigo);
  font-weight: 500;
  letter-spacing: -0.012em;
}

.about__callout a {
  color: var(--olive);
  border-bottom: 1px solid rgba(102, 115, 83, 0.4);
  white-space: nowrap;
}

.about__callout a:hover {
  border-bottom-color: var(--olive);
}

/* ---------- practice ---------- */

.practice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 30px);
}

.practice__card {
  background: #fff;
  border: 1px solid #dedee5;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.practice__card:hover {
  border-color: var(--olive);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(22, 23, 42, 0.42);
}

.practice__thumb {
  overflow: hidden;
  background: var(--navy-deep);
}

.practice__thumb img {
  width: 100%;
  aspect-ratio: 320 / 224;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.practice__card:hover .practice__thumb img {
  transform: scale(1.05);
}

.practice__body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.practice__title {
  font-size: 23px;
  letter-spacing: -0.022em;
  margin: 0 0 12px;
  color: var(--indigo);
}

.practice__body p {
  font-size: 15.5px;
  line-height: 1.68;
  color: #54556b;
  margin: 0 0 20px;
}

.practice__more {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice__more i {
  width: 20px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: width 0.3s ease;
}

.practice__card:hover .practice__more i {
  width: 34px;
}

/* ---------- docket / results ---------- */

.docket {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.docket .section__title {
  color: #fff;
}

.docket__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(157, 174, 116, 0.1), transparent 52%),
    radial-gradient(ellipse at 80% 100%, rgba(74, 74, 120, 0.28), transparent 46%),
    var(--navy-deep);
}

.docket__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 15, 26, 0.55), rgba(20, 21, 38, 0.72));
}

.docket__inner {
  position: relative;
}

.docket__list {
  border-top: 1px solid rgba(195, 207, 166, 0.24);
}

.docket__row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) 92px 128px;
  align-items: center;
  gap: clamp(16px, 2vw, 40px);
  padding: clamp(24px, 2.2vw, 34px) 0;
  border-bottom: 1px solid rgba(195, 207, 166, 0.24);
  transition: background-color 0.3s ease;
}

.docket__row:hover {
  background: rgba(157, 174, 116, 0.07);
}

.docket__code {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-lift);
  min-width: 0;
}

.docket__outcome {
  font-family: "Petrona", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: #fff;
  min-width: 0;
}

.docket__year {
  font-family: "Petrona", Georgia, serif;
  font-size: 19px;
  color: #9a9bb0;
  font-variant-numeric: tabular-nums;
}

.docket__link {
  justify-self: end;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  padding: 13px 22px;
  border: 1px solid rgba(195, 207, 166, 0.4);
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}

.docket__link:hover {
  background: var(--olive-lift);
  color: var(--navy-deep);
  border-color: var(--olive-lift);
}

.docket__note {
  margin: 34px 0 0;
  font-size: 14px;
  color: #8a8b9e;
  max-width: 74ch;
}

/* ---------- apart ---------- */

.apart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.apart__item {
  padding: 0 clamp(20px, 2.2vw, 38px);
  border-left: 1px solid #dcdce4;
}

.apart__item:first-child {
  padding-left: 0;
  border-left: 0;
}

.apart__item:last-child {
  padding-right: 0;
}

.apart__title {
  font-size: clamp(20px, 1.65vw, 25px);
  letter-spacing: -0.022em;
  color: var(--indigo);
  margin: 0 0 14px;
  padding-top: 22px;
  border-top: 3px solid var(--olive);
  min-height: calc(2.16em + 22px);
}

.apart__item p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #54556b;
  margin: 0;
}

/* ---------- testimonial ---------- */

.testimonial {
  background: var(--indigo);
  color: #fff;
}

.testimonial__inner {
  max-width: 1180px;
  text-align: center;
}

.testimonial__quote {
  font-family: "Petrona", Georgia, serif;
  font-size: clamp(27px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 30px;
}

.testimonial__body {
  font-size: 17.5px;
  line-height: 1.78;
  color: #c6c7da;
  max-width: 78ch;
  margin: 0 auto 30px;
}

.testimonial__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-pale);
}

/* ---------- contact ---------- */

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

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: clamp(40px, 4.4vw, 84px);
  align-items: start;
}

.contact__title {
  font-size: clamp(29px, 2.9vw, 44px);
  letter-spacing: -0.026em;
  margin: 0 0 18px;
}

.contact__info .section__lede {
  margin-bottom: 34px;
}

.contact__block {
  border-top: 1px solid #dcdce4;
  padding: 22px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact__key {
  flex: 0 0 108px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  padding-top: 5px;
}

.contact__value {
  font-family: "Petrona", Georgia, serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.contact__value a:hover {
  color: var(--olive);
}

.form {
  background: #fff;
  border: 1px solid #dedee5;
  border-radius: 3px;
  padding: clamp(28px, 2.6vw, 44px);
}

.form__title {
  font-size: 26px;
  letter-spacing: -0.022em;
  margin: 0 0 6px;
  color: var(--indigo);
}

.form__hint {
  font-size: 15px;
  color: #5b5c72;
  margin: 0 0 26px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__field {
  margin-bottom: 16px;
  min-width: 0;
}

.form__field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a7b90;
  margin-bottom: 7px;
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  font: 400 15px/40px "Instrument Sans", Arial, sans-serif;
  color: var(--navy-deep);
  background: #fafafc;
  border: 1px solid #d6d7e0;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}

.form__field select {
  line-height: normal;
  appearance: none;
  background-image: url("../assets/images/icon-select.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 36px;
}

.form__field textarea {
  height: 120px;
  line-height: 1.6;
  padding: 11px 14px;
  resize: vertical;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--olive);
  background: #fff;
  outline: none;
}

.form .btn {
  width: 100%;
  margin-top: 8px;
}

.form__fine {
  font-size: 12.5px;
  line-height: 1.6;
  color: #8a8b9e;
  margin: 16px 0 0;
}

/* ---------- footer ---------- */

.footer {
  background: var(--navy-deep);
  color: #9899ad;
  padding-top: clamp(58px, 4.6vw, 84px);
  padding-bottom: 30px;
  font-size: 15px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 3.4vw, 70px);
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  width: 290px;
  height: 58px;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.footer__heading {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-lift);
  margin: 0 0 20px;
}

.footer p {
  line-height: 1.75;
  margin: 0 0 14px;
  max-width: 44ch;
}

.footer__list li {
  margin-bottom: 11px;
}

.footer a:hover {
  color: var(--olive-pale);
}

.footer__tel {
  font-family: "Petrona", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
  display: block;
  margin-bottom: 8px;
}

.footer__bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #6f7086;
}

.footer__bottom p {
  margin: 0;
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- header shrink: type scales before hamburger ---------- */

@media (max-width: 1400px) {
  .header__nav-list {
    gap: 16px;
  }

  .header__inner {
    gap: 18px;
  }
}

/* ---------- nav breakpoint: hamburger below 1200px ---------- */

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(22, 23, 42, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header.is-open .header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__bar {
    z-index: 2;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    padding: 84px 28px 40px;
    z-index: 2;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: translateX(100%);
    visibility: hidden;
    overflow-y: auto;
    box-shadow: -18px 0 40px rgba(22, 23, 42, 0.18);
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  .header.is-open .header__nav {
    transform: translateX(0);
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid #ededf1;
  }

  .header__nav-link {
    font-size: 16px;
    padding: 16px 0;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #dedee5;
  }

  .header__nav-extras .header__phone {
    font-size: 22px;
  }

  .header__nav-extras .btn {
    width: 100%;
    white-space: normal;
  }

  .header__cta {
    display: none;
  }

  .hero__content {
    width: min(100%, 54%);
  }

  .hero__visual {
    width: 40%;
  }

  .docket__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 74px 118px;
  }

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

  .apart {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .apart__item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .accolades__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .accolades__claim {
    border-right: 0;
    padding-right: 0;
    max-width: none;
  }

  .accolades__seals {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  :root {
    --pad: 32px;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    font-size: 17px;
    padding: 16px 26px;
  }

  .btn--sm {
    font-size: 15px;
    padding: 13px 22px;
  }

  .about {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .about__image {
    aspect-ratio: 16 / 11;
  }

  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .docket__row {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
  }

  .docket__code {
    grid-column: 1 / -1;
    order: 1;
  }

  .docket__outcome {
    order: 2;
  }

  .docket__year {
    order: 3;
    justify-self: end;
  }

  .docket__link {
    grid-column: 1 / -1;
    order: 4;
    justify-self: start;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: calc(100svh - var(--site-chrome-height));
    min-height: 0;
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
    display: flex;
    flex-direction: column;
  }

  .hero__veil {
    background: linear-gradient(
      170deg,
      rgba(19, 20, 35, 0.96) 0%,
      rgba(23, 24, 42, 0.9) 55%,
      rgba(33, 34, 51, 0.62) 100%
    );
  }

  .hero__inner {
    height: auto;
    flex: 0 1 auto;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 clamp(12px, 3vw, 24px);
  }

  .hero__title {
    font-size: clamp(30px, 8vw, 42px);
    margin-bottom: 14px;
  }

  .hero__subtitle {
    margin-bottom: 22px;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    justify-content: center;
    flex: 1 1 auto;
  }

  .hero__image {
    height: 100%;
    width: auto;
    max-width: min(320px, 82vw);
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 20px;
  }

  .utility__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
  }

  .utility__location {
    font-size: 10.5px;
    letter-spacing: 0.12em;
  }

  .utility__right {
    flex-wrap: wrap;
    gap: 6px 18px;
    white-space: normal;
  }

  .utility__note {
    display: none;
  }

  .header__inner {
    min-height: 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__tel {
    white-space: normal;
  }

  .practice {
    grid-template-columns: minmax(0, 1fr);
  }

  .apart {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .apart__item {
    padding: 0;
    border-left: 0;
  }

  .accolades__seals {
    gap: 22px 26px;
    justify-content: flex-start;
  }

  .accolades__seal img {
    max-height: 46px;
    width: auto;
  }

  .form__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact__block {
    flex-direction: column;
    gap: 6px;
  }

  .contact__key {
    flex: none;
  }

  .about__callout {
    padding: 24px 22px;
  }

  .about__callout a {
    white-space: normal;
  }
}
