@import url("/css/colors.css");

:root {
  --shadow-lg: 0 15px 35px -5px var(--color-shadow-strong);
  --shadow-md: 0 8px 20px -3px var(--color-shadow-medium);
  --shadow-sm: 0 2px 8px -2px var(--color-shadow-soft);

  --page-bg: var(--pair-default-bg);
  --page-fg: var(--pair-default-fg);
  --heading-color: var(--pair-default-heading);
  --focus-color: var(--pair-default-focus);
  --link-bg: var(--pair-light-link-bg);
  --link-fg: var(--pair-light-link-fg);
  --link-hover-bg: var(--pair-light-link-hover-bg);
  --link-hover-fg: var(--pair-light-link-hover-fg);
  --btn-bg: transparent;
  --btn-fg: inherit;
  --btn-border: transparent;
  --btn-hover-bg: var(--pair-default-hover-bg);
  --btn-hover-fg: var(--pair-default-hover-fg);
  --btn-hover-border: transparent;
  --btn-primary-bg: var(--pair-light-btn-primary-bg);
  --btn-primary-fg: var(--pair-light-btn-primary-fg);
  --btn-primary-border: var(--pair-light-btn-primary-border);
  --btn-primary-hover-bg: var(--pair-light-btn-primary-hover-bg);
  --btn-primary-hover-fg: var(--pair-light-btn-primary-hover-fg);
  --btn-primary-hover-border: var(--pair-light-btn-primary-hover-border);
  --btn-secondary-bg: var(--pair-light-btn-secondary-bg);
  --btn-secondary-fg: var(--pair-light-btn-secondary-fg);
  --btn-secondary-border: var(--pair-light-btn-secondary-border);
  --btn-secondary-hover-bg: var(--pair-light-btn-secondary-hover-bg);
  --btn-secondary-hover-fg: var(--pair-light-btn-secondary-hover-fg);
  --btn-secondary-hover-border: var(--pair-light-btn-secondary-hover-border);
  --btn-ghost-bg: var(--pair-light-btn-ghost-bg);
  --btn-ghost-fg: var(--pair-light-btn-ghost-fg);
  --btn-ghost-border: var(--pair-light-btn-ghost-border);
  --btn-ghost-hover-bg: var(--pair-light-btn-ghost-hover-bg);
  --btn-ghost-hover-fg: var(--pair-light-btn-ghost-hover-fg);
  --btn-ghost-hover-border: var(--pair-light-btn-ghost-hover-border);
  --card-bg: var(--pair-light-card-bg);
  --card-fg: var(--pair-light-card-fg);
  --card-heading: var(--pair-light-card-heading);
  --card-border: var(--pair-light-card-border);
  --card-hover-bg: var(--pair-light-card-hover-bg);
  --card-hover-fg: var(--pair-light-card-hover-fg);
  --card-hover-heading: var(--pair-light-card-hover-heading);
  --card-hover-border: var(--pair-light-card-hover-border);
  --card-shadow: var(--shadow-sm);
  --field-bg: var(--pair-light-field-bg);
  --field-fg: var(--pair-light-field-fg);
  --field-border: var(--pair-light-field-border);
  --field-focus-bg: var(--pair-light-field-focus-bg);
  --field-focus-fg: var(--pair-light-field-focus-fg);
  --field-focus-border: var(--pair-light-field-focus-border);
  --field-label: var(--heading-color);
  --field-help: var(--pair-default-muted);
  --form-note-color: var(--pair-default-muted);

  --radius-xl: 6px;
  --radius-lg: 4px;
  --radius-md: 3px;
  --radius-sm: 2px;

  --font-body: Arial, Helvetica, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-size-body: 1rem;
  --font-size-body-sm: 0.92rem;
  --font-size-caption: 0.85rem;
  --font-size-title: clamp(2rem, 4vw, 3.4rem);
  --font-size-subtitle: clamp(1rem, 1.4vw, 1.2rem);
  --font-size-section-title: clamp(1.8rem, 2.5vw, 2.2rem);
  --font-size-section-subtitle: 1rem;
  --font-size-heading-3: 1.3rem;
  --font-size-control: 0.95rem;
  --font-size-control-sm: 0.86rem;
  --font-size-form-title: 1rem;
  --font-size-form-title-compact: 0.88rem;
  --font-size-form-note: 0.9rem;
  --font-size-form-notice: 0.92rem;
  --font-size-form-label: 0.88rem;
  --font-size-form-label-compact: 0.78rem;
  --font-size-form-error: 0.85rem;
  --font-size-footer-heading: 0.86rem;
  --font-size-footer-brand: 1.2rem;
  --font-size-icon: 1rem;
  --font-size-icon-sm: 0.9rem;
  --font-size-mobile-caption: 0.8rem;
  --font-weight-regular: 400;
  --font-weight-heading: 400;
  --font-weight-title: var(--font-weight-heading);
  --font-weight-subtitle: var(--font-weight-regular);
  --font-weight-section-title: var(--font-weight-heading);
  --font-weight-section-subtitle: var(--font-weight-regular);
  --font-weight-strong: 700;
  --font-weight-control: var(--font-weight-strong);
  --font-weight-form-title: var(--font-weight-strong);
  --font-weight-form-label: var(--font-weight-strong);
  --line-height-body: 1.65;
  --line-height-heading: 1.18;
  --line-height-title: 1.12;
  --line-height-subtitle: 1.6;
  --line-height-section-title: var(--line-height-heading);
  --line-height-section-subtitle: 1.55;
  --line-height-compact: 1.2;
  --line-height-caption: 1.35;
  --line-height-label: 1.3;
  --line-height-tight: 1.25;
  --line-height-none: 1;

  --max: 1220px;
  --site-canvas-max: 1440px;
  --page-gutter: 40px;
  --page-content-inset: clamp(12px, 2vw, 24px);
  --action-group-gap: 12px;
  --action-group-space: clamp(18px, 3vw, 28px);
  --action-group-space-compact: 8px;
}

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

