:root {
  --ink: #17211e;
  --ink-soft: #56615d;
  --paper: #f7f4ed;
  --paper-deep: #e8e3d8;
  --cream: #fffdf8;
  --green: #0d382d;
  --green-deep: #08271f;
  --gold: #b18a4d;
  --gold-light: #d3b57e;
  --line: rgba(16, 41, 34, 0.17);
  --header-height: 86px;
  --font-montserrat: "Montserrat";
  --font-cinzel: "Cinzel";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  font-family: var(--font-montserrat), Arial, sans-serif;
}

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

button,
summary {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 244, 237, 0.97);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(110px, 1fr);
  height: var(--header-height);
  left: 0;
  padding: 0 clamp(24px, 4.2vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.wordmark {
  display: flex;
  justify-self: start;
}

.wordmark img {
  height: auto;
  mix-blend-mode: multiply;
  width: clamp(225px, 21vw, 315px);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-nav > a,
.nav-group > a {
  color: #34423e;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 34px 0 31px;
  text-transform: uppercase;
}

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

.nav-group {
  position: relative;
}

.dropdown {
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(9, 30, 23, 0.12);
  display: grid;
  left: -28px;
  opacity: 0;
  padding: 22px 28px;
  pointer-events: none;
  position: absolute;
  top: 78px;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.25;
  padding: 8px 0;
  white-space: nowrap;
}

.firm-dropdown {
  min-width: 245px;
}

.mega-menu {
  gap: 0 32px;
  grid-template-columns: repeat(3, minmax(175px, 1fr));
  width: min(760px, 74vw);
}

.mega-menu a {
  border-bottom: 1px solid var(--line);
  white-space: normal;
}

.header-contact {
  border-bottom: 1px solid var(--gold);
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
  justify-self: end;
  letter-spacing: 0.11em;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.home-page {
  height: 100svh;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-gutter: stable;
}

.snap-section {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 5vh) clamp(28px, 6vw, 104px) 6vh;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-index {
  color: rgba(13, 56, 45, 0.1);
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: clamp(110px, 15vw, 230px);
  line-height: 1;
  position: absolute;
  right: 4vw;
  top: calc(var(--header-height) + 2vh);
  user-select: none;
}

.light-index {
  color: rgba(255, 255, 255, 0.06);
}

.eyebrow {
  color: #8c6a37;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.22em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-cinzel), Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  margin: 0;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin: 0;
}

.hero {
  background:
    linear-gradient(90deg, rgba(13, 56, 45, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--paper);
  display: grid;
  gap: 6vw;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  padding-bottom: 5vh;
}

.hero-rule {
  background: var(--gold);
  height: 1px;
  left: clamp(28px, 6vw, 104px);
  position: absolute;
  top: calc(var(--header-height) + 5vh);
  width: 58px;
}

.hero-copy {
  align-self: center;
  padding-top: 4vh;
}

.hero h1 {
  font-size: clamp(58px, 6.4vw, 106px);
  line-height: 0.98;
  max-width: 950px;
}

.hero-intro {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
  margin: 34px 0 0;
  max-width: 700px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 30px;
  margin-top: 42px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 750;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 50px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-solid {
  background: var(--green);
  color: white;
}

.button-solid:hover,
.button-solid:focus-visible {
  background: var(--green-deep);
}

.button-text {
  border-bottom: 1px solid var(--gold);
  min-height: auto;
  padding: 8px 0;
}

.button-text span {
  color: var(--gold);
  font-size: 15px;
  margin-left: 12px;
}

.hero-panel {
  align-items: center;
  align-self: stretch;
  background: var(--green);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: -5vh 0 -5vh;
  padding: 8vh 3vw 5vh;
  position: relative;
}

.hero-panel::before {
  border: 1px solid rgba(211, 181, 126, 0.45);
  content: "";
  inset: 28px;
  pointer-events: none;
  position: absolute;
}

.crest-frame {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  padding: 18px;
  width: min(82%, 300px);
}

.crest {
  border-radius: 50%;
  display: block;
  height: auto;
  width: 100%;
}

.hero-panel > p {
  color: rgba(255, 255, 255, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  margin: 48px auto 0;
  max-width: 270px;
  text-align: center;
}

.scroll-cue {
  align-items: center;
  bottom: 3vh;
  display: flex;
  gap: 15px;
  left: clamp(28px, 6vw, 104px);
  position: absolute;
}

.scroll-cue span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  background: var(--gold);
  display: block;
  height: 1px;
  width: 45px;
}

.profile-section {
  align-items: center;
  background: var(--cream);
  display: grid;
  gap: 9vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.profile-title h2,
.approach-heading h2,
.experience-lead h2,
.referral-copy h2,
.contact-main h2 {
  font-size: clamp(48px, 5.2vw, 84px);
  line-height: 1.02;
}

.certification {
  border-left: 2px solid var(--gold);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin: 30px 0 0;
  padding: 5px 0 5px 17px;
}

.profile-copy {
  color: var(--ink-soft);
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.8;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.profile-copy .lead,
.approach-heading .lead,
.referral-copy .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.55;
  margin-top: 0;
}

.inline-link {
  border-bottom: 1px solid var(--gold);
  color: var(--green);
  display: inline-block;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-top: 18px;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.practice-section {
  align-items: center;
  background: var(--green);
  color: white;
  display: grid;
  gap: 6vw;
  grid-template-columns: 0.68fr 1.32fr;
}

.practice-continued {
  background: var(--green-deep);
}

.practice-intro {
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.practice-intro h2 {
  font-size: clamp(43px, 4.6vw, 74px);
  line-height: 1.04;
}

.practice-intro > p:last-child {
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.75;
  margin: 28px 0 0;
}

.area-grid {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.area-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 132px;
  padding: 25px 46px 24px 28px;
  position: relative;
  transition: background 160ms ease;
}

.area-card:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.area-card:hover,
.area-card:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.area-card span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.area-card h3 {
  font-size: clamp(19px, 1.65vw, 26px);
  line-height: 1.24;
  margin-top: 14px;
}

.area-card i {
  color: var(--gold-light);
  font-style: normal;
  position: absolute;
  right: 22px;
  top: 24px;
}

.section-next {
  bottom: 4vh;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  position: absolute;
  right: clamp(28px, 6vw, 104px);
  text-transform: uppercase;
}

.section-next span {
  color: var(--gold-light);
  margin-left: 10px;
}

.approach-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.approach-heading {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.approach-heading .lead {
  color: var(--ink-soft);
  margin-top: 35px;
}

.principles {
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.principles article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 45px minmax(145px, 0.55fr) 1fr;
  padding: 28px 0;
}

.principles span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 750;
}

.principles h3 {
  font-size: clamp(20px, 1.7vw, 27px);
}

.principles p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.experience-section {
  align-items: center;
  background: var(--paper-deep);
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.8fr 1.2fr;
}

.experience-lead {
  position: relative;
  z-index: 1;
}

.experience-lead > p:last-child {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 30px 0 0;
  max-width: 600px;
}

.credential-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.credential {
  border-bottom: 1px solid var(--line);
  min-height: 180px;
  padding: 32px 26px;
}

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

.credential strong {
  color: var(--green);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 55px);
  font-weight: 400;
  line-height: 1.02;
}

.credential span {
  color: var(--ink-soft);
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 13px;
  max-width: 220px;
  text-transform: uppercase;
}

.results-note {
  bottom: 4vh;
  color: #68716e;
  font-size: 10px;
  left: clamp(28px, 6vw, 104px);
  position: absolute;
}

.geography-section {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 56, 45, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--cream);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.geography-lead {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.geography-lead h2 {
  font-size: clamp(46px, 5vw, 80px);
  line-height: 1.02;
}

.geography-lead .lead {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.5;
  margin: 32px 0 14px;
}

.geography-lead > p:not(.eyebrow):not(.lead) {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  max-width: 620px;
}

.county-links {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.county-links a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 15px;
  grid-template-columns: 28px 1fr auto;
  min-height: 92px;
  padding: 18px 20px;
  transition: background 160ms ease, color 160ms ease;
}

.county-links a:hover,
.county-links a:focus-visible {
  background: var(--green);
  color: white;
}

.county-links span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.county-links strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 400;
}

.county-links i {
  color: var(--gold);
  font-style: normal;
}

.referral-section {
  align-items: center;
  background: var(--green);
  color: white;
  display: grid;
  gap: 9vw;
  grid-template-columns: 1.05fr 0.95fr;
}

.referral-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.referral-copy .lead {
  color: rgba(255, 255, 255, 0.92);
  margin: 30px 0 20px;
}

.referral-copy > p:not(.eyebrow):not(.lead) {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  max-width: 650px;
}

.button-outline {
  border: 1px solid var(--gold-light);
  color: white;
  margin-top: 25px;
}

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

.referral-quote {
  border: 1px solid rgba(211, 181, 126, 0.46);
  padding: clamp(36px, 5vw, 75px);
  position: relative;
  z-index: 1;
}

.referral-quote span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 0.6;
}

.referral-quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.25vw, 36px);
  line-height: 1.45;
  margin: 28px 0 0;
}

.contact-section {
  align-content: center;
  background: var(--green-deep);
  color: white;
  display: grid;
  gap: 6vh 9vw;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
}

.contact-main,
.contact-details {
  align-self: center;
  position: relative;
  z-index: 1;
}

.contact-main > p:last-child {
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.75;
  margin: 30px 0 0;
  max-width: 620px;
}

.contact-details {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  padding: 30px 0 30px 5vw;
}

.contact-details a {
  border-bottom: 1px solid rgba(211, 181, 126, 0.55);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 48px);
  padding: 18px 0;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.08em;
  margin: 24px 0 0;
  text-transform: uppercase;
}

footer {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  font-size: 10px;
  gap: 24px;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 0.8fr 1.5fr auto;
  line-height: 1.6;
  padding-top: 28px;
}

footer img {
  height: auto;
  opacity: 0.9;
  width: 190px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

footer > p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

footer small {
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
}

/* Interior pages */
.interior-page {
  background: var(--paper);
  min-height: 100vh;
  padding-top: var(--header-height);
}

.interior-header {
  background: var(--green);
  color: white;
  padding: clamp(75px, 10vw, 150px) clamp(28px, 8vw, 140px);
  position: relative;
}

.interior-header::after {
  border: 1px solid rgba(211, 181, 126, 0.35);
  content: "";
  inset: 24px;
  pointer-events: none;
  position: absolute;
}

.practice-area-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: min(720px, calc(100svh - var(--header-height)));
  padding: 0;
}

.practice-hero-copy {
  align-self: center;
  padding: clamp(60px, 7vw, 115px) clamp(38px, 6vw, 100px);
  position: relative;
  z-index: 2;
}

.practice-hero-copy .breadcrumbs {
  margin-bottom: clamp(44px, 7vh, 80px);
}

.practice-hero-copy h1 {
  font-size: clamp(48px, 5.25vw, 84px);
}

.practice-hero-image {
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.practice-hero-image::after {
  background:
    linear-gradient(90deg, rgba(8, 39, 31, 0.2), transparent 24%),
    linear-gradient(180deg, transparent 68%, rgba(8, 39, 31, 0.38));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.practice-hero-image img {
  filter: saturate(0.78) contrast(1.03);
  object-fit: cover;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.57);
  display: flex;
  flex-wrap: wrap;
  font-size: 9px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.13em;
  margin-bottom: 35px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.interior-header h1 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  max-width: 1050px;
  position: relative;
  z-index: 1;
}

.interior-dek {
  color: rgba(255, 255, 255, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.75vw, 27px);
  line-height: 1.55;
  margin: 30px 0 0;
  max-width: 830px;
  position: relative;
  z-index: 1;
}

.content-shell {
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  margin: 0 auto;
  max-width: 1360px;
  padding: clamp(65px, 8vw, 125px) clamp(28px, 6vw, 90px);
}

.article-copy {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.82;
}

.article-copy .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.55;
  margin-top: 0;
}

.article-copy h2 {
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.1;
  margin: 75px 0 25px;
}

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

.detail-list li {
  border-bottom: 1px solid var(--line);
  padding: 16px 14px 16px 0;
}

.detail-list li:nth-child(odd) {
  margin-right: 28px;
}

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

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  list-style: none;
}

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  float: right;
}

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

.faq-list p {
  max-width: 760px;
}

.page-sidebar {
  align-self: start;
  background: var(--paper-deep);
  padding: 34px;
  position: sticky;
  top: calc(var(--header-height) + 25px);
}

.page-sidebar .eyebrow {
  margin-bottom: 17px;
}

.page-sidebar h2 {
  font-size: 34px;
  line-height: 1.1;
}

.page-sidebar p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.page-sidebar .button {
  margin-top: 10px;
  width: 100%;
}

.related-links {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 22px;
}

.related-links a {
  border-bottom: 1px solid rgba(16, 41, 34, 0.1);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  padding: 10px 0;
}

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

.index-card {
  background: var(--cream);
  border: 1px solid var(--line);
  margin: -1px 0 0 -1px;
  min-height: 245px;
  padding: 30px;
  position: relative;
  transition: background 160ms ease, color 160ms ease;
}

.index-card:hover,
.index-card:focus-visible {
  background: var(--green);
  color: white;
}

.index-card > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.index-card h2 {
  font-size: 28px;
  line-height: 1.15;
  margin: 45px 0 15px;
}

.index-card p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.index-card:hover p,
.index-card:focus-visible p {
  color: rgba(255, 255, 255, 0.68);
}

.index-card i {
  color: var(--gold);
  font-style: normal;
  position: absolute;
  right: 26px;
  top: 26px;
}

.service-area-shell {
  padding-bottom: clamp(80px, 9vw, 140px);
}

.county-detail-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
  margin-top: 70px;
}

