:root {
  --navy: #0b1f33;
  --navy-deep: #061522;
  --ivory: #f7f3ea;
  --ivory-deep: #eee8dc;
  --paper: #fffdf8;
  --brass: #b08a4a;
  --brass-dark: #8b6a32;
  --ink: #17212b;
  --slate: #59636d;
  --rule: #d8d0c2;
  --white: #ffffff;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --max: 1180px;
  --shadow: 0 20px 50px rgba(6, 21, 34, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
}

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

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--brass-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 42px;
  height: 1px;
  margin: 0 13px 4px 0;
  background: currentColor;
  content: "";
}

.section-title,
.page-title,
.hero-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.3rem, 4.5vw, 4.25rem);
  line-height: 1.03;
}

.section-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--slate);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-deep);
  background: var(--brass);
  border-color: var(--brass);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--brass-dark);
  border-color: var(--brass-dark);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--navy);
}

.btn-on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.btn-on-dark:hover {
  color: var(--navy);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--navy);
  font-weight: 700;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Utility bar and navigation */
.utility-bar {
  color: #e7ddc9;
  background: var(--navy-deep);
  font-size: 0.82rem;
}

.utility-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-bar p {
  margin: 0;
}

.utility-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.utility-links a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(176, 138, 74, 0.52);
  background: rgba(247, 243, 234, 0.96);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 58px;
  border-right: 1px solid var(--brass);
  place-items: center;
  color: var(--brass-dark);
  font-family: var(--serif);
  font-size: 3.15rem;
  line-height: 1;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-tag {
  display: block;
  margin-top: 7px;
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:not(.nav-call)::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 2px;
  background: var(--brass);
  content: "";
  transition: right 160ms ease, left 160ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
  left: 0;
}

.nav-call {
  padding: 11px 16px !important;
  color: var(--white) !important;
  background: var(--navy);
}

.nav-call:hover {
  background: var(--brass-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--navy);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Home hero */
.hero {
  min-height: 650px;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(28px, 5vw, 76px) 72px max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(105deg, var(--paper) 0%, var(--paper) 90%, rgba(255, 253, 248, 0.88) 100%);
}

.hero-title {
  max-width: 670px;
  font-size: clamp(3.5rem, 5.7vw, 5.75rem);
  line-height: 0.96;
}

.hero-copy .lead {
  max-width: 620px;
  margin: 27px 0 0;
  color: #3c4853;
  font-size: clamp(1.05rem, 1.6vw, 1.23rem);
  line-height: 1.62;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border-left: 1px solid var(--brass);
  background: var(--navy) url("images/hero-courthouse.jpg") 100% center/cover no-repeat;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 31, 51, 0.15), transparent 42%), linear-gradient(0deg, rgba(6, 21, 34, 0.25), transparent 35%);
  content: "";
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 1;
  max-width: 250px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.7rem;
  text-align: right;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  position: relative;
  min-height: 122px;
  padding: 30px clamp(20px, 3vw, 42px);
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(176, 138, 74, 0.62);
}

.proof-label {
  display: block;
  margin-bottom: 4px;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-value {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

/* General sections */
.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.section-white {
  background: var(--paper);
}

.section-dark {
  color: #d5dbe0;
  background: var(--navy);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-intro {
  color: #c6ced5;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.practice-grid {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  grid-template-columns: repeat(2, 1fr);
}

.practice-card {
  position: relative;
  min-height: 300px;
  padding: clamp(28px, 4vw, 45px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.practice-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.practice-card.featured {
  color: var(--white);
  background: var(--navy);
}

.practice-card.featured:hover {
  background: var(--navy-deep);
}

.card-num {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.practice-card h3 {
  max-width: 460px;
  margin: 20px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.02;
}

.practice-card.featured h3 {
  color: var(--white);
}

.practice-card p {
  max-width: 520px;
  margin: 0;
  color: var(--slate);
  font-size: 0.96rem;
}

.practice-card.featured p {
  color: #cad2d8;
}

.card-arrow {
  display: block;
  margin-top: 25px;
  color: var(--brass);
  font-weight: 700;
}

.results-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.results-image {
  min-height: 620px;
  background: var(--navy) url("images/results-courthouse.jpg") center/cover no-repeat;
}

.results-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 8vw, 112px);
  color: var(--white);
  background: var(--navy);
}

.results-copy .eyebrow {
  color: var(--brass);
}

.results-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.result-highlight {
  margin: 34px 0 0;
  padding: 25px 0;
  border-top: 1px solid rgba(176, 138, 74, 0.7);
  border-bottom: 1px solid rgba(176, 138, 74, 0.7);
}

.result-highlight strong {
  display: block;
  color: var(--brass);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
}

.result-highlight span {
  display: block;
  margin-top: 8px;
  color: #d5dbe0;
  font-size: 0.94rem;
}

.micro-disclaimer {
  margin: 24px 0 0;
  color: #aeb8c0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.attorney-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.attorney-monogram {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--navy) url("images/about-florida-civic.jpg") center/cover no-repeat;
  place-items: end start;
}

.attorney-monogram::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 34, 0.92), rgba(6, 21, 34, 0.02) 65%);
  content: "";
}

.monogram-label {
  position: relative;
  z-index: 1;
  padding: 32px;
  color: var(--white);
}

.monogram-label strong {
  display: block;
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.monogram-label span {
  display: block;
  margin-top: 9px;
  color: #e1d3b7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.attorney-copy p {
  color: var(--slate);
}

.credential-list {
  display: grid;
  margin: 32px 0;
  border-top: 1px solid var(--rule);
  grid-template-columns: 1fr 1fr;
}

.credential {
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--rule);
}

.credential:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--rule);
}