html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  width: min(100%, var(--site-canvas-max));
  margin: 0 auto;
  min-height: 100%;
  padding: 0;
  overflow-x: hidden;
  background-color: var(--page-bg);
  color: var(--page-fg);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  color: var(--heading-color);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-heading);
}

h2 {
  font-size: var(--font-size-section-title);
}

h3 {
  font-size: var(--font-size-heading-3);
  font-weight: var(--font-weight-strong);
}

p {
  margin: 0 0 16px;
}

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

a:hover {
  text-decoration: underline;
}

.link {
  background: var(--link-bg);
  color: var(--link-fg);
  font-weight: var(--font-weight-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease;
}

.link:hover {
  background: var(--link-hover-bg);
  color: var(--link-hover-fg);
}

.link--subtle {
  color: inherit;
  font-weight: inherit;
}

.link--arrow::after {
  content: " ->";
}

.link--external {
  text-decoration-style: dotted;
}

.link--phone {
  white-space: nowrap;
}

.link--block {
  display: block;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

.section-banner-media {
  width: 100%;
  margin: 0 0 clamp(20px, 3vw, 32px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background-color: var(--card-bg);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 20 / 7;
}

.section-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-section__header + .section-banner-media,
.h3-section__body h3 + .section-banner-media {
  margin-top: clamp(14px, 2vw, 22px);
}

.card > .section-banner-media:first-child {
  margin-top: 0;
}

:where(.grid, .column-grid, .resource-content-layout) > .section-banner-media {
  grid-column: 1 / -1;
}

.video-player-card {
  --card-padding: 0;

  overflow: hidden;
}

.video-player {
  display: grid;
  width: 100%;
  overflow: hidden;
  background: #05070c;
  aspect-ratio: 16 / 9;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #05070c;
}

.video-player-card .card__body {
  padding: clamp(18px, 3vw, 28px);
}

.h3-page .h3-sections-list {
  display: grid;
}

.h3-section {
  --h3-section-bg: var(--pair-light-bg);
  --h3-section-fg: var(--pair-light-fg);
  --h3-section-muted: var(--pair-light-muted);
  --heading-color: var(--pair-light-heading);
  --card-bg: var(--pair-light-card-bg);
  --card-fg: var(--pair-light-card-fg);
  --card-heading: var(--pair-light-card-heading);
  --card-border: var(--pair-light-card-border);
  --card-hover-bg: var(--pair-light-card-hover-bg);
  --card-hover-fg: var(--pair-light-card-hover-fg);
  --card-hover-heading: var(--pair-light-card-hover-heading);
  --card-hover-border: var(--pair-light-card-hover-border);
  --card-shadow: var(--shadow-sm);
  background: var(--h3-section-bg);
  color: var(--h3-section-fg);
}

.h3-page .h3-sections-list > .h3-section:nth-child(even),
.h3-section--dark {
  --h3-section-bg: var(--pair-dark-bg);
  --h3-section-fg: var(--pair-dark-fg);
  --h3-section-muted: var(--pair-dark-muted);
  --heading-color: var(--pair-dark-heading);
  --card-bg: var(--pair-dark-card-bg);
  --card-fg: var(--pair-dark-card-fg);
  --card-heading: var(--pair-dark-card-heading);
  --card-border: var(--pair-dark-card-border);
  --card-hover-bg: var(--pair-dark-card-hover-bg);
  --card-hover-fg: var(--pair-dark-card-hover-fg);
  --card-hover-heading: var(--pair-dark-card-hover-heading);
  --card-hover-border: var(--pair-dark-card-hover-border);
  --card-shadow: none;
}

.h3-toggle {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.h3-toggle:hover {
  background: color-mix(in srgb, currentColor 5%, transparent);
}

.h3-toggle__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  padding-block: clamp(22px, 4vw, 38px);
}

.h3-toggle__content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.h3-toggle__kicker {
  color: var(--h3-section-muted);
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-strong);
  letter-spacing: 0;
  text-transform: uppercase;
}

.h3-toggle__title {
  color: var(--heading-color);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-heading);
}

.h3-toggle__desc {
  max-width: 78ch;
  color: var(--h3-section-muted);
  font-size: var(--font-size-section-subtitle);
  line-height: var(--line-height-section-subtitle);
}

.h3-toggle__chevron {
  flex: 0 0 auto;
  color: var(--heading-color);
}

.h3-section__body > .container {
  padding-block: clamp(26px, 5vw, 52px);
}

.h3-section__body h3:first-child {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.h3-cards-grid,
.h3-section__aside,
.content-layout {
  display: grid;
  gap: clamp(16px, 2.5vw, 26px);
}

.h3-cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.h3-cards-grid--2,
.h3-section__aside,
.content-layout {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.h3-card,
.h3-aside-card,
.h3-note-box {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  background-color: var(--card-bg);
  color: var(--card-fg);
  box-shadow: var(--card-shadow);
}

.h3-card h3,
.h3-aside-card h4 {
  color: var(--card-heading);
}

.h3-note-box {
  border-color: var(--btn-primary-border);
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.check-list > li,
.plain-list > li {
  padding: 12px 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background-color: var(--card-bg);
  color: var(--card-fg);
}

.h3-faq-list {
  display: grid;
  gap: 12px;
}

.h3-faq-item {
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background-color: var(--card-bg);
  color: var(--card-fg);
  box-shadow: var(--card-shadow);
}

.h3-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--card-heading);
  font: inherit;
  font-weight: var(--font-weight-strong);
  line-height: var(--line-height-tight);
  text-align: left;
}

.h3-faq-question:hover {
  background-color: var(--card-hover-bg);
  color: var(--card-hover-heading);
}

.h3-faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.25s ease;
}

.h3-faq-answer > * {
  margin-block: 0;
  padding: 0 18px 18px;
}

.h3-inline-link {
  color: inherit;
  font-weight: var(--font-weight-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - var(--page-gutter)), var(--max));
  margin: 0 auto;
}

.inline-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--inline-cluster-gap, 10px 20px);
  min-width: 0;
}

.inline-cluster--end {
  justify-content: flex-end;
  margin-left: auto;
}