.county-detail-grid article {
  background: var(--cream);
  border: 1px solid var(--line);
  margin: -1px 0 0 -1px;
  min-height: 330px;
  padding: clamp(28px, 3vw, 45px);
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.county-detail-grid article > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.county-detail-grid h2 {
  font-size: clamp(30px, 3vw, 46px);
  margin: 40px 0 20px;
}

.county-detail-grid p {
  font-size: 14px;
  margin-bottom: 22px;
}

.county-detail-grid small {
  border-top: 1px solid var(--line);
  color: var(--green);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-top: 17px;
  text-transform: uppercase;
}

.statewide-list {
  background: var(--green);
  color: white;
  margin-top: 80px;
  padding: clamp(40px, 5vw, 75px);
}

.statewide-list h2 {
  font-size: clamp(36px, 4vw, 62px);
  margin: 0 0 40px;
}

.statewide-list > div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.statewide-list span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  padding: 13px 16px;
}

.interior-footer {
  background: var(--green-deep);
  color: white;
  display: grid;
  font-size: 10px;
  gap: 24px;
  grid-template-columns: 0.8fr 1.4fr auto;
  line-height: 1.6;
  padding: 38px clamp(28px, 6vw, 90px);
}

.interior-footer img {
  height: auto;
  opacity: 0.9;
  width: 190px;
}

