:root {
  --ink: #18211f;
  --paper: #f7f3ec;
  --surface: #ffffff;
  --line: #d7d0c5;
  --muted: #5f6966;
  --forest: #0d5a47;
  --gold: #c2923d;
  --brick: #9a4a33;
  --sky: #dbe8ec;
  --shadow: 0 18px 50px rgba(24, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--active-header-height, 0px) + 18px);
}

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

a {
  color: inherit;
}

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

a,
button,
input,
textarea {
  max-width: 100%;
}

address,
p,
li,
figcaption {
  overflow-wrap: anywhere;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid rgba(24, 33, 31, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--forest);
  border-radius: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a,
.call-button,
.primary-action,
.secondary-action,
.quick-contact a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.call-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
}

.call-button,
.primary-action {
  color: #ffffff;
  background: var(--forest);
}

.secondary-action {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 33, 31, 0.24);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 70px);
  align-content: end;
  padding: clamp(96px, 18vw, 190px) clamp(20px, 5vw, 72px) clamp(28px, 7vw, 64px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(14, 24, 22, 0.94) 0%, rgba(14, 24, 22, 0.78) 50%, rgba(14, 24, 22, 0.42) 100%),
    url("assets/manno-office-building.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 15, 0.28);
  backdrop-filter: blur(1px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 20%;
  background: linear-gradient(180deg, transparent, rgba(247, 243, 236, 0.22));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

.hero h1 {
  max-width: 820px;
  font-size: 5.7rem;
}

.hero-highlight,
.hero-line {
  display: block;
}

.hero-highlight {
  color: var(--gold);
}

.hero-line {
  margin-top: 8px;
  font-size: 0.58em;
  line-height: 1.08;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .primary-action {
  background: var(--gold);
  color: #1b1408;
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.quick-contact {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, auto);
  gap: 16px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-contact div {
  min-width: 0;
}

.quick-contact strong,
.quick-contact span {
  display: block;
}

.quick-contact span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-contact a {
  color: var(--forest);
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

.section h2 {
  max-width: 900px;
  font-size: 3.5rem;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-grid h3,
.steps h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.intro-grid p,
.steps p,
.attorney p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.attorney {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--surface);
}

.attorney-copy p {
  max-width: 680px;
  margin-top: 22px;
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--forest);
  background: var(--sky);
}

.media-frame,
.office-frame {
  margin: 0;
}

.media-frame img,
.office-frame img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-frame figcaption,
.office-frame figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.process {
  background: #eef5f1;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(13, 90, 71, 0.16);
  border-radius: 8px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: var(--brick);
  border-radius: 50%;
  font-weight: 900;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--ink);
  color: #ffffff;
}

.location .eyebrow {
  color: #efbf60;
}

.location address {
  margin: 22px 0 0;
  font-style: normal;
  font-size: 1.2rem;
}

.hours {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.office-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface);
}

.office-frame figcaption {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
  padding: 32px clamp(20px, 5vw, 72px);
  background: #111716;
  color: #ffffff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span,
.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.search-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  font-size: 0.92rem;
}

.search-hit {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.classic-header {
  background: #f7f7f4;
  border-bottom: 1px solid #d8d8d1;
}

.classic-call-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  color: #ffffff;
  background: #174f85;
  font-weight: 700;
}

.classic-call-strip a {
  color: #ffffff;
  text-decoration: none;
}

.classic-brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 20px;
}

.classic-logo {
  color: #174f85;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.classic-search,
.hybrid-search {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #606b74;
}

.classic-search input,
.hybrid-search input,
.case-form input,
.case-form textarea,
.hybrid-case-form input,
.hybrid-case-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid #c7d0d7;
  border-radius: 5px;
  font: inherit;
}

.classic-search button,
.hybrid-search button {
  min-height: 42px;
  padding: 9px 13px;
  color: #ffffff;
  background: #174f85;
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-weight: 800;
}

.classic-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  padding: 0 20px 18px;
}

.classic-nav a {
  padding: 10px 13px;
  color: #ffffff;
  background: #2d6c9f;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.classic-site {
  color: #24323d;
  background: #eef2f4;
  font-family: Arial, Helvetica, sans-serif;
}