.inline-cluster--between {
  width: 100%;
  justify-content: space-between;
}

.site-title,
.page-hero__title {
  margin: 0;
  color: var(--site-title-color, var(--heading-color));
  font-family: var(--font-heading);
  font-size: var(--site-title-size, var(--font-size-title));
  font-weight: var(--site-title-weight, var(--font-weight-title));
  line-height: var(--site-title-line-height, var(--line-height-title));
}

.page-hero {
  --pf-section-y: clamp(32px, 5vw, 56px);
}

.site-subtitle,
.page-hero__lead {
  max-width: var(--site-subtitle-max, 68ch);
  margin: 0;
  color: var(--site-subtitle-color, currentColor);
  font-size: var(--site-subtitle-size, var(--font-size-subtitle));
  font-weight: var(--site-subtitle-weight, var(--font-weight-subtitle));
  line-height: var(--site-subtitle-line-height, var(--line-height-subtitle));
}

.page-hero__cta {
  --action-group-gap: var(--page-hero-cta-gap, 12px);
  --action-group-space: var(--page-hero-cta-space, clamp(18px, 3vw, 28px));
}

.section-kicker {
  margin: 0;
  color: var(--section-kicker-color, var(--color-gold));
  font-size: 0.82rem;
  font-weight: var(--font-weight-strong);
  letter-spacing: 0;
  line-height: var(--line-height-tight);
  text-transform: uppercase;
}

.pf-section__header > div > div > span:first-child:not(.section-title):not(.section-subtitle) {
  display: block;
  margin: 0 0 6px;
  color: var(--section-kicker-color, var(--color-gold));
  font-size: 0.82rem;
  font-weight: var(--font-weight-strong);
  letter-spacing: 0;
  line-height: var(--line-height-tight);
  text-transform: uppercase;
}

.section-title {
  display: block;
  margin: 0;
  color: var(--section-title-color, var(--heading-color));
  font-family: var(--font-heading);
  font-size: var(--section-title-size, var(--font-size-section-title));
  font-weight: var(--section-title-weight, var(--font-weight-section-title));
  line-height: var(--section-title-line-height, var(--line-height-section-title));
}

.section-subtitle {
  display: block;
  max-width: var(--section-subtitle-max, 68ch);
  margin: 0;
  color: var(--section-subtitle-color, currentColor);
  font-size: var(--section-subtitle-size, var(--font-size-section-subtitle));
  font-weight: var(--section-subtitle-weight, var(--font-weight-section-subtitle));
  line-height: var(--section-subtitle-line-height, var(--line-height-section-subtitle));
}

.section-callout-text {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--section-subtitle-color, currentColor);
  font-size: clamp(1.15rem, 1.2vw, 1.35rem);
  font-weight: 500;
  line-height: var(--section-subtitle-line-height, var(--line-height-section-subtitle));
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--trust-list-gap, 12px 28px);
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: var(--font-weight-strong);
}

.trust-list > li {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
}

.trust-list > li::before {
  content: "\2713";
  flex: 0 0 auto;
  margin-inline-end: 2px;
  color: var(--trust-marker-color, var(--color-gold));
}

.trust-list--inline {
  flex-direction: row;
}

.trust-list--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--trust-list-stack-gap, 10px);
}

.page-hero__cta + .trust-list {
  margin-block-start: var(--page-hero-trust-space, 14px);
}

.page-hero .trust-list--stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: var(--page-hero-trust-row-gap, 10px) var(--page-hero-trust-column-gap, 24px);
  width: min(100%, var(--page-hero-trust-width, 560px));
}

.page-hero .card--dark .trust-list--stack {
  grid-template-columns: minmax(0, 1fr);
  margin-block-start: var(--page-hero-card-trust-space, 24px);
  width: 100%;
}

.page-hero .card--dark .trust-list--stack > li {
  white-space: nowrap;
}

.page-hero .card--dark .card__body {
  gap: 8px;
}

.page-hero .card--dark :where(h2, p) {
  margin-block: 0;
}

.page-hero .card--dark .site-form {
  margin-block-start: 2px;
}

.page-hero .card--dark .site-form__field:is(.is-invalid, .invalid) :where(input, select, textarea) {
  border-color: color-mix(in srgb, var(--color-gold) 78%, var(--color-white));
  background: var(--field-bg);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-gold) 36%, transparent);
}

.page-hero .card--dark .site-form--hero-mini .site-form__notice {
  margin-block: 2px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-gold);
  font-size: 0.84rem;
  font-weight: var(--font-weight-strong);
}

.about-attorney-map {
  position: relative;
  isolation: isolate;
}

.about-attorney-map > img {
  position: relative;
  z-index: 0;
}

.about-attorney-hotspot {
  position: absolute;
  inset-block-start: var(--about-attorney-y);
  inset-inline-start: var(--about-attorney-x);
  z-index: 1;
  display: block;
  width: var(--about-attorney-w);
  height: var(--about-attorney-h);
  border-radius: var(--radius-md);
  color: var(--color-white);
  text-decoration: none;
}

.about-attorney-hotspot--brett {
  --about-attorney-x: 0%;
  --about-attorney-y: 7%;
  --about-attorney-w: 28%;
  --about-attorney-h: 93%;
}

.about-attorney-hotspot--keith {
  --about-attorney-x: 28%;
  --about-attorney-y: 7%;
  --about-attorney-w: 24%;
  --about-attorney-h: 93%;
}

.about-attorney-hotspot--william {
  --about-attorney-x: 52%;
  --about-attorney-y: 8%;
  --about-attorney-w: 24%;
  --about-attorney-h: 92%;
}

.about-attorney-hotspot--joel {
  --about-attorney-x: 76%;
  --about-attorney-y: 9%;
  --about-attorney-w: 24%;
  --about-attorney-h: 91%;
}