.interior-footer p {
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .practice-section {
    gap: 4vw;
    grid-template-columns: 0.55fr 1.45fr;
  }

  .area-card {
    min-height: 118px;
    padding-left: 20px;
  }

  .principles article {
    grid-template-columns: 35px 0.7fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
    position: relative;
  }

  .mobile-menu summary {
    cursor: pointer;
    height: 42px;
    list-style: none;
    position: relative;
    width: 42px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    background: var(--green);
    height: 1px;
    position: absolute;
    right: 3px;
    top: 16px;
    width: 28px;
  }

  .mobile-menu summary span:last-child {
    top: 25px;
  }

  .mobile-menu-panel {
    background: var(--cream);
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(8, 39, 31, 0.14);
    display: grid;
    padding: 20px 28px;
    position: absolute;
    right: 0;
    top: 48px;
    width: 250px;
  }

  .mobile-menu-panel a {
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    padding: 12px 0;
  }

  .home-page {
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
  }

  .snap-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding-bottom: 80px;
    padding-top: calc(var(--header-height) + 70px);
    scroll-snap-align: none;
  }

  .hero,
  .profile-section,
  .practice-section,
  .approach-section,
  .experience-section,
  .geography-section,
  .referral-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-copy {
    padding: 35px 6vw 55px;
  }

  .hero-rule {
    left: 6vw;
  }

  .hero-panel {
    margin: 0;
    min-height: 540px;
  }

  .scroll-cue,
  .section-index,
  .section-next {
    display: none;
  }

  .practice-intro {
    margin-bottom: 20px;
  }

  .county-links {
    margin-top: 25px;
  }

  .principles article {
    grid-template-columns: 35px 1fr;
  }

  .principles article p {
    grid-column: 2;
  }

  .results-note {
    bottom: 25px;
    left: 6vw;
    right: 6vw;
  }

  .contact-section {
    grid-template-rows: auto;
  }

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

  footer > p,
  footer small {
    grid-column: 1 / -1;
  }

  .content-shell {
    grid-template-columns: 1fr;
  }

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

  .practice-hero-image {
    min-height: 56vh;
  }

  .page-sidebar {
    position: static;
  }

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

  .county-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wordmark img {
    width: 220px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

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

  .button-text {
    align-self: flex-start;
  }

  .profile-section,
  .practice-section,
  .approach-section,
  .experience-section,
  .geography-section,
  .referral-section,
  .contact-section {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .area-grid,
  .credential-grid,
  .detail-list,
  .index-grid,
  .county-links,
  .statewide-list > div {
    grid-template-columns: 1fr;
  }

  .area-card:nth-child(odd),
  .credential:nth-child(odd) {
    border-right: 0;
  }

  .detail-list li:nth-child(odd) {
    margin-right: 0;
  }

  .contact-details {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    padding: 25px 0 0;
  }

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

  footer > p,
  footer small {
    grid-column: auto;
  }

  .interior-header::after {
    inset: 13px;
  }

  .practice-hero-copy {
    padding: 62px 6vw;
  }

  .practice-hero-image {
    min-height: 48vh;
  }
}

/* Image-led service area page */
.service-area-page {
  padding-top: var(--header-height);
}

.service-area-hero {
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: min(760px, calc(100svh - var(--header-height)));
}

.service-hero-copy {
  align-self: center;
  padding: clamp(55px, 7vw, 110px) clamp(36px, 6vw, 100px);
}

.service-hero-copy .breadcrumbs {
  margin-bottom: clamp(50px, 8vh, 90px);
}

.service-hero-copy h1 {
  font-size: clamp(54px, 5.7vw, 92px);
  line-height: 0.98;
}

.service-hero-copy > p:last-child {
  color: rgba(255, 255, 255, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.55;
  margin: 30px 0 0;
  max-width: 620px;
}

.service-courthouse-hero {
  min-height: 620px;
}

.service-courthouse-hero figcaption {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  font-weight: 700;
  left: 26px;
  letter-spacing: 0.11em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.service-focus {
  margin: 0 auto;
  max-width: 1460px;
  padding: clamp(80px, 9vw, 140px) clamp(28px, 6vw, 90px);
}

.service-focus-heading {
  align-items: end;
  display: grid;
  gap: 4vw;
  grid-template-columns: 0.45fr 1.55fr;
}

.service-focus-heading h2 {
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.02;
  max-width: 780px;
}

.concise-counties {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
}

.concise-counties article {
  min-height: 245px;
  padding: 28px;
}

.concise-counties h2 {
  font-size: clamp(25px, 2.2vw, 36px);
  margin: 52px 0 26px;
}

.concise-counties small {
  font-size: 9px;
}

.service-courthouse-band {
  background: var(--green);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 760px;
}

.service-courthouse-detail {
  min-height: 640px;
}

.service-courthouse-band .statewide-list {
  align-self: center;
  margin: 0;
  padding: clamp(50px, 7vw, 105px);
}

.service-courthouse-band .statewide-list h2 {
  font-size: clamp(48px, 5.3vw, 84px);
}

@media (max-width: 1050px) {
  .concise-counties {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .service-area-hero,
  .service-focus-heading,
  .service-courthouse-band {
    grid-template-columns: 1fr;
  }

  .service-courthouse-hero {
    min-height: 58vh;
  }

  .service-focus-heading {
    align-items: start;
  }

  .service-courthouse-detail {
    min-height: 55vh;
  }
}

@media (max-width: 560px) {
  .service-hero-copy {
    padding: 62px 6vw;
  }

  .service-hero-copy .breadcrumbs {
    margin-bottom: 46px;
  }

  .service-courthouse-hero {
    min-height: 52vh;
  }

  .concise-counties {
    grid-template-columns: 1fr;
  }

  .concise-counties article {
    min-height: 205px;
  }

  .service-courthouse-band .statewide-list {
    padding: 60px 6vw;
  }
}

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

  .home-page {
    scroll-snap-type: none;
  }

  * {
    transition: none !important;
  }
}

/* Practice-area icon system */
.practice-icon {
  display: block;
}

.area-card .practice-icon {
  bottom: 17px;
  color: var(--gold-light);
  opacity: 0.58;
  position: absolute;
  right: 16px;
}

.all-areas .area-card h3 {
  padding-right: 25px;
}

.index-card .practice-icon {
  bottom: 27px;
  color: var(--gold);
  opacity: 0.72;
  position: absolute;
  right: 27px;
}

.index-card p {
  padding-right: 48px;
}

.practice-hero-icon {
  align-items: center;
  border: 1px solid rgba(211, 181, 126, 0.48);
  color: var(--gold-light);
  display: flex;
  height: 68px;
  justify-content: center;
  margin: 0 0 28px;
  position: relative;
  width: 68px;
  z-index: 2;
}

/* Client testimonials */
.testimonial-home-section {
  align-items: center;
  background:
    linear-gradient(rgba(13, 56, 45, 0.025) 1px, transparent 1px) 0 0 / 100% 34px,
    var(--cream);
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.68fr 1.32fr;
}

.testimonial-home-heading,
.testimonial-carousel {
  position: relative;
  z-index: 2;
}

.testimonial-home-heading h2 {
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.02;
}

.testimonial-home-heading > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.55;
  max-width: 540px;
}

.testimonial-carousel {
  min-width: 0;
}

.testimonial-card {
  background: var(--green);
  border: 1px solid rgba(177, 138, 77, 0.5);
  box-shadow: 0 30px 80px rgba(8, 39, 31, 0.16);
  color: white;
  min-height: min(57vh, 560px);
  padding: clamp(42px, 5vw, 76px);
  position: relative;
}

.quote-mark {
  color: var(--gold-light);
  height: 52px;
  opacity: 0.56;
  position: absolute;
  right: clamp(34px, 4vw, 64px);
  top: clamp(34px, 4vw, 58px);
  width: 52px;
}

.review-stars {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 0.22em;
  margin-bottom: clamp(30px, 4vh, 48px);
}

.testimonial-card blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.46;
  margin: 0;
  max-width: 980px;
}

.testimonial-card > p {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  margin: 40px 0 0;
  text-transform: uppercase;
}

.testimonial-controls {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 18px;
}

.testimonial-controls button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--green);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 150ms ease, color 150ms ease;
  width: 42px;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  background: var(--green);
  color: white;
}

.testimonial-controls span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.testimonial-home-disclosure {
  bottom: 3vh;
  color: var(--ink-soft);
  font-size: 9px;
  grid-column: 1 / -1;
  left: clamp(28px, 6vw, 104px);
  line-height: 1.55;
  margin: 0;
  max-width: 690px;
  position: absolute;
}

.testimonial-page-header {
  overflow: hidden;
}

.testimonial-page-header::before {
  color: rgba(211, 181, 126, 0.12);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: min(42vw, 560px);
  line-height: 0.7;
  position: absolute;
  right: 5vw;
  top: 3vw;
}

.testimonial-page-body {
  margin: 0 auto;
  max-width: 1280px;
  padding: clamp(70px, 9vw, 135px) clamp(28px, 7vw, 100px);
}

.testimonial-page-body .testimonial-card {
  min-height: 520px;
}

.testimonial-disclosure {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.7;
  margin: 38px 0 0;
  max-width: 850px;
}

/* County courthouse photography */
.county-page-hero figure figcaption {
  bottom: 16px;
  position: absolute;
  right: 18px;
  z-index: 3;
}

.county-page-hero figure figcaption a {
  background: rgba(8, 39, 31, 0.78);
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 8px;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .all-areas .area-card .practice-icon {
    bottom: 6px;
    height: 16px;
    right: 7px;
    width: 16px;
  }

  .all-areas .area-card h3 {
    padding-right: 16px;
  }

  .practice-hero-icon {
    height: 54px;
    margin-bottom: 20px;
    width: 54px;
  }

  .practice-hero-icon .practice-icon {
    height: 31px;
    width: 31px;
  }

  .testimonial-home-section {
    align-content: center;
    gap: 2.5vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    padding-bottom: 4vh;
  }

  .testimonial-home-heading h2 {
    font-size: clamp(34px, 8.7vw, 48px);
  }

  .testimonial-home-heading > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.4;
    margin: 12px 0 0;
  }

  .testimonial-home-heading .inline-link {
    font-size: 8px;
    margin-top: 8px;
  }

  .testimonial-home-section .testimonial-card {
    min-height: 0;
    padding: 27px 24px 24px;
  }

  .testimonial-card blockquote {
    font-size: clamp(19px, 5vw, 26px);
    line-height: 1.38;
  }

  .testimonial-card > p {
    margin-top: 22px;
  }

  .review-stars {
    margin-bottom: 20px;
  }

  .quote-mark {
    height: 34px;
    right: 22px;
    top: 22px;
    width: 34px;
  }

  .testimonial-controls {
    margin-top: 10px;
  }

  .testimonial-controls button {
    height: 36px;
    width: 36px;
  }

  .testimonial-home-disclosure {
    display: none;
  }
}

@media (max-width: 560px) {
  .testimonial-home-section {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .testimonial-home-heading {
    padding: 0 2vw;
  }

  .testimonial-home-section .testimonial-card {
    max-height: 47vh;
    overflow: auto;
  }

  .testimonial-page-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-page-body .testimonial-card {
    min-height: 500px;
    padding: 38px 26px;
  }

  .index-card .practice-icon {
    bottom: 22px;
    height: 25px;
    right: 20px;
    width: 25px;
  }
}

.attorney-portrait-stage {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(174, 138, 71, 0.14), transparent 40%),
    var(--green-deep);
  display: flex;
  height: min(68vh, 680px);
  justify-content: center;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.attorney-portrait-stage::before {
  border: 1px solid rgba(211, 181, 126, 0.42);
  content: "";
  inset: clamp(18px, 2.3vw, 34px);
  pointer-events: none;
  position: absolute;
}

.attorney-portrait-stage::after {
  background:
    radial-gradient(circle at 50% 115%, rgba(211, 181, 126, 0.2), transparent 40%),
    linear-gradient(90deg, transparent 49.8%, rgba(211, 181, 126, 0.16) 50%, transparent 50.2%);
  content: "";
  inset: 0;
  pointer-events: none;
}

.attorney-portrait-home {
  aspect-ratio: 5 / 4;
  border: 9px solid rgba(250, 247, 239, 0.98);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.34),
    -14px 14px 0 rgba(174, 138, 71, 0.76);
  overflow: hidden;
  position: relative;
  transform: rotate(-0.55deg);
  width: min(76%, 520px);
  z-index: 2;
}

