:root {
  --navy-950: #08172d;
  --navy-900: #0d2341;
  --navy-800: #15375f;
  --blue-700: #245f9e;
  --blue-600: #3476bb;
  --blue-100: #eaf3fb;
  --gold-500: #c9a557;
  --gold-300: #e4ce9a;
  --ink: #122033;
  --slate: #536171;
  --muted: #718096;
  --paper: #ffffff;
  --ivory: #f8f6f1;
  --line: #dce3ea;
  --success: #176b4d;
  --danger: #9f2d2d;
  --shadow-sm: 0 8px 24px rgba(8, 23, 45, 0.09);
  --shadow-lg: 0 24px 60px rgba(8, 23, 45, 0.17);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.mobile-bar-visible {
  padding-bottom: 0;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--navy-950);
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.section-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 1.08rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue-700);
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--navy-800);
  box-shadow: 0 12px 26px rgba(20, 54, 94, 0.22);
  transform: translateY(-1px);
}

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

.button--gold:hover {
  background: #d6b66e;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy-950);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  flex: 0 1 320px;
}

.brand-link img {
  width: min(310px, 100%);
  height: auto;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  text-align: right;
}

.header-phone small {
  display: block;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-phone a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  text-decoration: none;
}

.header-call-icon,
.header-call-mobile {
  display: none;
}

.header-call-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.lead-form {
  position: relative;
}

.form-card {
  border: 1px solid rgba(13, 35, 65, 0.1);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.form-card__header {
  padding: 26px 28px 18px;
  border-bottom: 1px solid var(--line);
}

.form-card__header p {
  margin: 0 0 5px;
  color: var(--blue-700);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-card__header h2,
.form-card__header h3 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.15;
}

.form-card__body {
  padding: 24px 28px 28px;
}

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin: 0 0 6px;
  color: #34455a;
  font-size: 0.79rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd9e3;
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  color: var(--ink);
  padding: 11px 13px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 86px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(52, 118, 187, 0.13);
  outline: none;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 1.2em;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: 0.73rem;
  font-weight: 750;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 14px 0;
  color: #5e6b79;
  font-size: 0.7rem;
  line-height: 1.42;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue-700);
}

.lead-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-assurance {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.authority-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

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

.authority-item {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.authority-item:last-child {
  border-right: 0;
}

.authority-item strong {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1;
}

.authority-item span {
  max-width: 190px;
  margin-top: 8px;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.3;
  text-transform: uppercase;
}

.review-ticker {
  overflow: hidden;
  background: var(--navy-950);
  color: var(--paper);
}

.ticker-intro {
  padding: 28px 0 2px;
  text-align: center;
}

.ticker-intro strong {
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker-viewport {
  position: relative;
  padding: 20px 0 34px;
}

.ticker-disclaimer {
  width: min(calc(100% - 40px), var(--container));
  margin: -10px auto 0;
  padding: 0 0 26px;
  color: #91a2b5;
  font-size: 0.67rem;
  text-align: center;
}

.ticker-viewport::before,
.ticker-viewport::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset-block: 0;
  width: min(10vw, 140px);
  pointer-events: none;
}

.ticker-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-950), transparent);
}

.ticker-viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy-950), transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: ticker-scroll 42s linear infinite;
}

.ticker-track:hover,
.ticker-track:focus-within {
  animation-play-state: paused;
}

.review-card {
  width: min(420px, calc(100vw - 48px));
  min-height: 285px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blue-700);
}

.review-avatar--letter {
  display: grid;
  place-items: center;
  color: var(--paper);
  font-weight: 900;
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta strong {
  font-size: 0.92rem;
}

.review-meta span {
  color: #c5d0de;
  font-size: 0.72rem;
}

.stars {
  margin: 15px 0 10px;
  color: #f2c75c;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.review-card blockquote {
  margin: 0;
  color: #f1f5f8;
  font-size: 0.9rem;
  line-height: 1.55;
}

@keyframes ticker-scroll {
  to { transform: translateX(calc(-50% - 9px)); }
}

.attorney-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.attorney-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.attorney-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attorney-copy {
  padding: 28px;
}

.attorney-copy h3 {
  margin: 0 0 5px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.attorney-role {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.attorney-copy li {
  position: relative;
  margin-top: 10px;
  padding-left: 21px;
  color: var(--slate);
  font-size: 0.9rem;
}

.attorney-copy li::before {
  content: "";
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}

.faq-list {
  max-width: 860px;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 23px 54px 23px 0;
  color: var(--navy-950);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 2px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-700);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 54px 24px 0;
  color: var(--slate);
}

.site-footer {
  padding: 46px 0 110px;
  background: #061326;
  color: #c7d2df;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(180px, 0.9fr));
  gap: 42px;
}

.site-footer img {
  width: min(300px, 100%);
  filter: grayscale(1) brightness(0) invert(1);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address {
  margin: 10px 0 0;
  color: #aebccc;
  font-size: 0.78rem;
  font-style: normal;
}

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

.footer-disclaimer {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa0b2;
  font-size: 0.68rem;
  line-height: 1.55;
}

.mobile-action-bar {
  position: fixed;
  z-index: 120;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 23, 45, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.mobile-action-bar a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-action-bar a:last-child {
  background: var(--gold-500);
}

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

@media (max-width: 980px) {
  .header-action .button {
    display: none;
  }

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

  .authority-item:nth-child(2) {
    border-right: 0;
  }

  .authority-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body.mobile-bar-visible {
    padding-bottom: 82px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 66px 0;
  }

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

  .brand-link {
    flex-basis: 220px;
  }

  .header-phone small,
  .header-call-number {
    display: none;
  }

  .header-phone a {
    color: var(--blue-700);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .header-call-icon,
  .header-call-mobile {
    display: block;
  }

  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .form-card__header,
  .form-card__body {
    padding-inline: 20px;
  }

  .authority-item {
    min-height: 115px;
    padding: 18px 12px;
  }

  .authority-item span {
    font-size: 0.66rem;
  }

  .attorney-card {
    grid-template-columns: 1fr;
  }

  .attorney-card img {
    height: 340px;
    object-position: center 25%;
  }

  .attorney-copy {
    padding: 24px;
  }

  .mobile-action-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

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

  .ticker-track {
    width: auto;
    overflow-x: auto;
    padding-inline: 20px;
  }
}