.about-attorney-hotspot__label {
  position: absolute;
  inset-block-end: clamp(16px, 4vw, 42px);
  inset-inline-start: 50%;
  max-width: min(220px, calc(100vw - 48px));
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--color-gold) 58%, var(--color-white));
  border-radius: var(--radius-md);
  background: rgba(7, 19, 40, 0.9);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  font-size: clamp(0.72rem, 0.85vw, 0.86rem);
  font-weight: var(--font-weight-strong);
  line-height: var(--line-height-tight);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.about-attorney-hotspot__label::after {
  content: "";
  position: absolute;
  inset-block-start: 100%;
  inset-inline-start: 50%;
  width: 9px;
  height: 9px;
  border-inline-end: 1px solid color-mix(in srgb, var(--color-gold) 58%, var(--color-white));
  border-block-end: 1px solid color-mix(in srgb, var(--color-gold) 58%, var(--color-white));
  background: rgba(7, 19, 40, 0.9);
  transform: translate(-50%, -5px) rotate(45deg);
}

.about-attorney-hotspot--brett .about-attorney-hotspot__label {
  inset-inline-start: 12px;
  transform: translateY(8px);
}

.about-attorney-hotspot--brett .about-attorney-hotspot__label::after {
  inset-inline-start: 28px;
}

.about-attorney-hotspot--joel .about-attorney-hotspot__label {
  inset-inline: auto 12px;
  transform: translateY(8px);
}

.about-attorney-hotspot--joel .about-attorney-hotspot__label::after {
  inset-inline: auto 28px;
}

.about-attorney-hotspot:hover,
.about-attorney-hotspot:focus-visible {
  text-decoration: none;
}

.about-attorney-hotspot:hover .about-attorney-hotspot__label,
.about-attorney-hotspot:focus-visible .about-attorney-hotspot__label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.about-attorney-hotspot--brett:hover .about-attorney-hotspot__label,
.about-attorney-hotspot--brett:focus-visible .about-attorney-hotspot__label,
.about-attorney-hotspot--joel:hover .about-attorney-hotspot__label,
.about-attorney-hotspot--joel:focus-visible .about-attorney-hotspot__label {
  transform: translateY(0);
}

.about-attorney-hotspot:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -6px;
}

.sticky-bar {
  position: sticky;
  top: var(--sticky-top, 0);
  z-index: var(--sticky-z, 80);
}

.sticky-mobile-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  gap: 6px;
  padding: 3px 8px 4px;
  padding-bottom: calc(3px + env(safe-area-inset-bottom, 0px));
  border-block-start: 1px solid var(--pair-dark-btn-primary-border);
  background: var(--pair-dark-bg);
  --btn-primary-bg: var(--pair-dark-btn-primary-bg);
  --btn-primary-fg: var(--pair-dark-btn-primary-fg);
  --btn-primary-border: var(--pair-dark-btn-primary-border);
  --btn-primary-hover-bg: var(--pair-dark-btn-primary-hover-bg);
  --btn-primary-hover-fg: var(--pair-dark-btn-primary-hover-fg);
  --btn-primary-hover-border: var(--pair-dark-btn-primary-hover-border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  --btn-secondary-bg: var(--pair-dark-btn-secondary-bg);
  --btn-secondary-fg: var(--pair-dark-btn-secondary-fg);
  --btn-secondary-border: var(--pair-dark-btn-secondary-border);
  --btn-secondary-hover-bg: var(--pair-dark-btn-secondary-hover-bg);
  --btn-secondary-hover-fg: var(--pair-dark-btn-secondary-hover-fg);
  --btn-secondary-hover-border: var(--pair-dark-btn-secondary-hover-border);
}

.sticky-mobile-cta .btn {
  flex: 1;
  width: auto;
  min-height: 30px;
  padding: 5px 8px;
  border-radius: var(--radius-md);
  font-size: 0.7rem;
  font-weight: var(--font-weight-strong);
  line-height: 1.1;
  text-align: center;
}

body.nav-open .sticky-mobile-cta {
  display: none;
}

.surface-bar {
  border-block-end: 1px solid var(--surface-bar-border, var(--pair-light-card-border));
  background: var(--surface-bar-bg, var(--pair-light-card-bg));
  color: var(--surface-bar-fg, var(--pair-light-card-heading));
  box-shadow: var(--surface-bar-shadow, var(--shadow-sm));
}

.page-banner {
  --pf-section-y: 0;
}

.page-banner--video {
  position: relative;
  --btn-secondary-bg: var(--pair-dark-btn-secondary-bg);
  --btn-secondary-fg: var(--pair-dark-btn-secondary-fg);
  --btn-secondary-border: var(--pair-dark-btn-secondary-border);
  --btn-secondary-hover-bg: var(--pair-dark-btn-secondary-hover-bg);
  --btn-secondary-hover-fg: var(--pair-dark-btn-secondary-hover-fg);
  --btn-secondary-hover-border: var(--pair-dark-btn-secondary-hover-border);
  --focus-color: var(--pair-dark-focus);
}

.page-banner__audio-controls {
  position: absolute;
  right: var(--page-content-inset);
  bottom: var(--page-content-inset);
  z-index: 2;
}

.page-banner__audio-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--btn-secondary-border);
  border-radius: 999px;
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-fg);
  font: inherit;
  line-height: var(--line-height-none);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.page-banner__audio-toggle:hover {
  border-color: var(--btn-secondary-hover-border);
  background: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-hover-fg);
}

.page-banner__audio-toggle[aria-pressed="true"] {
  border-color: var(--btn-primary-border);
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
}

.page-banner__audio-toggle[aria-pressed="true"]:hover {
  border-color: var(--btn-primary-hover-border);
  background: var(--btn-primary-hover-bg);
  color: var(--btn-primary-hover-fg);
}

.page-banner__audio-toggle:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 3px;
}

.page-banner__audio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-banner__audio-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.page-banner__audio-icon--unmuted {
  display: none;
}

.page-banner__audio-toggle[aria-pressed="true"] .page-banner__audio-icon--muted {
  display: none;
}

.page-banner__audio-toggle[aria-pressed="true"] .page-banner__audio-icon--unmuted {
  display: inline-flex;
}