.attorney-portrait-home::after {
  border: 1px solid rgba(255, 255, 255, 0.34);
  content: "";
  inset: 7px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.attorney-portrait-home img {
  filter: saturate(0.82) contrast(1.04);
  object-fit: cover;
  object-position: center top;
}

.courtroom-artist-image img {
  filter: saturate(0.84) contrast(1.05);
  object-position: center;
}

.justice-image {
  background: var(--green-deep);
}

.justice-image img {
  filter: saturate(0.66) sepia(0.1) contrast(1.08);
  object-position: center 24%;
}

.contact-form {
  display: grid;
  gap: 19px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  align-items: baseline;
  color: var(--green);
  display: flex;
  gap: 8px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.required-mark,
.optional-mark {
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.08em;
  opacity: 0.64;
}

.required-mark {
  color: #8f3d2f;
}

.optional-mark {
  color: inherit;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  appearance: none;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 39, 31, 0.22);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  min-height: 50px;
  outline: none;
  padding: 12px 14px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
  width: 100%;
}

.contact-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 14px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 42px;
}

.contact-form textarea {
  line-height: 1.5;
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: white;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(174, 138, 71, 0.14);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #a94c3a;
  box-shadow: 0 0 0 2px rgba(169, 76, 58, 0.12);
}

.field-helper,
.field-error {
  display: block;
  font-size: 9px;
  line-height: 1.45;
}

.field-helper {
  color: var(--ink-soft);
}

.field-error {
  color: #943c2d;
  font-weight: 650;
}

.form-error-summary {
  background: rgba(169, 76, 58, 0.09);
  border-left: 3px solid #a94c3a;
  color: #7f3024;
  font-size: 10px;
  line-height: 1.45;
  padding: 10px 12px;
}

.form-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.contact-form-notice {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.contact-form-submit {
  align-items: center;
  align-self: start;
  background: var(--green);
  border: 1px solid var(--green);
  color: white;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 10px;
  font-weight: 750;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 50px;
  padding: 0 26px;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
  width: fit-content;
}

.contact-form-submit:hover,
.contact-form-submit:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.contact-form-success {
  align-self: center;
  border: 1px solid rgba(8, 39, 31, 0.2);
  padding: clamp(28px, 4vw, 52px);
}

.contact-form-success h3 {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.5vw, 42px);
  line-height: 1.08;
  margin: 10px 0 18px;
}

.contact-form-success > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.contact-form-success a {
  border-bottom: 1px solid var(--gold);
  color: var(--green);
  display: inline-block;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-top: 24px;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.contact-form-success.dark-contact-form {
  border-color: rgba(211, 181, 126, 0.5);
}

.contact-form-success.dark-contact-form h3,
.contact-form-success.dark-contact-form > p:not(.eyebrow),
.contact-form-success.dark-contact-form a {
  color: white;
}

.contact-page-panel {
  grid-template-columns: 0.83fr 1.17fr;
}

.contact-form-panel {
  align-self: stretch;
  background:
    linear-gradient(rgba(13, 56, 45, 0.025) 1px, transparent 1px) 0 0 / 100% 34px,
    var(--cream);
  color: var(--ink);
  display: grid;
  padding: clamp(58px, 7vw, 110px);
}

.contact-form-panel > .eyebrow {
  align-self: end;
  margin-bottom: 24px;
}

.contact-form-panel .contact-form {
  align-self: start;
}

.image-contact {
  grid-template-columns: 0.68fr 1.32fr;
  gap: 4vh 7vw;
}

.contact-quick-links {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  margin-top: 30px;
}

.contact-quick-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.65vw, 27px);
  padding: 12px 0;
}

.compact-contact-form {
  align-self: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.compact-contact-form .contact-form-row {
  gap: 12px;
}

.compact-contact-form label {
  gap: 5px;
}

.compact-contact-form input,
.compact-contact-form select {
  min-height: 42px;
  padding: 9px 12px;
}

.compact-contact-form select {
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 13px) 18px;
}

.compact-contact-form textarea {
  min-height: 78px;
  padding: 9px 12px;
}

.dark-contact-form label > span,
.dark-contact-form .contact-form-notice,
.dark-contact-form .field-helper {
  color: rgba(255, 255, 255, 0.7);
}

.dark-contact-form .required-mark {
  color: #f0b5a9;
}

.dark-contact-form .field-error {
  color: #ffd1c8;
}

.dark-contact-form .form-error-summary {
  background: rgba(255, 209, 200, 0.1);
  border-left-color: #ffd1c8;
  color: #ffdcd5;
}

.dark-contact-form input,
.dark-contact-form select,
.dark-contact-form textarea {
  background-color: rgba(247, 244, 237, 0.94);
  border-color: rgba(211, 181, 126, 0.5);
}

.dark-contact-form .contact-form-submit {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green-deep);
}

.dark-contact-form .contact-form-submit:hover,
.dark-contact-form .contact-form-submit:focus-visible {
  background: white;
  border-color: white;
}

@media (max-width: 860px) {
  .attorney-portrait-stage {
    height: auto;
    min-height: 0;
  }

  .attorney-portrait-home {
    width: min(68%, 430px);
  }

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

  .contact-form-panel {
    padding: 56px 6vw 72px;
  }
}