.classic-hero {
  padding: 34px 20px 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.92)),
    #dbe4ea;
}

.classic-slogan {
  max-width: 1120px;
  margin: 0 auto 20px;
  color: #174f85;
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
}

.classic-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #cfd8df;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(36, 50, 61, 0.12);
}

.classic-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid #cfd8df;
}

.classic-card h1 {
  margin: 0 0 8px;
  color: #174f85;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1.08;
}

.classic-card p,
.classic-card address {
  margin: 0 0 12px;
  font-style: normal;
}

.classic-card strong {
  color: #9a4a33;
}

.classic-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px;
}

.classic-feature-strip article,
.classic-sidebar,
.classic-main-copy,
.classic-two-column > div,
.classic-profile > div,
.classic-profile figure,
.classic-rating,
.classic-footer-widgets article {
  background: #ffffff;
  border: 1px solid #cfd8df;
  border-radius: 8px;
}

.classic-feature-strip article {
  padding: 22px;
  text-align: center;
}

.classic-feature-strip img {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.classic-feature-strip h2,
.classic-feature-strip h3,
.classic-content h2,
.classic-two-column h2,
.classic-profile h2,
.classic-rating h2,
.classic-footer-widgets h2 {
  margin: 0 0 10px;
  color: #174f85;
  font-family: Georgia, "Times New Roman", serif;
}

.classic-feature-strip h2 {
  font-size: 1.45rem;
}

.classic-feature-strip h3 {
  color: #9a4a33;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.classic-feature-strip p,
.classic-content p,
.classic-two-column p,
.classic-profile p,
.classic-rating p,
.classic-footer-widgets p {
  margin: 0;
  color: #52616d;
}

.classic-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
}

.classic-main-copy,
.classic-sidebar {
  padding: 24px;
}

.classic-kicker {
  color: #9a4a33 !important;
  font-weight: 800;
}

.classic-main-copy img {
  float: left;
  width: 260px;
  margin: 4px 22px 16px 0;
  border: 1px solid #cfd8df;
}

.classic-main-copy ul,
.classic-mini-list ul {
  clear: both;
  margin: 18px 0 0;
  padding-left: 20px;
}

.case-form {
  display: grid;
  gap: 12px;
}

.case-form label {
  display: grid;
  gap: 5px;
  color: #4a5964;
  font-weight: 700;
}

.case-form .consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  font-size: 0.9rem;
  font-weight: 500;
}

.case-form .consent input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.case-form button {
  min-height: 44px;
  color: #ffffff;
  background: #174f85;
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-weight: 800;
}

.classic-two-column,
.classic-profile,
.classic-rating,
.classic-footer-widgets {
  display: grid;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
}

.classic-two-column,
.classic-profile {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.classic-two-column > div,
.classic-profile > div,
.classic-profile figure {
  padding: 24px;
}

.classic-profile figure {
  margin: 0;
}

.classic-profile img {
  max-width: 220px;
  margin: 0 auto 12px;
}

.classic-profile figcaption {
  color: #52616d;
  text-align: center;
}

.classic-rating {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
}

.classic-rating img {
  width: 100%;
  border-radius: 6px;
}

.classic-footer-widgets {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 42px;
}

.classic-footer-widgets article {
  padding: 20px;
}

.hybrid-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #f8f8f3;
  border-bottom: 1px solid #cfd8df;
  box-shadow: 0 8px 22px rgba(25, 48, 68, 0.08);
}

.hybrid-call-strip {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 8px clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: #174f85;
  font-weight: 800;
}

.hybrid-call-strip a {
  color: #ffffff;
  text-decoration: none;
}

.hybrid-brand-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(340px, 0.65fr);
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px;
}

.hybrid-logo {
  display: grid;
  gap: 4px;
  color: #174f85;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
}

.hybrid-logo small {
  color: #5f6d76;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.hybrid-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 0 20px 14px;
}

.hybrid-nav a {
  padding: 10px 14px;
  color: #ffffff;
  background: #2d6c9f;
  border-bottom: 3px solid #174f85;
  border-radius: 5px 5px 3px 3px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
}