.page-banner__audio-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  --topbar-bg: var(--pair-dark-bg);
  --topbar-fg: var(--pair-dark-muted);
  --topbar-link: var(--pair-dark-fg);
  --topbar-link-hover: var(--pair-dark-link-hover-fg);
  --topbar-border: var(--pair-dark-btn-primary-bg);
  --btn-secondary-bg: var(--pair-dark-btn-secondary-bg);
  --btn-secondary-fg: var(--pair-dark-btn-secondary-fg);
  --btn-secondary-border: var(--pair-dark-btn-secondary-border);
  --btn-secondary-hover-bg: var(--pair-dark-btn-secondary-hover-bg);
  --btn-secondary-hover-fg: var(--pair-dark-btn-secondary-hover-fg);
  --btn-secondary-hover-border: var(--pair-dark-btn-secondary-hover-border);
  --focus-color: var(--pair-dark-focus);
  margin: 0;
  border-block-end: 2px solid var(--topbar-border);
  background: var(--topbar-bg);
  color: var(--topbar-fg);
  font-size: var(--font-size-caption);
  line-height: var(--line-height-caption);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  min-height: 42px;
  padding-block: 8px;
}

.topbar__user-copy {
  color: var(--topbar-fg);
  font-weight: var(--font-weight-strong);
}

.topbar a:not(.btn) {
  color: var(--topbar-link);
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease;
}

.topbar a:not(.btn):hover {
  color: var(--topbar-link-hover);
  text-decoration: underline;
}

.topbar .btn {
  width: auto;
}

.site-header {
  --surface-bar-bg: var(--pair-menu-bg);
  --surface-bar-fg: var(--pair-menu-fg);
  --surface-bar-border: var(--pair-menu-border);
  --surface-bar-shadow: var(--shadow-sm);
  --header-link: var(--pair-menu-link);
  --header-link-hover: var(--pair-menu-link-hover);
  --heading-color: var(--surface-bar-fg);
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  min-height: 88px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: clamp(52px, 5vw, 68px);
  max-width: min(220px, 42vw);
}

.main-nav {
  --inline-cluster-gap: clamp(16px, 2vw, 28px);
  justify-content: center;
}

.main-nav a,
.main-nav__dropdown-toggle {
  color: var(--header-link);
  font-size: var(--font-size-control);
  font-weight: var(--font-weight-control);
  line-height: var(--line-height-compact);
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav__dropdown-toggle:hover,
.main-nav__item--has-dropdown.is-open > .main-nav__dropdown-toggle {
  color: var(--header-link-hover);
  text-decoration: underline;
}

.main-nav__item {
  min-width: 0;
}

.main-nav__item--has-dropdown {
  display: inline-flex;
}

.main-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.main-nav__dropdown-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.main-nav__item--has-dropdown:hover > .main-nav__dropdown-toggle .main-nav__dropdown-icon,
.main-nav__item--has-dropdown:focus-within > .main-nav__dropdown-toggle .main-nav__dropdown-icon,
.main-nav__item--has-dropdown.is-open > .main-nav__dropdown-toggle .main-nav__dropdown-icon {
  transform: translateY(2px) rotate(225deg);
}

.practice-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 120;
  display: none;
  width: 100%;
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
}

.practice-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 48px;
  pointer-events: auto;
}

.main-nav__item--has-dropdown:hover > .practice-menu,
.main-nav__item--has-dropdown:focus-within > .practice-menu,
.main-nav__item--has-dropdown.is-open > .practice-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.practice-menu__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2.2fr);
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--pair-light-card-border);
  border-radius: var(--radius-xl);
  background: var(--color-paper);
  color: var(--pair-light-card-fg);
  box-shadow: var(--shadow-lg);
}

.main-nav .practice-menu__overview {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--pair-light-card-border);
  border-radius: var(--radius-md);
  background: var(--color-paper-soft);
  color: var(--pair-default-fg);
}

.main-nav .practice-menu__overview:hover {
  border-color: var(--pair-light-card-hover-border);
  background: var(--color-paper);
  color: var(--pair-light-card-hover-fg);
  text-decoration: none;
}

.practice-menu__overview strong {
  color: var(--pair-default-heading);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-heading);
}

.practice-menu__overview span:last-child {
  color: var(--pair-default-muted);
  font-size: var(--font-size-control-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-caption);
}

.practice-menu__eyebrow,
.practice-menu__group-title {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: var(--font-weight-strong);
  letter-spacing: 0;
  line-height: var(--line-height-tight);
  text-transform: uppercase;
}

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

.practice-menu__group {
  display: grid;
  align-content: start;
  gap: 9px;
}

.practice-menu__group a {
  display: block;
  color: var(--pair-light-link-fg);
  font-size: var(--font-size-control-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-tight);
  text-decoration: none;
}

.practice-menu__group a:hover {
  color: var(--pair-light-link-hover-fg);
  text-decoration: underline;
}

.header-actions {
  --inline-cluster-gap: 10px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--pair-light-btn-secondary-border);
  border-radius: var(--radius-md);
  background: var(--pair-light-btn-secondary-bg);
  color: var(--pair-light-btn-secondary-fg);
  font-weight: var(--font-weight-control);
  line-height: var(--line-height-compact);
}

.menu-toggle:hover {
  border-color: var(--pair-light-btn-secondary-hover-border);
  background: var(--pair-light-btn-secondary-hover-bg);
  color: var(--pair-light-btn-secondary-hover-fg);
}

.menu-toggle__bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: background-color 0.2s ease;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle__bars::before {
  top: -6px;
}

.menu-toggle__bars::after {
  top: 6px;
}

body.nav-open .menu-toggle__bars {
  background: transparent;
}

body.nav-open .menu-toggle__bars::before,
body.nav-open .menu-toggle__bars::after {
  top: 0;
}

body.nav-open .menu-toggle__bars::before {
  transform: rotate(45deg);
}

body.nav-open .menu-toggle__bars::after {
  transform: rotate(-45deg);
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-md);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--font-size-control);
  font-weight: var(--font-weight-control);
  line-height: var(--line-height-compact);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.button:hover {
  border-color: var(--btn-hover-border);
  background: var(--btn-hover-bg);
  color: var(--btn-hover-fg);
  text-decoration: none;
}