@media (max-width: 560px) {
  .attorney-portrait-stage {
    height: auto;
    inset: var(--header-height) 0 0;
    position: absolute;
    z-index: 0;
  }

  .attorney-portrait-stage::before {
    inset: 3vh 5vw;
  }

  .attorney-portrait-stage::after {
    background:
      linear-gradient(180deg, transparent 45%, rgba(8, 39, 31, 0.64) 73%, var(--green-deep)),
      radial-gradient(circle at 50% 18%, rgba(211, 181, 126, 0.19), transparent 34%);
  }

  .attorney-portrait-home {
    border-width: 6px;
    box-shadow:
      0 20px 45px rgba(0, 0, 0, 0.34),
      -8px 8px 0 rgba(174, 138, 71, 0.74);
    position: absolute;
    right: 5vw;
    top: 4.5vh;
    width: 74vw;
  }

  .courtroom-artist-image img {
    object-position: 42% center;
  }

  .justice-image img {
    object-position: center 20%;
  }

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

  .image-contact {
    display: grid;
    gap: 1.3vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .image-contact .contact-main {
    align-self: end;
  }

  .image-contact .contact-main h2 {
    font-size: clamp(31px, 8.6vw, 40px);
  }

  .contact-quick-links {
    display: flex;
    gap: 14px;
    margin-top: 10px;
  }

  .contact-quick-links a {
    border-bottom: 0;
    font-family: var(--font-montserrat), Arial, sans-serif;
    font-size: 10px;
    padding: 0;
  }

  .compact-contact-form {
    gap: 7px;
  }

  .compact-contact-form .contact-form-row {
    gap: 7px;
    grid-template-columns: 1fr 1fr;
  }

  .compact-contact-form label {
    gap: 3px;
  }

  .compact-contact-form label > span {
    font-size: 7px;
  }

  .compact-contact-form .required-mark,
  .compact-contact-form .optional-mark {
    font-size: 6px;
  }

  .compact-contact-form input,
  .compact-contact-form select {
    font-size: 14px;
    min-height: 36px;
    padding: 6px 9px;
  }

  .compact-contact-form select {
    background-position:
      calc(100% - 16px) 15px,
      calc(100% - 11px) 15px;
  }

  .compact-contact-form textarea {
    font-size: 14px;
    min-height: 58px;
    padding: 6px 9px;
  }

  .compact-contact-form .contact-form-notice {
    font-size: 7px;
    line-height: 1.35;
  }

  .compact-contact-form .field-helper,
  .compact-contact-form .field-error {
    font-size: 7px;
  }

  .compact-contact-form .form-error-summary {
    font-size: 8px;
    padding: 7px 9px;
  }

  .compact-contact-form .contact-form-submit {
    font-size: 8px;
    min-height: 36px;
    padding: 0 16px;
  }

  .image-contact footer {
    gap: 5px 10px;
    padding-top: 6px;
  }

  .image-contact footer .footer-links {
    display: none;
  }

  .image-contact footer > p,
  .image-contact footer small {
    font-size: 7px;
    line-height: 1.25;
  }

  .contact-form-panel {
    padding: 48px 5vw 60px;
  }
}

/* Image-led homepage refinement */
.courthouse-hero {
  background: var(--paper);
  gap: 0;
  grid-template-columns: 0.88fr 1.12fr;
  padding: var(--header-height) 0 0;
}

.courthouse-hero .hero-copy {
  padding: 0 clamp(36px, 5.6vw, 96px);
  position: relative;
  z-index: 2;
}

.courthouse-hero h1 {
  font-size: clamp(55px, 5.65vw, 92px);
  line-height: 0.98;
}

.hero-kicker {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1.35;
  margin: 32px 0 0;
}

.hero-kicker span {
  color: var(--ink-soft);
  display: block;
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  margin-top: 9px;
  text-transform: uppercase;
}

.hero-courthouse,
.experience-image,
.referral-image,
.county-visual figure,
.service-courthouse-hero,
.service-courthouse-detail {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-courthouse {
  height: calc(100svh - var(--header-height));
}

.hero-courthouse::after,
.experience-image::after,
.referral-image::after,
.county-visual figure::after,
.service-courthouse-hero::after {
  background: linear-gradient(180deg, transparent 58%, rgba(6, 29, 23, 0.58));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-courthouse img,
.experience-image img,
.referral-image img,
.county-visual figure img,
.service-courthouse-hero img,
.service-courthouse-detail img {
  object-fit: cover;
}

.hero-courthouse figcaption,
.experience-image figcaption,
.referral-image figcaption {
  bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  font-weight: 700;
  left: 28px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.courthouse-hero .scroll-cue {
  bottom: 3.2vh;
}

.sketch-section {
  background:
    linear-gradient(rgba(13, 56, 45, 0.025) 1px, transparent 1px) 0 0 / 100% 34px,
    var(--cream);
  gap: 7vw;
  grid-template-columns: 0.88fr 1.12fr;
}

.profile-brief {
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.6vw, 26px);
  line-height: 1.55;
  margin: 30px 0 0;
  max-width: 650px;
}

.profile-facts {
  border-top: 1px solid var(--line);
  display: grid;
  margin-top: 34px;
}

.profile-facts span {
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.06em;
  padding: 13px 0;
  text-transform: uppercase;
}

.court-sketch {
  background: #eee7d9;
  border: 1px solid rgba(75, 57, 33, 0.25);
  box-shadow: 0 28px 70px rgba(42, 33, 22, 0.16);
  height: min(68vh, 680px);
  margin: 0;
  position: relative;
  transform: rotate(0.8deg);
  z-index: 2;
}

.court-sketch::before {
  border: 1px solid rgba(75, 57, 33, 0.28);
  content: "";
  inset: 13px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.court-sketch img {
  filter: saturate(0.86) contrast(1.02);
  object-fit: cover;
}

.portrait-inset {
  aspect-ratio: 5 / 4;
  background: #18382f;
  border: 9px solid rgba(250, 247, 239, 0.96);
  bottom: clamp(28px, 4.5vh, 54px);
  box-shadow:
    0 26px 60px rgba(20, 31, 26, 0.32),
    -13px 13px 0 rgba(174, 138, 71, 0.7);
  overflow: hidden;
  position: absolute;
  right: clamp(26px, 4vw, 62px);
  transform: rotate(-1.2deg);
  width: min(72%, 470px);
  z-index: 3;
}

.portrait-inset::after {
  border: 1px solid rgba(255, 255, 255, 0.32);
  content: "";
  inset: 7px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.court-sketch .portrait-inset img {
  filter: saturate(0.82) contrast(1.04);
  object-fit: cover;
  object-position: center top;
}

.court-sketch figcaption {
  background: rgba(247, 242, 231, 0.92);
  bottom: 18px;
  color: #4e4436;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  left: 22px;
  padding: 8px 12px;
  position: absolute;
  z-index: 3;
}

.compact-practice {
  gap: 5vw;
  grid-template-columns: 0.42fr 1.58fr;
}

.practice-heading {
  position: relative;
  z-index: 2;
}

.practice-heading h2 {
  font-size: clamp(60px, 6vw, 96px);
}

.all-areas {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(3, 1fr);
}

.all-areas .area-card {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 112px;
  padding: 19px 38px 18px 20px;
}

.all-areas .area-card:nth-child(3n) {
  border-right: 0;
}

.all-areas .area-card h3 {
  font-size: clamp(16px, 1.25vw, 21px);
  margin-top: 10px;
}

.all-areas .area-card i {
  right: 15px;
  top: 18px;
}

.image-experience {
  background: var(--paper-deep);
  gap: 7vw;
  grid-template-columns: 0.82fr 1.18fr;
}

.experience-image {
  height: min(69vh, 680px);
  position: relative;
  z-index: 2;
}

.experience-content {
  position: relative;
  z-index: 2;
}

.experience-content h2 {
  font-size: clamp(46px, 4.7vw, 76px);
  line-height: 1.02;
  max-width: 720px;
}

.image-experience .credential-grid {
  margin-top: 42px;
}

.image-experience .credential {
  min-height: 145px;
  padding: 26px 22px;
}

.image-experience .credential strong {
  font-size: clamp(27px, 2.65vw, 44px);
}

.image-geography {
  gap: 7vw;
  grid-template-columns: 0.78fr 1.22fr;
}

.image-geography .geography-lead .lead {
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 24px);
  max-width: 580px;
}

.county-visual {
  display: grid;
  grid-template-rows: 1fr auto;
  height: min(70vh, 690px);
  min-width: 0;
  position: relative;
  z-index: 2;
}

.county-visual figure {
  min-height: 0;
}

.county-links {
  background: var(--cream);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.county-links a {
  gap: 8px;
  grid-template-columns: 1fr auto;
  min-height: 60px;
  padding: 12px 14px;
}

.county-links strong {
  font-size: clamp(14px, 1.05vw, 17px);
}

.visual-referral {
  gap: 8vw;
  grid-template-columns: 1fr 0.82fr;
}

.visual-referral .referral-copy {
  max-width: 700px;
}

.visual-referral .referral-copy .lead {
  font-size: clamp(19px, 1.65vw, 27px);
}

.referral-image {
  border: 1px solid rgba(211, 181, 126, 0.45);
  height: min(66vh, 650px);
  position: relative;
  z-index: 2;
}

.referral-image img {
  filter: saturate(0.78) contrast(1.05);
}

.image-contact {
  isolation: isolate;
}

.image-contact footer {
  grid-template-columns: 0.8fr 1.7fr auto;
}

.contact-backdrop {
  inset: 0;
  position: absolute;
  z-index: -2;
}

.contact-backdrop::after {
  background:
    linear-gradient(90deg, rgba(4, 25, 19, 0.97), rgba(4, 25, 19, 0.78) 55%, rgba(4, 25, 19, 0.72)),
    linear-gradient(0deg, rgba(4, 25, 19, 0.45), transparent);
  content: "";
  inset: 0;
  position: absolute;
}

.contact-backdrop img {
  object-fit: cover;
}

@media (max-width: 1050px) {
  .courthouse-hero {
    grid-template-columns: 1fr 0.92fr;
  }

  .compact-practice {
    grid-template-columns: 0.34fr 1.66fr;
  }

  .all-areas .area-card {
    min-height: 102px;
  }

  .all-areas .area-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 860px) {
  .courthouse-hero {
    padding-top: var(--header-height);
  }

  .courthouse-hero .hero-copy {
    padding: 62px 6vw;
  }

  .hero-courthouse {
    height: 62vh;
  }

  .sketch-section,
  .compact-practice,
  .image-experience,
  .image-geography,
  .visual-referral {
    grid-template-columns: 1fr;
  }

  .court-sketch,
  .experience-image,
  .referral-image {
    height: 58vh;
  }

  .all-areas {
    grid-template-columns: 1fr 1fr;
  }

  .all-areas .area-card,
  .all-areas .area-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .all-areas .area-card:nth-child(even) {
    border-right: 0;
  }

  .county-visual {
    height: auto;
  }

  .county-visual figure {
    height: 55vh;
  }

  .county-links {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

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

  .image-contact footer > p,
  .image-contact footer small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .courthouse-hero .hero-copy {
    padding: 54px 6vw;
  }

  .hero-courthouse {
    height: 54vh;
  }

  .profile-brief {
    font-size: 19px;
  }

  .court-sketch,
  .experience-image,
  .referral-image,
  .county-visual figure {
    height: 47vh;
  }

  .all-areas,
  .county-links {
    grid-template-columns: 1fr;
  }

  .all-areas .area-card,
  .all-areas .area-card:nth-child(3n) {
    border-right: 0;
  }

  .court-sketch figcaption {
    font-size: 11px;
    left: 14px;
    right: 14px;
  }

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

  .image-contact footer > p,
  .image-contact footer small {
    grid-column: auto;
  }
}

/* Deeper editorial pages */
.editorial-hero {
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(720px, calc(100svh - var(--header-height)));
}

.editorial-hero-copy {
  align-self: center;
  padding: clamp(60px, 7vw, 115px) clamp(38px, 6vw, 100px);
}

.editorial-hero-copy .breadcrumbs {
  margin-bottom: clamp(42px, 7vh, 75px);
}

.editorial-hero-copy h1 {
  font-size: clamp(50px, 5.5vw, 88px);
  line-height: 1;
}

.editorial-hero-copy > p:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.65vw, 26px);
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 680px;
}

.editorial-hero-image {
  min-height: 580px;
  overflow: hidden;
  position: relative;
}

.editorial-hero-image::after,
.contact-page-panel figure::after,
.county-page-hero figure::after {
  background: linear-gradient(180deg, transparent 58%, rgba(6, 29, 23, 0.48));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.editorial-hero-image img,
.contact-page-panel figure img,
.county-page-hero figure img {
  filter: saturate(0.78) contrast(1.03);
  object-fit: cover;
}

.sketch-image img {
  filter: saturate(0.82) contrast(1.02);
}

.attorney-portrait-hero {
  align-items: center;
  background:
    radial-gradient(circle at 68% 30%, rgba(218, 196, 145, 0.18), transparent 38%),
    linear-gradient(145deg, #173f34 0%, #08271f 100%);
  display: flex;
  justify-content: center;
  padding: clamp(34px, 5vw, 80px);
}

.attorney-portrait-hero::before {
  border: 1px solid rgba(207, 174, 101, 0.5);
  content: "";
  inset: clamp(20px, 3vw, 45px);
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.attorney-portrait-hero::after {
  background:
    linear-gradient(90deg, rgba(197, 157, 82, 0.82), rgba(197, 157, 82, 0)) left bottom / 48% 3px no-repeat,
    linear-gradient(180deg, transparent 64%, rgba(3, 20, 16, 0.3));
  z-index: 3;
}

.attorney-portrait-frame {
  aspect-ratio: 1;
  border: 10px solid rgba(250, 247, 239, 0.96);
  box-shadow:
    0 30px 74px rgba(0, 0, 0, 0.38),
    18px 18px 0 rgba(191, 151, 76, 0.72);
  overflow: hidden;
  position: relative;
  transform: translate(-8px, -8px);
  width: min(82%, 620px);
  z-index: 2;
}

.attorney-portrait-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
  inset: 7px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.editorial-hero-image .attorney-portrait-frame img {
  filter: saturate(0.82) contrast(1.04);
  object-fit: cover;
  object-position: center top;
}

.reverse-hero .editorial-hero-image {
  order: 1;
}

.reverse-hero .editorial-hero-copy {
  order: 2;
}

.narrative-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1420px;
  padding: clamp(85px, 10vw, 155px) clamp(28px, 7vw, 110px);
}

.narrative-intro {
  max-width: 590px;
}

.narrative-intro h2,
.process-heading h2,
.explains-heading h2,
.page-cta h2 {
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1.06;
}

.narrative-copy {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
  max-width: 760px;
}

.narrative-copy .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.85vw, 30px);
  line-height: 1.55;
  margin-top: 0;
}

.long-form-bio p {
  margin: 0 0 24px;
}

.long-form-bio .bio-results-note {
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.025em;
  line-height: 1.65;
  margin: 38px 0 0;
  padding-top: 18px;
  text-transform: uppercase;
}

.fine-print {
  border-top: 1px solid var(--line);
  font-size: 10px;
  margin-top: 36px;
  padding-top: 18px;
  text-transform: uppercase;
}

.credential-band {
  align-items: start;
  background: var(--green-deep);
  color: white;
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.8fr 1.2fr;
  padding: clamp(70px, 8vw, 125px) clamp(28px, 7vw, 110px);
}

.recognition-section {
  background: var(--paper-deep);
  display: grid;
  gap: clamp(45px, 6vw, 90px);
  grid-template-columns: 0.68fr 1.32fr;
  padding: clamp(75px, 9vw, 135px) clamp(28px, 7vw, 110px) 45px;
}

.recognition-heading {
  max-width: 570px;
}

.recognition-heading h2 {
  font-size: clamp(38px, 4.2vw, 68px);
  line-height: 1.06;
}

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

.recognition-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 34px 1fr;
  padding: 24px 0;
}

.recognition-list article > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.recognition-list small {
  color: var(--green);
  display: block;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.recognition-list h3 {
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.2;
}

.recognition-list p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
  margin: 9px 0 0;
}

.recognition-list .award-methodology {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.015em;
  line-height: 1.7;
  margin-top: 14px;
  padding-top: 12px;
}

.award-methodology a {
  color: var(--green);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(13, 74, 59, 0.35);
  text-underline-offset: 3px;
}

.credential-band h2 {
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.08;
}

.credential-list {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.credential-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.4;
  padding: 22px 20px 22px 0;
}

.credential-list li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  padding-right: 28px;
}

.credential-list li:nth-child(even) {
  padding-left: 28px;
}

.measure-grid {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(28px, 6vw, 90px);
}

.measure-grid article {
  border-left: 1px solid var(--line);
  min-height: 230px;
  padding: 48px 32px;
}

.measure-grid article:last-child {
  border-right: 1px solid var(--line);
}

.measure-grid strong {
  color: var(--green);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.25vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

.measure-grid span {
  color: var(--ink-soft);
  display: block;
  font-size: 10px;
  letter-spacing: 0.07em;
  line-height: 1.5;
  margin-top: 18px;
  text-transform: uppercase;
}

.process-section,
.explains-index {
  margin: 0 auto;
  max-width: 1480px;
  padding: clamp(85px, 10vw, 150px) clamp(28px, 6vw, 90px);
}

.process-heading,
.explains-heading {
  display: grid;
  gap: 5vw;
  grid-template-columns: 0.6fr 1.4fr;
  margin-bottom: clamp(55px, 7vw, 95px);
}

.process-heading .eyebrow {
  margin-top: 10px;
}

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

.process-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 300px;
  padding: clamp(28px, 3vw, 42px);
}

.process-grid span,
.topic-grid article > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-grid h3,
.topic-grid h3 {
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.2;
  margin-top: 48px;
}

.process-grid p,
.topic-grid p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.72;
}

.page-cta {
  align-items: end;
  background: var(--paper-deep);
  display: grid;
  gap: 4vw;
  grid-template-columns: 0.45fr 1.2fr auto;
  padding: clamp(60px, 7vw, 105px) clamp(28px, 7vw, 110px);
}

.page-cta .eyebrow {
  align-self: start;
  margin-top: 9px;
}

.page-cta > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dark-cta {
  background: var(--green);
  color: white;
}

.explains-heading {
  align-items: start;
  grid-template-columns: 0.42fr 1fr 0.6fr;
}

.explains-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
  margin: 5px 0 0;
}

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