.hybrid-site {
  color: #24323d;
  background: #edf3f6;
  font-family: Arial, Helvetica, sans-serif;
}

.hybrid-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
  padding: 52px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(112deg, rgba(23, 79, 133, 0.98) 0%, rgba(23, 79, 133, 0.96) 58%, rgba(45, 108, 159, 0.92) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 24px),
    #174f85;
}

.hybrid-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 43, 70, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.hybrid-hero::after {
  content: none;
}

.hybrid-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 430px;
  max-width: 820px;
  color: #ffffff;
}

.hybrid-kicker {
  margin: 0 0 10px;
  color: #f1c164;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hybrid-hero h1,
.hybrid-section-heading h2,
.hybrid-profile h2,
.hybrid-review h2,
.hybrid-contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.hybrid-hero h1 {
  max-width: 780px;
  font-size: 4.7rem;
}

.hybrid-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hybrid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hybrid-primary,
.hybrid-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 900;
}

.hybrid-primary {
  color: #1d1a10;
  background: #f1c164;
}

.hybrid-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.hybrid-secondary.dark {
  color: #174f85;
  background: #ffffff;
  border-color: #b9cad6;
}

.hybrid-contact-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding: 20px;
  color: #24323d;
  background: #ffffff;
  border: 1px solid #cfd8df;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 37, 56, 0.2);
}

.hybrid-contact-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #cfd8df;
}

.hybrid-contact-card h2,
.hybrid-feature-grid h2,
.hybrid-problem-grid h3,
.hybrid-contact h3 {
  margin: 16px 0 8px;
  color: #174f85;
  font-family: Georgia, "Times New Roman", serif;
}

.hybrid-contact-card address,
.hybrid-contact-card p {
  margin: 0 0 12px;
  color: #52616d;
  font-style: normal;
}

.hybrid-contact-card a {
  color: #174f85;
  font-weight: 900;
}

.hybrid-alert-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: #9a4a33;
}

.hybrid-alert-copy {
  display: grid;
  gap: 8px;
  max-width: 920px;
}

.hybrid-alert-copy strong {
  text-transform: none;
  letter-spacing: 0;
}

.hybrid-alert-copy span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.hybrid-alert-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.hybrid-alert-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 5px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.hybrid-feature-grid,
.hybrid-practice-detail,
.hybrid-faq,
.hybrid-profile,
.hybrid-review,
.hybrid-contact,
.hybrid-privacy {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 20px;
}

.hybrid-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hybrid-feature-grid article,
.hybrid-problem-grid article,
.hybrid-faq,
.hybrid-profile,
.hybrid-review,
.hybrid-contact,
.hybrid-privacy {
  background: #ffffff;
  border: 1px solid #cfd8df;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(36, 50, 61, 0.08);
}

.hybrid-feature-grid article {
  padding: 24px;
}

.hybrid-feature-grid img {
  width: 66px;
  height: 58px;
  object-fit: contain;
}

.hybrid-feature-grid p,
.hybrid-problem-grid p,
.hybrid-faq p,
.hybrid-profile p,
.hybrid-review p,
.hybrid-contact p,
.hybrid-privacy p {
  margin: 0;
  color: #52616d;
}

.hybrid-section-heading {
  margin-bottom: 22px;
}

.hybrid-section-heading h2,
.hybrid-faq h2,
.hybrid-profile h2,
.hybrid-review h2,
.hybrid-contact h2,
.hybrid-privacy h2 {
  color: #174f85;
  font-size: 2.65rem;
}

.hybrid-note {
  max-width: 820px;
  margin-top: 12px !important;
  font-weight: 800;
}

.hybrid-faq {
  display: grid;
  gap: 20px;
}

.hybrid-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hybrid-faq-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 260px;
  padding: 20px;
  background: #f4f8fa;
  border: 1px solid #d4e0e7;
  border-radius: 8px;
}

.hybrid-faq-grid h3 {
  margin: 0;
  color: #174f85;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
}

.hybrid-faq-grid a {
  align-self: end;
  color: #174f85;
  font-weight: 900;
}

.hybrid-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hybrid-problem-grid article {
  padding: 22px;
}