.btn-group,
.hero-actions,
.page-hero__cta,
.cta-band__actions,
.card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--action-group-gap, 12px);
  margin-block-start: var(--action-group-space, clamp(18px, 3vw, 28px));
}

.btn-group:first-child,
.hero-actions:first-child,
.page-hero__cta:first-child,
.cta-band__actions:first-child,
.card__actions:first-child,
.pf-section__body.btn-group {
  margin-block-start: 0;
}

.pf-section__layout > .btn-group {
  margin-block-start: calc(
    var(--action-group-space, clamp(18px, 3vw, 28px)) -
    var(--pf-section-layout-gap, var(--pf-section-gap, clamp(24px, 4vw, 56px)))
  );
}

.btn--primary,
.btn-primary,
.button--primary {
  border-color: var(--btn-primary-border);
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
}

.btn--primary:hover,
.btn-primary:hover,
.button--primary:hover {
  border-color: var(--btn-primary-hover-border);
  background: var(--btn-primary-hover-bg);
  color: var(--btn-primary-hover-fg);
}

.btn--secondary,
.btn-secondary,
.button--secondary {
  border-color: var(--btn-secondary-border);
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-fg);
}

.btn--secondary:hover,
.btn-secondary:hover,
.button--secondary:hover {
  border-color: var(--btn-secondary-hover-border);
  background: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-hover-fg);
}

.btn--ghost {
  border-color: var(--btn-ghost-border);
  background: var(--btn-ghost-bg);
  color: var(--btn-ghost-fg);
}

.btn--ghost:hover {
  border-color: var(--btn-ghost-hover-border);
  background: var(--btn-ghost-hover-bg);
  color: var(--btn-ghost-hover-fg);
}

.btn--small {
  min-height: 36px;
  padding: 7px 16px;
  font-size: var(--font-size-control-sm);
}

.btn--wide {
  width: 100%;
}

.btn--icon {
  width: 44px;
  padding-inline: 0;
}

.disclosure-list {
  display: grid;
  gap: 10px;
}

.disclosure-list__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 36px;
  padding: 7px 0;
  color: var(--link-fg);
  font-size: var(--font-size-control-sm);
  font-weight: var(--font-weight-strong);
  line-height: var(--line-height-compact);
  cursor: pointer;
  list-style: none;
}

.disclosure-list__toggle::-webkit-details-marker {
  display: none;
}

.disclosure-list__toggle::after,
.disclosure-list__collapse::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.disclosure-list[open] .disclosure-list__toggle::after,
.disclosure-list__collapse::before {
  transform: translateY(2px) rotate(225deg);
}

.disclosure-list__toggle:hover,
.disclosure-list__toggle:focus-visible,
.disclosure-list__collapse:hover,
.disclosure-list__collapse:focus-visible {
  color: var(--link-hover-fg);
}

.disclosure-list[open] > .column-grid {
  margin-block-start: 10px;
}

.disclosure-list__collapse {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  margin-block-start: 10px;
  padding: 6px 12px;
  border: 0;
  background: transparent;
  color: var(--link-fg);
  cursor: pointer;
}

.disclosure-list[open] .disclosure-list__collapse {
  display: flex;
}

.card,
.cardify-p > p,
.cardify-li > li,
.cardify-a > a {
  display: block;
  padding: var(--card-padding, clamp(18px, 3vw, 28px));
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius, var(--radius-xl));
  background-color: var(--card-bg);
  color: var(--card-fg);
  box-shadow: var(--card-shadow);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.card--soft {
  --card-bg: var(--card-hover-bg);
  --card-shadow: none;
}

.card--compact {
  --card-padding: 10px 16px;
}

.card--compact > strong:first-child {
  display: block;
  margin-block-end: 0.45em;
  color: var(--card-heading);
  font-size: clamp(1.02rem, 1vw, 1.14rem);
  font-weight: 800;
  line-height: var(--line-height-tight);
}

.card--narrow {
  --card-padding: 10px;
}

.pf-section--floating-card-grid .pf-section__content > .card--narrow,
.pf-section--floating-card-grid .pf-section__content > a.card--narrow {
  min-height: 0;
}

.card--outlined {
  --card-shadow: none;
}

.card--elevated {
  --card-shadow: var(--shadow-md);
}

.card--feature-cta {
  --card-bg: var(--card-feature-cta-bg, var(--btn-primary-bg));
  --card-fg: var(--card-feature-cta-fg, var(--btn-primary-fg));
  --card-heading: var(--card-feature-cta-heading, var(--btn-primary-fg));
  --card-border: var(--card-feature-cta-border, var(--btn-primary-border));
  --card-hover-bg: var(--card-feature-cta-hover-bg, var(--btn-primary-hover-bg));
  --card-hover-fg: var(--card-feature-cta-hover-fg, var(--btn-primary-hover-fg));
  --card-hover-heading: var(--card-feature-cta-hover-heading, var(--btn-primary-hover-fg));
  --card-hover-border: var(--card-feature-cta-hover-border, var(--btn-primary-hover-border));
}

.card--actions-bottom {
  display: flex;
  flex-direction: column;
}

.card--actions-bottom > .card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.card--actions-bottom .card__actions {
  margin-top: auto;
  padding-top: var(--card-actions-bottom-space, 8px);
}

.attorney-card__actions {
  --action-group-gap: 8px;

  display: grid;
  grid-template-columns: minmax(0, auto) auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.attorney-card__actions .btn {
  width: auto;
  min-width: 0;
  min-height: 38px;
  padding: 8px 14px;
  white-space: nowrap;
}

#homeSectionAttorneys .card h3 {
  margin-block-end: 2px;
  font-size: 1.05rem;
  line-height: 1.18;
}

#homeSectionAttorneys .card__body {
  align-items: center;
  gap: 6px;
  text-align: center;
}

#homeSectionAttorneys .card h3 + div {
  margin-block-start: 0;
  line-height: 1.25;
}