.topic-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 250px;
  padding: 30px;
}

.topic-grid h3 {
  margin-top: 38px;
}

.topic-grid p {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page {
  background: var(--green-deep);
}

.contact-page-panel {
  color: white;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100svh - var(--header-height));
}

.contact-page-copy {
  align-self: center;
  padding: clamp(60px, 8vw, 130px) clamp(38px, 7vw, 115px);
}

.contact-page-copy h1,
.county-page-hero h1 {
  font-size: clamp(50px, 5.6vw, 90px);
  line-height: 1;
}

.contact-page-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.55;
  max-width: 700px;
}

.direct-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  margin-top: 45px;
}

.direct-contact a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.7vw, 43px);
  padding: 18px 0;
}

.contact-page-copy small {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 9px;
  line-height: 1.7;
  margin-top: 30px;
  max-width: 660px;
}

.contact-page-panel figure,
.county-page-hero figure {
  margin: 0;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.county-page-hero {
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(700px, calc(100svh - var(--header-height)));
}

.county-page-hero > div {
  align-self: center;
  padding: clamp(60px, 7vw, 115px) clamp(38px, 6vw, 100px);
}

.county-page-hero .breadcrumbs {
  margin-bottom: clamp(40px, 6vh, 70px);
}

.county-page-hero > div > p:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.6vw, 26px);
  line-height: 1.55;
}

.county-content {
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  margin: 0 auto;
  max-width: 1360px;
  padding: clamp(75px, 9vw, 135px) clamp(28px, 6vw, 90px);
}

.county-content article {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.county-content article .lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.55;
  margin-top: 0;
}

.county-content article h2 {
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.1;
  margin: 65px 0 20px;
}

.county-content aside {
  align-self: start;
  background: var(--paper-deep);
  padding: 34px;
  position: sticky;
  top: calc(var(--header-height) + 25px);
}

.county-content aside > a {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  justify-content: space-between;
  padding: 13px 0;
}

.county-content aside a span {
  color: var(--gold);
}

.county-content aside .all-practices-link {
  color: var(--green);
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-top: 18px;
  text-transform: uppercase;
}

.interior-footer {
  grid-template-columns: 0.65fr 1fr 1.35fr auto;
}

.interior-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
}

.interior-footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