.hybrid-profile,
.hybrid-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 28px;
  margin-bottom: 28px;
}

.hybrid-review {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: 32px;
}

.hybrid-review-copy {
  display: grid;
  align-content: start;
}

.hybrid-profile ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: #24323d;
}

.hybrid-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hybrid-profile figure {
  margin: 0;
}

.hybrid-profile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #cfd8df;
}

.hybrid-profile figcaption {
  margin-top: 10px;
  color: #52616d;
  font-size: 0.9rem;
}

.hybrid-prep-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.hybrid-prep-list div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  color: #24323d;
  background: #f4f8fa;
  border: 1px solid #d4e0e7;
  border-radius: 8px;
}

.hybrid-prep-list strong {
  color: #174f85;
  font-weight: 900;
}

.hybrid-prep-list span {
  color: #52616d;
  font-size: 0.96rem;
}

.hybrid-intake-note {
  margin-top: 18px !important;
  padding: 14px 0 14px 16px;
  color: #24323d !important;
  border-left: 4px solid #f1c164;
  font-weight: 800;
  line-height: 1.45;
}

.hybrid-case-form {
  display: grid;
  gap: 12px;
}

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

.hybrid-case-form label {
  display: grid;
  gap: 6px;
  color: #4a5964;
  font-weight: 800;
  line-height: 1.3;
}

.hybrid-checkbox-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid #d4e0e7;
  border-radius: 8px;
  background: #f4f8fa;
}

.hybrid-checkbox-group legend {
  padding: 0 6px;
  color: #174f85;
  font-weight: 900;
}

.hybrid-checkbox-group label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #4a5964;
  font-weight: 800;
}

.hybrid-checkbox-group input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.hybrid-form-note {
  margin: -2px 0 2px !important;
  color: #52616d;
  font-size: 0.92rem;
  line-height: 1.42;
}

.hybrid-case-form textarea::placeholder {
  color: #7b8790;
}

.hybrid-case-form button {
  min-height: 46px;
  color: #ffffff;
  background: #174f85;
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-weight: 900;
}

.hybrid-case-form button:disabled {
  opacity: 0.6;
  cursor: progress;
}

/* Honeypot: kept in the DOM for bots but off-screen for people and AT. */
.intake-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hybrid-form-status {
  margin: 0;
  font-weight: 700;
  min-height: 1.2em;
}

.hybrid-form-status[data-state="pending"] {
  color: #5b6b7a;
}

.hybrid-form-status[data-state="success"] {
  color: #1f7a4d;
}

.hybrid-form-status[data-state="error"] {
  color: #b42318;
}