#homeSectionAttorneys .card h3 .link {
  text-decoration: none;
}

#homeSectionAttorneys .card h3 .link:hover {
  text-decoration: none;
}

@media (min-width: 1024px) {
  #homeSectionAttorneys .card h3 {
    white-space: nowrap;
  }
}

.card :where(h1, h2, h3, h4, h5, h6),
.cardify-p > p :where(h1, h2, h3, h4, h5, h6),
.cardify-li > li :where(h1, h2, h3, h4, h5, h6),
.cardify-a > a :where(h1, h2, h3, h4, h5, h6) {
  color: var(--card-heading);
}

.card:hover :where(h1, h2, h3, h4, h5, h6),
.cardify-p > p:hover :where(h1, h2, h3, h4, h5, h6),
.cardify-li > li:hover :where(h1, h2, h3, h4, h5, h6),
.cardify-a > a:hover :where(h1, h2, h3, h4, h5, h6) {
  color: var(--card-hover-heading);
}

.card__media {
  margin: calc(var(--card-padding, clamp(18px, 3vw, 28px)) * -1);
  margin-block-end: var(--card-padding, clamp(18px, 3vw, 28px));
  overflow: hidden;
}

.card__media :where(img, video) {
  width: 100%;
}

.card__body {
  display: grid;
  gap: 12px;
}

.card__title {
  margin: 0 0 10px;
  color: var(--card-heading);
  font-family: var(--font-heading);
  font-size: var(--font-size-card-title, 1.25rem);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-heading);
}

.card__marker {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-block-end: var(--card-marker-gap, 10px);
  border: 1px solid var(--card-marker-border, var(--color-gold));
  border-radius: var(--radius-md);
  color: var(--card-marker-color, var(--color-gold));
  font-weight: var(--font-weight-strong);
}

.card:hover .card__title {
  color: var(--card-hover-heading);
}

.card__text {
  margin: 0;
}

.card__actions {
  --action-group-space: var(--action-group-space-compact);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list > .faq-item {
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background-color: var(--card-bg);
  color: var(--card-fg);
  box-shadow: var(--card-shadow);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-list > .faq-item:where(:hover, :focus-within) {
  border-color: var(--card-hover-border);
  background-color: var(--card-hover-bg);
  color: var(--card-hover-fg);
  box-shadow: var(--shadow-md);
}

.faq-list > .faq-item:where(:hover, :focus-within) .faq-question {
  color: var(--card-hover-heading);
}

.faq-list > .faq-item:where(:hover, :focus-within) .faq-answer {
  color: var(--card-hover-fg);
}

.faq-list .faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--card-heading);
  font: inherit;
  font-weight: var(--font-weight-strong);
  line-height: var(--line-height-tight);
  text-align: left;
}

.faq-list .pf-section__chevron--faq {
  color: currentColor;
}

.faq-list button.faq-question {
  appearance: none;
  cursor: pointer;
}

.faq-list button.faq-question:hover {
  color: var(--card-hover-heading);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.25s ease;
}

.faq-answer > * {
  margin-block: 0;
  padding: 0 18px 18px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none;
  }
}

.site-form {
  display: grid;
  gap: var(--site-form-gap, 18px);
}

.site-form__head,
.site-form__field {
  display: grid;
  gap: 6px;
}

.site-form--compact .site-form__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}

.site-form__title {
  color: var(--heading-color);
  font-size: var(--font-size-form-title);
  font-weight: var(--font-weight-form-title);
}

.site-form--compact .site-form__title {
  font-size: var(--font-size-form-title-compact);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-form__note {
  color: var(--form-note-color);
  font-size: var(--font-size-form-note);
}

.site-form__field small {
  color: var(--field-help);
  font-size: var(--font-size-form-note);
}

.site-form__notice {
  padding: 12px 14px;
  border: 1px solid var(--color-gold);
  border-left-width: 5px;
  border-radius: var(--radius-md);
  background: transparent;
  color: inherit;
  font-size: var(--font-size-form-notice);
}

.note {
  margin-block: 12px 0;
  color: var(--note-color, currentColor);
  font-size: var(--font-size-form-notice);
  font-weight: var(--font-weight-strong);
  line-height: var(--line-height-body);
}

.note--warning {
  --note-color: var(--note-warning-color, var(--pair-warning-fg));
}

.site-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--site-form-field-min, 220px)), 1fr));
  gap: var(--site-form-grid-gap, 16px);
}

.site-form--compact {
  --site-form-gap: 14px;
  --site-form-field-min: 160px;
  --site-form-grid-gap: 10px;
}

.site-form--compact .site-form__grid {
  align-items: end;
}

.site-form__field {
  min-width: 0;
}

.site-form__field--full {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .site-form__field--wide {
    grid-column: span 2;
  }
}

.site-form__field label {
  color: var(--field-label);
  font-size: var(--font-size-form-label);
  font-weight: var(--font-weight-form-label);
  line-height: var(--line-height-label);
}

.site-form--compact .site-form__field label {
  font-size: var(--font-size-form-label-compact);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-form__field :where(input, select, textarea) {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--field-border);
  border-radius: var(--radius-md);
  background: var(--field-bg);
  color: var(--field-fg);
  color-scheme: light;
  font-size: var(--font-size-control);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-form__field select option {
  background: var(--field-bg);
  color: var(--field-fg);
}

.pf-section--dark .site-form__field select {
  background: var(--color-white-14);
}

.pf-section--dark .site-form__field select option {
  background: var(--color-navy-field);
  color: var(--field-fg);
}

.site-form__field input[type="date"]::-webkit-calendar-picker-indicator {
  border-radius: var(--radius-sm);
  background-color: transparent;
}

.pf-section--dark .site-form__field :where(input, select, textarea) {
  color-scheme: dark;
}

.site-form__field :where(input, textarea)::placeholder {
  color: var(--field-help);
  opacity: 1;
}

.site-form__field textarea {
  min-height: 120px;
  resize: vertical;
}

.site-form__field :where(input, select, textarea):focus {
  border-color: var(--field-focus-border);
  background: var(--field-focus-bg);
  color: var(--field-focus-fg);
  outline: 0;
  box-shadow: 0 0 0 2px var(--focus-color);
}

.site-form__field:is(.is-invalid, .invalid) :where(input, select, textarea) {
  border-color: var(--pair-error-border);
  background: var(--pair-error-bg);
}

.site-form__error {
  display: none;
  color: var(--pair-error-fg);
  font-size: var(--font-size-form-error);
  font-weight: var(--font-weight-strong);
}

.site-form__field:is(.is-invalid, .invalid) .site-form__error {
  display: block;
}

.site-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-form__check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.site-form__check input {
  margin-block-start: 0.25em;
}

.site-form--compact .site-form__actions {
  align-self: end;
}

.site-form__status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-strong);
}