/* True full-page homepage snapping on touch screens */
@media (max-width: 860px) {
  .home-page {
    height: 100svh;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scroll-snap-type: y mandatory;
  }

  .snap-section {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    padding: calc(var(--header-height) + 2.5vh) 6vw 2.5vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .courthouse-hero {
    grid-template-rows: minmax(0, 48%) minmax(0, 52%);
    padding: var(--header-height) 0 0;
  }

  .courthouse-hero .hero-copy {
    align-self: center;
    padding: 12px 6vw 8px;
  }

  .courthouse-hero h1 {
    font-size: clamp(40px, 10.6vw, 64px);
  }

  .courthouse-hero .eyebrow,
  .sketch-section .eyebrow,
  .image-experience .eyebrow,
  .image-geography .eyebrow,
  .visual-referral .eyebrow {
    margin-bottom: 10px;
  }

  .hero-kicker {
    font-size: 17px;
    margin-top: 14px;
  }

  .hero-kicker span {
    font-size: 8px;
    margin-top: 5px;
  }

  .hero-actions {
    flex-direction: row;
    gap: 18px;
    margin-top: 18px;
  }

  .hero-actions .button {
    font-size: 9px;
    min-height: 40px;
    padding: 0 15px;
  }

  .hero-actions .button-text {
    min-height: auto;
    padding: 6px 0;
  }

  .hero-courthouse {
    height: auto;
    min-height: 0;
  }

  .sketch-section {
    align-content: center;
    gap: 2.5vh;
    grid-template-rows: auto minmax(0, 39vh);
  }

  .profile-title h2 {
    font-size: clamp(33px, 8.8vw, 48px);
  }

  .profile-brief {
    font-size: 16px;
    line-height: 1.42;
    margin-top: 14px;
  }

  .profile-facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 12px;
  }

  .profile-facts span {
    font-size: 8px;
    line-height: 1.35;
    padding: 7px 8px 7px 0;
  }

  .profile-facts span:last-child {
    display: none;
  }

  .sketch-section .inline-link {
    font-size: 9px;
    margin-top: 10px;
  }

  .court-sketch {
    height: auto;
    min-height: 0;
  }

  .portrait-inset {
    width: min(68%, 430px);
  }

  .compact-practice {
    align-content: stretch;
    gap: 1.5vh;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .practice-heading h2 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .all-areas {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, minmax(0, 1fr));
    min-height: 0;
  }

  .all-areas .area-card,
  .all-areas .area-card:nth-child(3n) {
    min-height: 0;
    padding: 7px 24px 6px 10px;
  }

  .all-areas .area-card h3 {
    font-size: clamp(11px, 3.1vw, 15px);
    line-height: 1.12;
    margin-top: 3px;
  }

  .all-areas .area-card span {
    font-size: 7px;
  }

  .all-areas .area-card i {
    font-size: 10px;
    right: 8px;
    top: 8px;
  }

  .image-experience {
    align-content: stretch;
    gap: 2vh;
    grid-template-rows: minmax(0, 31vh) minmax(0, 1fr);
  }

  .experience-image {
    height: auto;
    min-height: 0;
  }

  .experience-content h2 {
    font-size: clamp(31px, 7.8vw, 46px);
  }

  .image-experience .credential-grid {
    margin-top: 14px;
  }

  .image-experience .credential {
    min-height: 0;
    padding: 10px 10px;
  }

  .image-experience .credential strong {
    font-size: clamp(21px, 5.8vw, 30px);
  }

  .image-experience .credential span {
    font-size: 8px;
    margin-top: 5px;
  }

  .image-experience .results-note {
    bottom: 1.5vh;
    font-size: 8px;
  }

  .image-geography {
    align-content: stretch;
    gap: 1.8vh;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .geography-lead h2 {
    font-size: clamp(34px, 8.6vw, 50px);
  }

  .image-geography .geography-lead .lead {
    font-size: 15px;
    line-height: 1.35;
    margin: 10px 0 5px;
  }

  .image-geography .inline-link {
    font-size: 8px;
    margin-top: 5px;
  }

  .county-visual {
    height: auto;
    min-height: 0;
  }

  .county-visual figure {
    height: auto;
    min-height: 0;
  }

  .county-links {
    grid-template-columns: repeat(4, 1fr);
  }

  .county-links a {
    min-height: 44px;
    padding: 6px 7px;
  }

  .county-links strong {
    font-size: clamp(10px, 2.65vw, 13px);
  }

  .visual-referral {
    align-content: center;
    gap: 3vh;
    grid-template-rows: auto minmax(0, 37vh);
  }

  .visual-referral .referral-copy h2 {
    font-size: clamp(34px, 8.6vw, 50px);
  }

  .visual-referral .referral-copy .lead {
    font-size: 16px;
    line-height: 1.4;
    margin: 13px 0 6px;
  }

  .visual-referral .button {
    margin-top: 10px;
    min-height: 40px;
  }

  .referral-image {
    height: auto;
    min-height: 0;
  }

  .contact-section {
    align-content: stretch;
    gap: 1.5vh;
    grid-template-rows: auto auto 1fr;
  }

  .contact-main h2 {
    font-size: clamp(36px, 9vw, 52px);
  }

  .contact-details {
    padding: 10px 0 0;
  }

  .contact-details a {
    font-size: clamp(22px, 6vw, 32px);
    padding: 8px 0;
  }

  .contact-details p {
    font-size: 8px;
    margin-top: 10px;
  }

  .image-contact footer {
    align-content: end;
    gap: 8px 14px;
    padding-top: 10px;
  }

  .image-contact footer .footer-links {
    flex-wrap: wrap;
    gap: 6px 14px;
  }

  .image-contact footer > p,
  .image-contact footer small {
    font-size: 8px;
    line-height: 1.35;
  }

  .editorial-hero,
  .contact-page-panel,
  .county-page-hero {
    grid-template-columns: 1fr;
  }

  .editorial-hero-copy,
  .contact-page-copy,
  .county-page-hero > div {
    padding: 64px 6vw;
  }

  .editorial-hero-image,
  .contact-page-panel figure,
  .county-page-hero figure {
    min-height: 52vh;
  }

  .reverse-hero .editorial-hero-image {
    order: 2;
  }

  .reverse-hero .editorial-hero-copy {
    order: 1;
  }

  .narrative-grid,
  .recognition-section,
  .credential-band,
  .page-cta,
  .county-content {
    grid-template-columns: 1fr;
  }

  .recognition-section {
    gap: 40px;
  }

  .recognition-disclaimer {
    margin-top: -12px;
  }

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

  .measure-grid article {
    border-bottom: 1px solid var(--line);
    min-height: 175px;
    padding: 32px 22px;
  }

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

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

  .county-content aside {
    position: static;
  }

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

@media (max-width: 560px) {
  .wordmark img {
    width: min(220px, 67vw);
  }

  .profile-facts {
    display: none;
  }

  .sketch-section {
    grid-template-rows: auto minmax(0, 42vh);
  }

  .image-geography .geography-lead .lead {
    display: none;
  }

  .county-links {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .image-contact footer > p {
    max-width: 95%;
  }

  .credential-list,
  .process-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .credential-list li:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

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

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

  .measure-grid article {
    min-height: 145px;
    padding: 25px 16px;
  }

  .measure-grid article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .process-grid article,
  .topic-grid article {
    min-height: 0;
  }

  .page-cta {
    align-items: start;
  }

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

/* iPhone full-bleed snap layouts */
@media (max-width: 560px) {
  .home-page {
    height: 100dvh;
  }

  .snap-section {
    height: 100dvh;
    min-height: 100dvh;
  }

  .courthouse-hero,
  .sketch-section,
  .image-experience,
  .image-geography,
  .visual-referral {
    display: block;
    isolation: isolate;
    padding: var(--header-height) 0 0;
  }

  .courthouse-hero {
    background: var(--green-deep);
    display: grid;
    grid-template-rows: minmax(0, 43%) minmax(0, 57%);
  }

  .hero-courthouse {
    grid-row: 1;
    height: 100%;
    inset: auto;
    position: relative;
    z-index: 0;
  }

  .hero-courthouse::after {
    background:
      linear-gradient(180deg, rgba(4, 24, 19, 0.04), rgba(4, 24, 19, 0.38)),
      linear-gradient(90deg, rgba(4, 24, 19, 0.18), transparent 80%);
  }

  .courthouse-hero .hero-copy {
    align-content: center;
    background: var(--green-deep);
    color: white;
    display: grid;
    grid-row: 2;
    inset: auto;
    padding: 3.5vh 7vw 3vh;
    position: relative;
    z-index: 2;
  }

  .courthouse-hero .eyebrow {
    color: var(--gold-light);
  }

  .courthouse-hero h1 {
    color: white;
    font-size: clamp(39px, 10.7vw, 52px);
    line-height: 0.96;
    max-width: 360px;
  }

  .courthouse-hero .hero-kicker {
    color: white;
    margin-top: 13px;
  }

  .courthouse-hero .hero-kicker span {
    color: rgba(255, 255, 255, 0.72);
  }

  .courthouse-hero .button-solid {
    background: var(--gold-light);
    color: var(--green-deep);
  }

  .courthouse-hero .button-text {
    border-color: var(--gold-light);
    color: white;
  }

  .courthouse-hero .hero-actions {
    margin-top: 14px;
  }

  .sketch-section {
    background: #d8d0c1;
  }

  .court-sketch {
    border: 0;
    box-shadow: none;
    height: auto;
    inset: var(--header-height) 0 0;
    position: absolute;
    transform: none;
    z-index: 0;
  }

  .court-sketch::before {
    background:
      linear-gradient(180deg, rgba(22, 29, 25, 0.04) 36%, rgba(17, 28, 23, 0.62) 76%, rgba(9, 26, 20, 0.86));
    border: 0;
    inset: 0;
  }

  .portrait-inset {
    border-width: 6px;
    bottom: auto;
    box-shadow:
      0 20px 45px rgba(8, 26, 20, 0.34),
      -8px 8px 0 rgba(174, 138, 71, 0.72);
    right: 5vw;
    top: 4.5vh;
    transform: rotate(-0.8deg);
    width: 74vw;
  }

  .sketch-section .profile-title {
    background: rgba(255, 253, 248, 0.94);
    border-top: 3px solid var(--gold);
    bottom: 4vh;
    box-shadow: 0 20px 50px rgba(8, 39, 31, 0.22);
    left: 4vw;
    padding: 18px 20px 17px;
    position: absolute;
    right: 4vw;
    z-index: 3;
  }

  .sketch-section .profile-title h2 {
    font-size: clamp(31px, 8.6vw, 42px);
    line-height: 1;
  }

  .sketch-section .profile-brief {
    font-size: 14px;
    line-height: 1.38;
    margin-top: 11px;
  }

  .sketch-section .eyebrow {
    font-size: 8px;
  }

  .court-sketch figcaption {
    display: none;
  }

  .compact-practice {
    padding: calc(var(--header-height) + 2vh) 4vw 2.5vh;
  }

  .practice-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2vh;
  }

  .practice-heading .eyebrow {
    margin: 0;
    max-width: 150px;
  }

  .practice-heading h2 {
    font-size: 34px;
  }

  .all-areas {
    height: calc(100dvh - var(--header-height) - 9vh);
  }

  .all-areas .area-card {
    background: rgba(255, 255, 255, 0.025);
  }

  .image-experience {
    background: var(--green-deep);
  }

  .experience-image {
    height: auto;
    inset: var(--header-height) 0 0;
    position: absolute;
    z-index: 0;
  }

  .experience-image::after {
    background: linear-gradient(180deg, rgba(5, 24, 19, 0.1), rgba(5, 24, 19, 0.82));
  }

  .experience-content {
    background: rgba(247, 244, 237, 0.95);
    border-top: 3px solid var(--gold);
    bottom: 7vh;
    box-shadow: 0 20px 50px rgba(8, 39, 31, 0.24);
    left: 4vw;
    padding: 17px 18px 15px;
    position: absolute;
    right: 4vw;
    z-index: 3;
  }

  .experience-content h2 {
    font-size: clamp(28px, 7.6vw, 38px);
    line-height: 1;
  }

  .image-experience .credential-grid {
    margin-top: 12px;
  }

  .image-experience .credential {
    padding: 8px 8px;
  }

  .image-experience .results-note {
    color: rgba(255, 255, 255, 0.74);
    left: 5vw;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    z-index: 3;
  }

  .image-geography {
    background: var(--green-deep);
  }

  .county-visual {
    inset: var(--header-height) 0 0;
    position: absolute;
    z-index: 0;
  }

  .county-visual figure {
    inset: 0;
    position: absolute;
  }

  .county-visual figure::after {
    background:
      linear-gradient(180deg, rgba(5, 24, 19, 0.15), rgba(5, 24, 19, 0.7)),
      linear-gradient(0deg, rgba(5, 24, 19, 0.68), transparent 56%);
  }

  .geography-lead {
    background: rgba(255, 253, 248, 0.94);
    border-top: 3px solid var(--gold);
    left: 4vw;
    padding: 16px 18px 15px;
    position: absolute;
    right: 4vw;
    top: calc(var(--header-height) + 3vh);
    z-index: 4;
  }

  .geography-lead h2 {
    font-size: clamp(31px, 8.4vw, 41px);
    line-height: 0.98;
  }

  .county-links {
    background: rgba(255, 253, 248, 0.95);
    bottom: 3vh;
    grid-template-columns: 1fr 1fr;
    left: 4vw;
    position: absolute;
    right: 4vw;
    z-index: 4;
  }

  .county-links a {
    min-height: 42px;
    padding: 7px 10px;
  }

  .county-links strong {
    font-size: 13px;
  }

  .visual-referral {
    background: var(--green-deep);
  }

  .referral-image {
    border: 0;
    height: auto;
    inset: var(--header-height) 0 0;
    position: absolute;
    z-index: 0;
  }

  .referral-image::after {
    background:
      linear-gradient(180deg, rgba(5, 24, 19, 0.08), rgba(5, 24, 19, 0.78)),
      linear-gradient(90deg, rgba(5, 24, 19, 0.28), transparent);
  }

  .visual-referral .referral-copy {
    background: rgba(8, 39, 31, 0.93);
    border-top: 3px solid var(--gold);
    bottom: 5vh;
    box-shadow: 0 20px 50px rgba(4, 19, 15, 0.35);
    left: 4vw;
    padding: 19px 20px 18px;
    position: absolute;
    right: 4vw;
    z-index: 3;
  }

  .visual-referral .referral-copy h2 {
    font-size: clamp(31px, 8.4vw, 41px);
    line-height: 1;
  }

  .visual-referral .referral-copy .lead {
    font-size: 15px;
    line-height: 1.38;
  }

  .image-contact {
    height: 100dvh;
    min-height: 100dvh;
    padding-bottom: 2vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .snap-section {
    scroll-snap-align: none;
  }
}
/* WordPress compatibility and native image layout */
.full-width { grid-column: 1 / -1; }
.hero-courthouse img,
.attorney-portrait-home img,
.experience-image img,
.county-visual figure img,
.referral-image img,
.contact-backdrop img,
.editorial-hero-image img,
.practice-hero-image img,
.service-courthouse-hero img,
.service-courthouse-detail img,
.county-page-hero figure img,
.attorney-portrait-frame img {
  display: block;
  height: 100%;
  inset: 0;
  max-height: none;
  max-width: none;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.hero-courthouse img { object-position: center center; }
.attorney-portrait-home img { object-position: center top; }
.experience-image img { object-position: center center; }
.county-visual figure img { object-position: center center; }
.referral-image img { object-position: center 20%; }
.contact-backdrop img { object-position: center center; }
.editorial-hero-image:not(.attorney-portrait-hero) > img { object-position: center center; }
.practice-hero-image img { object-position: center center; }
.service-courthouse-hero img,
.service-courthouse-detail img,
.county-page-hero figure img { object-position: center center; }
.service-courthouse-hero,
.service-courthouse-detail,
.county-page-hero figure,
.practice-hero-image { min-height: 460px; position: relative; }
.firm-testimonial-carousel {
  background: var(--green-deep, #08271f);
  color: #fff;
  min-height: 480px;
  padding: clamp(40px, 7vw, 90px);
}
.firm-testimonial-slide { display: none; }
.firm-testimonial-slide.is-active { display: block; }
.firm-testimonial-slide > div { color: #d3b57e; letter-spacing: .2em; }
.firm-testimonial-slide blockquote {
  font-family: Georgia, serif;
  font-size: clamp(25px, 3vw, 46px);
  line-height: 1.35;
  margin: 35px 0;
}
.firm-carousel-controls {
  align-items: center;
  display: flex;
  gap: 20px;
  margin-top: 45px;
}
.firm-carousel-controls button {
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  cursor: pointer;
  padding: 12px 16px;
}
.fusco-firm-site .fcr-shell { color: #f8f4e9; font-family: inherit; }
.fusco-firm-site .fcr-field label,
.fusco-firm-site .fcr-disclaimer,
.fusco-firm-site .fcr-help { color: rgba(255,255,255,.78); }
.fusco-firm-site .fcr-submit button { background: #d3b57e; color: #08271f; }
.fusco-firm-site .fcr-field input,
.fusco-firm-site .fcr-field textarea { border-color: rgba(255,255,255,.35); }
@media (max-width: 720px) {
  .hero-courthouse img { object-position: center 45%; }
  .experience-image img { object-position: 42% center; }
  .county-visual figure img { object-position: 56% center; }
  .referral-image img { object-position: center 18%; }
  .contact-backdrop img { object-position: 58% center; }
  .firm-testimonial-carousel { min-height: 520px; padding: 34px 24px; }
  .service-courthouse-hero,
  .service-courthouse-detail,
  .county-page-hero figure,
  .practice-hero-image { min-height: 330px; }
}