.hybrid-privacy {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.hybrid-contact {
  display: grid;
  gap: 22px;
  margin-bottom: 54px;
}

.hybrid-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hybrid-contact-grid > div {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-left: 18px;
  border-left: 4px solid #f1c164;
}

.hybrid-contact h3 {
  margin: 0;
  color: #174f85;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.hybrid-contact address {
  margin: 0;
  color: #52616d;
  font-style: normal;
}

.hybrid-contact .hybrid-primary {
  justify-self: start;
  margin-top: 8px;
}

.policy-note {
  max-width: 780px;
  margin-top: 12px !important;
  color: #9a4a33 !important;
  font-weight: 800;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.privacy-grid article {
  min-height: 210px;
  padding: 20px;
  background: #f4f8fa;
  border: 1px solid #d4e0e7;
  border-radius: 8px;
}

.privacy-grid h3 {
  margin: 0 0 10px;
  color: #174f85;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.privacy-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #24323d;
  border-radius: 8px;
}

.privacy-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.privacy-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 15px;
  color: #1d1a10;
  background: #f1c164;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .quick-contact,
  .intro-grid,
  .attorney,
  .location,
  .site-footer,
  .hybrid-call-strip,
  .hybrid-brand-row,
  .hybrid-hero,
  .hybrid-feature-grid,
  .hybrid-problem-grid,
  .hybrid-faq-grid,
  .hybrid-profile,
  .hybrid-review,
  .hybrid-contact,
  .hybrid-contact-grid,
  .privacy-grid,
  .privacy-footer,
  .classic-feature-strip,
  .classic-content,
  .classic-two-column,
  .classic-profile,
  .classic-rating,
  .classic-footer-widgets {
    grid-template-columns: 1fr;
  }

  .hybrid-alert-band {
    grid-template-columns: 1fr;
  }

  .hybrid-alert-links {
    justify-content: flex-start;
  }

  .quick-contact a {
    white-space: normal;
  }

  .classic-call-strip {
    flex-wrap: wrap;
    text-align: center;
  }

  .hybrid-call-strip {
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .hybrid-call-strip a[href^="mailto"] {
    display: none;
  }

  .hybrid-brand-row {
    gap: 12px;
    padding: 14px 16px 10px;
  }

  .hybrid-logo {
    font-size: 1.55rem;
  }

  .classic-nav,
  .hybrid-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    overflow: visible;
    padding-inline: 16px;
    scroll-snap-type: none;
  }

  .classic-nav a,
  .hybrid-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    flex: 0 1 auto;
    scroll-snap-align: none;
    text-align: center;
  }

  .hybrid-search {
    align-items: stretch;
  }

  .hybrid-hero::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .call-button {
    width: 100%;
  }

  .hero {
    min-height: 86svh;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section h2 {
    font-size: 2.25rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .classic-brand-row {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .classic-logo {
    font-size: 1.45rem;
  }

  .classic-search,
  .hybrid-search {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .classic-search label,
  .hybrid-search label {
    font-weight: 800;
  }

  .classic-search button,
  .hybrid-search button {
    width: 100%;
  }

  .classic-nav,
  .hybrid-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 0 10px 9px;
  }

  .classic-nav a,
  .hybrid-nav a {
    min-width: 0;
    min-height: 40px;
    padding: 7px 4px;
    border-bottom-width: 0;
    border-radius: 6px;
    font-size: 0;
    line-height: 1.05;
  }

  .classic-nav a[data-mobile-label]::after,
  .hybrid-nav a[data-mobile-label]::after {
    content: attr(data-mobile-label);
    font-size: 0.74rem;
    font-weight: 900;
  }

  .classic-hero {
    padding: 24px 14px 34px;
  }

  .classic-slogan {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .classic-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .classic-card h1 {
    font-size: 1.9rem;
  }

  .classic-main-copy img {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }

  .hybrid-call-strip,
  .hybrid-search,
  .hybrid-actions,
  .hybrid-alert-band {
    grid-template-columns: 1fr;
  }

  .hybrid-search,
  .hybrid-actions {
    display: grid;
  }

  .hybrid-call-strip {
    gap: 6px;
    justify-content: center;
    padding: 7px 12px;
    font-size: 0.83rem;
  }

  .hybrid-call-strip span {
    display: none;
  }

  .hybrid-call-strip a {
    justify-self: center;
  }

  .hybrid-brand-row {
    padding: 9px 12px 7px;
  }

  .hybrid-logo {
    justify-items: center;
    font-size: 1.05rem;
    line-height: 1.12;
    text-align: center;
  }

  .hybrid-logo small {
    display: none;
  }

  .hybrid-brand-row .hybrid-search {
    display: none;
  }

  .hybrid-hero {
    padding: 34px 16px;
  }

  .hybrid-hero-copy {
    min-height: auto;
  }

  .hybrid-hero h1 {
    font-size: 2.45rem;
  }

  .hybrid-hero p {
    font-size: 1.02rem;
  }

  .hybrid-section-heading h2,
  .hybrid-faq h2,
  .hybrid-profile h2,
  .hybrid-review h2,
  .hybrid-contact h2,
  .hybrid-privacy h2 {
    font-size: 2rem;
  }

  .hybrid-primary,
  .hybrid-secondary,
  .hybrid-profile-actions a {
    width: 100%;
  }

  .hybrid-field-row {
    grid-template-columns: 1fr;
  }

  .hybrid-contact {
    min-height: calc(100svh - var(--active-header-height, 0px) - 32px);
  }

  .hybrid-prep-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .privacy-footer a {
    width: 100%;
    white-space: normal;
  }

  .site-footer {
    gap: 18px;
    padding: 26px 16px;
  }

}
