:root {
  --bg: #f7f3ec;
  --surface: #ffffff;
  --surface-soft: #fffcf6;
  --ink: #111827;
  --muted: #596372;
  --line: rgba(17, 24, 39, 0.13);
  --brand: #9a6a21;
  --brand-dark: #6f4a14;
  --brand-soft: rgba(154, 106, 33, 0.11);
  --navy: #111827;
  --navy-soft: #1f2937;
  --green: #1f7a4d;
  --radius: 24px;
  --shadow: 0 26px 70px rgba(17, 24, 39, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, rgba(154, 106, 33, 0.12), transparent 34%), var(--bg);
  line-height: 1.68;
}

body::selection {
  background: rgba(154, 106, 33, 0.24);
}

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

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

p {
  margin: 0 0 16px;
}

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

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
}

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

.brand strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--navy-soft);
  font-weight: 850;
  font-size: 14px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--brand-soft);
  color: var(--brand-dark);
  outline: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.22);
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--brand-dark);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  padding-top: 68px;
}

.hero-grid,
.split-grid,
.practice-grid,
.local-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.intro h2,
.practice h2,
.local h2,
.content-cluster h2,
.contact h2 {
  margin: 0 0 20px;
  color: var(--navy);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.hero-copy h1 {
  font-size: clamp(38px, 6vw, 74px);
}

.hero-lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 44px rgba(154, 106, 33, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--surface);
  color: var(--navy);
  border: 1px solid var(--line);
}

.full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-badges li {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 900;
}

.hero-panel {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.hero-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.contact-card strong {
  font-size: 13px;
  color: var(--muted);
}

.contact-card a {
  font-size: 24px;
  font-weight: 1000;
  color: var(--brand-dark);
}

.contact-card span {
  color: var(--navy-soft);
  font-weight: 850;
}

.trust-strip {
  padding: 28px 0 72px;
}

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

.trust-grid article,
.service-card,
.quote-box,
.attorney-card,
.process-grid article,
.cluster-card,
.lead-form,
.map-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
}

.trust-grid article {
  padding: 22px;
  border-radius: var(--radius);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-grid span {
  color: var(--muted);
}

.intro,
.services,
.attorneys,
.faq {
  background: rgba(255, 255, 255, 0.34);
}

.intro h2,
.practice h2,
.local h2,
.content-cluster h2,
.contact h2,
.section-heading h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.quote-box,
.cluster-card {
  padding: 34px;
  border-radius: 30px;
}

.quote-box blockquote {
  margin: 0 0 18px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.quote-box span {
  color: var(--brand-dark);
  font-weight: 950;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.service-search {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin: 0 0 24px;
}

.service-search label {
  color: var(--navy-soft);
  font-weight: 950;
}

.service-search input,
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.service-search input:focus,
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: rgba(154, 106, 33, 0.72);
  box-shadow: 0 0 0 4px rgba(154, 106, 33, 0.12);
}

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

.service-card {
  position: relative;
  min-height: 266px;
  padding: 26px;
  border-radius: 28px;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: var(--brand-soft);
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--brand-soft);
  font-size: 28px;
}

.service-card h3,
.attorney-card h3,
.process-grid h3,
.cluster-card h3 {
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.service-card p,
.attorney-card p,
.process-grid p,
.local p,
.content-cluster p,
.contact p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand-dark);
  font-weight: 950;
}

.text-link::after {
  content: " →";
}

.practice-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.practice-grid img,
.attorney-card img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.86);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 14px 13px 44px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  font-weight: 850;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(31, 122, 77, 0.12);
  color: var(--green);
  font-weight: 1000;
}

.compact {
  margin-top: 12px;
}

.attorney-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.attorney-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 24px;
  padding: 18px;
  border-radius: 32px;
  align-items: center;
}

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

.attorney-role {
  color: var(--brand-dark) !important;
  font-weight: 950;
}

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

.process-grid article {
  padding: 26px;
  border-radius: 28px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-weight: 1000;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.local-grid {
  align-items: stretch;
}

.local-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.local-details a,
.local-details span {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.map-card {
  min-height: 430px;
  overflow: hidden;
  border-radius: 32px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 6px 20px;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 950;
  color: var(--navy);
}

.faq-item p {
  color: var(--muted);
  padding-bottom: 16px;
}

.contact-grid {
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-option {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.contact-option span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--brand-soft);
}

.contact-option strong,
.contact-option small {
  display: block;
}

.contact-option small {
  color: var(--muted);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 32px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-soft);
  font-weight: 950;
}

.lead-form textarea {
  resize: vertical;
  min-height: 140px;
}

.consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  font-size: 14px;
  color: var(--muted) !important;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.form-note.is-error {
  color: #8b1e1e;
  font-weight: 900;
}

.form-note.is-success {
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.9fr;
  gap: 34px;
}

.footer-grid p {
  max-width: 640px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
}

.footer-brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 16px;
  }

  .header-call {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .practice-grid,
  .local-grid,
  .contact-grid,
  .attorney-card {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 42px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-panel img {
    min-height: 320px;
  }

  .contact-card {
    position: static;
    margin: 12px;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .quote-box,
  .cluster-card,
  .lead-form {
    padding: 22px;
    border-radius: 24px;
  }

  .attorney-card img {
    min-height: 260px;
  }
}

@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;
  }
}