.credential dt {
  color: var(--brass-dark);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.credential dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-weight: 600;
}

.promise-grid {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(4, 1fr);
}

.promise {
  padding: 0 26px;
  border-left: 1px solid rgba(176, 138, 74, 0.52);
}

.promise:first-child {
  padding-left: 0;
  border-left: 0;
}

.promise .number {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.promise h3 {
  margin: 11px 0 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.08;
}

.promise p {
  margin: 0;
  color: #bac4cb;
  font-size: 0.9rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 50px;
  align-items: center;
  padding: clamp(42px, 6vw, 72px);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.cta-panel p {
  margin: 18px 0 0;
  color: #cbd3d9;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero::after {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(176, 138, 74, 0.35);
  border-radius: 50%;
  content: "";
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: clamp(70px, 9vw, 115px);
  padding-bottom: clamp(70px, 9vw, 115px);
}

.page-hero .eyebrow {
  color: var(--brass);
}

.page-title {
  max-width: 930px;
  color: var(--white);
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  line-height: 0.95;
}

.page-deck {
  max-width: 740px;
  margin: 27px 0 0;
  color: #cbd3d9;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.anchor-nav {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.anchor-nav .wrap {
  display: flex;
  overflow-x: auto;
  gap: 7px;
  padding-top: 13px;
  padding-bottom: 13px;
  scrollbar-width: thin;
}

.anchor-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.anchor-nav a:hover {
  color: var(--white);
  background: var(--navy);
}

.area-detail {
  scroll-margin-top: 124px;
  border-bottom: 1px solid var(--rule);
}

.area-detail:nth-child(even) {
  background: var(--paper);
}

.area-layout {
  display: grid;
  padding-top: clamp(65px, 8vw, 105px);
  padding-bottom: clamp(65px, 8vw, 105px);
  grid-template-columns: 0.4fr 1fr;
  gap: clamp(40px, 8vw, 100px);
}

.area-index {
  color: var(--brass);
  font-family: var(--serif);
  font-size: clamp(4.6rem, 8vw, 7rem);
  line-height: 0.8;
}

.area-statute {
  display: block;
  margin-top: 18px;
  color: var(--brass-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.area-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.area-copy p {
  max-width: 780px;
  color: var(--slate);
}

.case-list {
  display: grid;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
}

.case-list li {
  padding: 13px 16px 13px 0;
  border-top: 1px solid var(--rule);
  color: var(--navy);
  font-weight: 600;
}

.case-list li:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--rule);
}

/* Results page */
.results-list {
  border-top: 1px solid var(--rule);
}

.result-row {
  display: grid;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule);
  grid-template-columns: 235px 1fr;
  gap: 44px;
}

.result-amount {
  color: var(--brass-dark);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 0.95;
}

.result-amount small {
  display: block;
  margin-top: 10px;
  color: var(--slate);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.result-story h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1.1;
}

.result-story p {
  max-width: 760px;
  margin: 0;
  color: var(--slate);
}

.results-disclaimer {
  margin-top: 42px;
  padding: 26px 30px;
  border-left: 4px solid var(--brass);
  color: var(--slate);
  background: var(--ivory-deep);
  font-size: 0.85rem;
}

/* About page */
.about-lead {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.about-lead .attorney-monogram {
  min-height: 610px;
}

.about-copy .intro {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.3vw, 2.7rem);
  line-height: 1.2;
}

.about-copy p {
  color: var(--slate);
}

.bio-timeline {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--rule);
  grid-template-columns: repeat(3, 1fr);
}

.bio-item {
  padding: 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.bio-item:first-child,
.bio-item:nth-child(4) {
  border-left: 1px solid var(--rule);
}

.bio-year {
  color: var(--brass-dark);
  font-family: var(--serif);
  font-size: 2rem;
}

.bio-item h3 {
  margin: 5px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.bio-item p {
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 105px);
  align-items: start;
}

.office-card {
  padding: 30px 0;
  border-top: 1px solid var(--rule);
}

.office-card:last-child {
  border-bottom: 1px solid var(--rule);
}

.office-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 500;
}