.site-form__status--success {
  border: 1px solid var(--pair-success-border);
  background: var(--pair-success-bg);
  color: var(--pair-success-fg);
}

.site-form__status--error {
  border: 1px solid var(--pair-error-border);
  background: var(--pair-error-bg);
  color: var(--pair-error-fg);
}

.site-footer {
  --footer-bg: var(--pair-dark-bg);
  --footer-fg: var(--pair-dark-fg);
  --footer-muted: var(--pair-dark-muted);
  --footer-heading: var(--pair-dark-link-hover-fg);
  --footer-link: var(--pair-dark-muted);
  --footer-link-hover: var(--pair-dark-link-hover-fg);
  --footer-border: var(--pair-dark-border);
  --heading-color: var(--footer-heading);
  margin-block-start: 0;
  padding-block: clamp(36px, 5vw, 56px);
  border-block-start: 1px solid var(--footer-border);
  background: var(--footer-bg);
  color: var(--footer-fg);
}

.site-footer .footer-layout {
  display: grid;
  width: min(calc(100% - var(--page-gutter)), var(--max));
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--column-grid-min, 220px)), 1fr));
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  margin-inline: auto;
  padding-inline: var(--page-content-inset);
}

.footer-column {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.site-footer h3 {
  margin-block-end: 0;
  color: var(--footer-heading);
  font-family: var(--font-body);
  font-size: var(--font-size-footer-heading);
  font-weight: var(--font-weight-strong);
  letter-spacing: 0.08em;
  line-height: var(--line-height-tight);
  text-transform: uppercase;
}

.site-footer .footer-brand {
  color: var(--footer-fg);
  font-family: var(--font-heading);
  font-size: var(--font-size-footer-brand);
  font-weight: var(--font-weight-heading);
  letter-spacing: 0;
  text-transform: none;
}

.footer-address,
.footer-contact {
  margin: 0;
  color: var(--footer-muted);
  font-size: var(--font-size-body-sm);
  font-style: normal;
  line-height: var(--line-height-body);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: var(--footer-link);
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Mobile page hero alignment: matches the section accordion breakpoint */
@media (max-width: 1023px) {
  .page-hero .pf-section__content {
    text-align: center;
  }

  .page-hero .site-subtitle,
  .page-hero .page-hero__lead {
    margin-inline: auto;
  }

  .page-hero__cta,
  .page-hero .trust-list {
    justify-content: center;
  }

  .page-hero .trust-list--stack {
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-gutter: 28px;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
  }

  .brand img {
    height: 52px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    display: flex;
  }

  body.nav-open .main-nav {
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  body.nav-open .header-actions {
    justify-content: stretch;
    margin-left: 0;
  }

  .main-nav > a,
  .main-nav__dropdown-toggle {
    width: 100%;
    min-height: 44px;
    padding-block: 12px;
    border-block-end: 1px solid var(--pair-menu-border);
  }

  .main-nav__item--has-dropdown {
    display: block;
    width: 100%;
  }

  .main-nav__dropdown-toggle {
    justify-content: space-between;
    text-align: left;
  }

  .practice-menu {
    position: static;
    display: none;
    width: 100%;
    padding-top: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .practice-menu::before {
    display: none;
  }

  .main-nav__item--has-dropdown.is-open > .practice-menu {
    display: block;
  }

  .main-nav__item--has-dropdown:hover > .practice-menu,
  .main-nav__item--has-dropdown:focus-within > .practice-menu {
    transform: none;
  }

  .practice-menu__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--pair-menu-border);
    border-radius: var(--radius-md);
    background: var(--color-paper);
    box-shadow: none;
  }

  .practice-menu__overview {
    padding: 14px;
    background: var(--color-paper-soft);
  }

  .practice-menu__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .practice-menu__group {
    gap: 10px;
  }

  .practice-menu__group a {
    min-height: 0;
    padding-block: 0;
    border-block-end: 0;
  }
}

@media (max-width: 900px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar .inline-cluster--end {
    justify-content: flex-start;
    margin-left: 0;
  }

  .topbar .inline-cluster--between {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 20px;
  }

  .btn,
  .button {
    width: 100%;
  }

  .btn-group,
  .hero-actions,
  .page-hero__cta,
  .cta-band__actions,
  .card__actions {
    align-items: stretch;
  }

  .topbar {
    font-size: var(--font-size-mobile-caption);
  }

  .topbar__inner {
    align-items: center;
    gap: 8px;
    min-height: 0;
    padding-block: 7px;
    text-align: center;
  }

  .topbar .inline-cluster {
    --inline-cluster-gap: 6px 12px;
  }

  .topbar__promos {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .site-header__inner {
    min-height: 64px;
    padding-block: 8px;
  }

  .brand img {
    height: 46px;
    max-width: min(190px, 58vw);
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .site-footer {
    padding-block: 30px;
  }

  .sticky-mobile-cta + .site-footer {
    padding-block-end: calc(30px + 48px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer .footer-layout {
    gap: 22px;
  }
}

@media (max-width: 480px) {
  .page-hero .card--dark .trust-list--stack > li {
    white-space: normal;
  }
}

@media (min-width: 768px) {
  .site-footer .footer-layout {
    grid-template-columns: minmax(280px, 1.4fr) minmax(180px, 0.85fr) minmax(220px, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
