:root {
  --ink: #0c2332;
  --ink-soft: #48606d;
  --navy: #0e2e3f;
  --navy-light: #17465d;
  --cream: #f6f2e9;
  --paper: #fffdf8;
  --white: #ffffff;
  --gold: #c29a5b;
  --gold-light: #e7d5b7;
  --line: rgba(12, 35, 50, 0.15);
  --serif: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --sans: Inter, Avenir, 'Helvetica Neue', Arial, sans-serif;
  --shadow: 0 24px 70px rgba(7, 30, 43, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--white);
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-color: var(--gold);
}

.header-call {
  justify-self: end;
  display: grid;
  padding-left: 22px;
  border-left: 1px solid var(--line);
  line-height: 1.25;
}

.header-call span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 4px;
  font-size: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(12, 35, 50, 0.055) 50%, transparent 50.1%) center/110px 100%,
    var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(194, 154, 91, 0.36);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.eyebrow,
.card-kicker {
  margin: 0 0 18px;
  color: #8b6630;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(14, 46, 63, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-light);
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-note {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.relief-card {
  padding: clamp(30px, 5vw, 52px);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.relief-card .card-kicker {
  color: var(--gold-light);
}

.relief-card h2 {
  margin-bottom: 34px;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.consultation-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.consultation-steps li > span {
  padding-top: 3px;
  color: var(--gold-light);
  font-size: 0.77rem;
  font-weight: 700;
}

.consultation-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.consultation-steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.96rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
}

.card-footer a {
  color: var(--white);
  font-weight: 700;
}

.trust-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.54);
}

.trust-row div {
  display: grid;
  gap: 2px;
  min-height: 106px;
  align-content: center;
  padding: 18px 34px;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.trust-row span {
  color: var(--ink-soft);
  font-size: 0.81rem;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2 {
  max-width: 730px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-card-featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  background: var(--cream);
}

.service-number {
  color: #8b6630;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  max-width: 340px;
  margin: 48px 0 18px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.service-card p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.service-card-featured h3 {
  margin-top: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.service-card-featured > a {
  position: absolute;
  right: 30px;
  bottom: 28px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.availability-note {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.insight-band {
  background: var(--navy);
  color: var(--white);
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 560px;
}

.insight-statement,
.pressure-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(30px, 6vw, 84px);
}

.insight-statement {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.quote-mark {
  position: absolute;
  top: 40px;
  left: 18px;
  color: rgba(231, 213, 183, 0.16);
  font-family: var(--serif);
  font-size: 16rem;
  line-height: 1;
}

.insight-statement blockquote {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.pressure-list .eyebrow {
  color: var(--gold-light);
}

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

.pressure-list li {
  position: relative;
  padding: 20px 8px 20px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.82);
}

.pressure-list li::before {
  content: '✓';
  position: absolute;
  left: 3px;
  color: var(--gold-light);
}

.process-section {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(70px, 10vw, 150px);
}

.process-intro {
  position: sticky;
  top: 34px;
  align-self: start;
}

.process-intro h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.process-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 32px;
  color: var(--ink-soft);
}

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: #8b6630;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.process-list p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.attorney-section {
  padding: 130px 0;
  background: var(--paper);
}

.attorney-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(65px, 10vw, 145px);
  align-items: center;
}

.attorney-portrait {
  position: relative;
  min-height: 610px;
  padding: 66px 62px 0;
  background: var(--gold-light);
}

.attorney-portrait::before {
  content: 'PRINCIPAL ATTORNEY';
  position: absolute;
  top: 28px;
  left: 28px;
  color: rgba(12, 35, 50, 0.62);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.attorney-portrait img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.84) contrast(1.02);
}

.portrait-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 0.8rem;
}

.portrait-caption span {
  color: rgba(12, 35, 50, 0.64);
}

.attorney-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.attorney-title {
  margin-bottom: 30px;
  color: #8b6630;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.attorney-copy > p:not(.eyebrow):not(.attorney-title) {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 38px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.credentials li {
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--line);
}

.credentials li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.credentials li:nth-child(even) {
  padding-left: 22px;
}

.credentials strong {
  display: block;
  margin-bottom: 4px;
  color: #8b6630;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credentials span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
}

.attorney-link {
  display: inline-block;
  font-size: 0.9rem;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 10vw, 150px);
}

.faq-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.faq-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 28px 56px 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  content: '+';
  position: absolute;
  top: 25px;
  right: 4px;
  color: #8b6630;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  max-width: 650px;
  padding: 0 54px 28px 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.final-cta {
  padding: 92px 0;
  background: var(--navy);
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.final-cta .eyebrow {
  color: var(--gold-light);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.3rem, 6vw, 6.3rem);
}

.final-cta-contact p {
  color: rgba(255, 255, 255, 0.7);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--gold-light);
}

.site-footer {
  background: #081e2a;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 70px;
  padding: 76px 0;
}

.footer-brand {
  align-self: start;
}

.footer-brand .brand-mark {
  background: var(--gold-light);
  color: var(--ink);
}

.footer-brand .brand-copy small,
.footer-contact address {
  color: rgba(255, 255, 255, 0.56);
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-contact > a {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-contact address {
  font-size: 0.86rem;
  font-style: normal;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  line-height: 1.55;
}

.footer-legal p {
  margin-bottom: 0;
}

.footer-legal p:first-child {
  max-width: 800px;
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .section-heading,
  .insight-grid,
  .process-grid,
  .attorney-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .relief-card {
    max-width: 620px;
  }

  .trust-row {
    margin-top: 58px;
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .insight-grid {
    min-height: auto;
  }

  .insight-statement {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .process-intro {
    position: static;
  }

  .attorney-portrait {
    max-width: 520px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 1.25rem;
  }

  .brand-copy small {
    font-size: 0.64rem;
  }

  .header-call {
    padding-left: 14px;
  }

  .header-call span {
    display: none;
  }

  .header-call strong {
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .relief-card {
    margin-inline: -2px;
  }

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

  .trust-row div,
  .trust-row div:last-child {
    min-height: 86px;
    padding-inline: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .service-card,
  .service-card-featured {
    grid-column: auto;
    grid-template-columns: 42px 1fr;
    min-height: 260px;
    padding: 24px;
  }

  .service-card h3 {
    margin-top: 36px;
  }

  .service-card-featured h3 {
    margin-top: 0;
    font-size: 2.7rem;
  }

  .service-card-featured > a {
    right: 24px;
    bottom: 24px;
  }

  .insight-statement,
  .pressure-list {
    padding: 64px 24px;
  }

  .insight-statement {
    min-height: 400px;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .attorney-section {
    padding: 86px 0;
  }

  .attorney-portrait {
    min-height: 0;
    padding: 50px 36px 0;
  }

  .attorney-portrait img {
    height: auto;
    aspect-ratio: 5 / 6;
  }

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

  .credentials li,
  .credentials li:nth-child(odd),
  .credentials li:nth-child(even) {
    padding: 18px 0;
    border-right: 0;
  }

  .final-cta {
    padding: 76px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 60px 0;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