.office-role {
  display: block;
  margin: 4px 0 13px;
  color: var(--brass-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.office-card address {
  color: var(--slate);
  font-style: normal;
}

.office-card a {
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 4px;
}

.intake-card {
  padding: clamp(32px, 5vw, 54px);
  border-top: 4px solid var(--brass);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.intake-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.form-intro {
  margin: 15px 0 28px;
  color: var(--slate);
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

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

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bdb5a8;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(176, 138, 74, 0.32);
  border-color: var(--brass-dark);
}

.form-note {
  margin: 18px 0;
  color: var(--slate);
  font-size: 0.78rem;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--navy);
  font-weight: 600;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

/* Footer */
.site-footer {
  color: #bac4cb;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  padding-top: 70px;
  padding-bottom: 55px;
  grid-template-columns: 1.4fr 1fr 0.7fr;
  gap: 55px;
}

.footer-brand {
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid address {
  margin: 13px 0 0;
  color: #aeb8c0;
  font-size: 0.89rem;
  font-style: normal;
}

.footer-grid a {
  color: #e0e5e8;
}

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--brass);
}

.footer-legal {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #84909a;
  font-size: 0.73rem;
  line-height: 1.6;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p + p {
  margin-top: 12px;
}

.mobile-action {
  display: none;
}

/* Entrance animation */
.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: reveal-up 520ms ease forwards;
}

.reveal-delay-1 {
  animation-delay: 70ms;
}

.reveal-delay-2 {
  animation-delay: 140ms;
}

.reveal-delay-3 {
  animation-delay: 210ms;
}

@keyframes reveal-up {
  from {
    transform: translateY(12px);
  }

  to {
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1040px) {
  .nav-call {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  }

  .hero-copy {
    padding-left: 36px;
  }

  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 0;
  }

  .promise:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 90px;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner > p:first-child {
    display: none;
  }

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

  .brand-mark {
    width: 42px;
    height: 48px;
    font-size: 2.7rem;
  }

  .brand-tag {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 124px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    align-content: start;
    gap: 0;
    padding: 28px 24px;
    opacity: 0;
    background: var(--ivory);
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 17px 5px;
    border-bottom: 1px solid var(--rule);
    font-size: 1.05rem;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-call {
    display: inline-flex;
    justify-content: center;
    margin-top: 18px;
  }

  .hero-grid,
  .results-feature {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 610px;
    padding: 70px 34px;
  }

  .hero-image {
    min-height: 48vh;
    border-top: 1px solid var(--brass);
    border-left: 0;
  }

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

  .proof-item {
    min-height: auto;
    padding: 22px 24px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid rgba(176, 138, 74, 0.5);
    border-left: 0;
  }

  .section-grid,
  .attorney-panel,
  .about-lead,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .results-image {
    min-height: 430px;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .area-layout {
    grid-template-columns: 120px 1fr;
  }

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

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

@media (max-width: 680px) {
  body {
    padding-bottom: 64px;
    font-size: 16px;
  }

  .wrap {
    width: min(calc(100% - 36px), var(--max));
  }

  .utility-links a:last-child {
    display: none;
  }

  .brand {
    gap: 11px;
  }

  .brand-mark {
    width: 36px;
    height: 42px;
    font-size: 2.4rem;
  }

  .brand-name {
    font-size: 1.42rem;
  }

  .main-nav {
    top: 124px;
  }

  .hero-title {
    font-size: clamp(3.15rem, 15vw, 4.65rem);
  }

  .hero-copy {
    min-height: auto;
    padding: 62px 22px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .practice-grid,
  .results-feature,
  .credential-list,
  .bio-timeline,
  .form-grid,
  .case-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: auto;
  }

  .credential:nth-child(even),
  .case-list li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

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

  .promise,
  .promise:nth-child(3) {
    padding: 20px 0;
    border-top: 1px solid rgba(176, 138, 74, 0.5);
    border-left: 0;
  }

  .promise:first-child {
    border-top: 0;
  }

  .cta-panel {
    padding: 36px 25px;
  }

  .page-hero::after {
    width: 300px;
    height: 300px;
  }

  .page-title {
    font-size: clamp(3.05rem, 16vw, 4.7rem);
  }

  .area-layout {
    grid-template-columns: 1fr;
  }

  .area-index {
    font-size: 4.2rem;
  }

  .result-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-lead .attorney-monogram,
  .attorney-monogram {
    min-height: 480px;
  }

  .bio-item {
    border-left: 1px solid var(--rule);
  }

  .field-full {
    grid-column: auto;
  }

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

  .mobile-action {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    display: grid;
    min-height: 64px;
    color: var(--white);
    background: var(--navy);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-action a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action a + a {
    color: var(--navy);
    background: var(--brass);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
