@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap");

:root {
  --navy: #1f3d63;
  --navy-dark: #18324f;
  --cream: #f7f4ed;
  --gold: #c9ad7b;
  --gold-hover: #b99b67;
  --text-dark: #2c2a27;
  --white: #ffffff;
  --border-light: rgba(255, 255, 255, 0.85);
  --rust: #b55239;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;

  --header-height: 112px;
  --hero-section-height: 560px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
}

p,
a,
button,
li,
span {
  font-family: var(--font-sans);
}

/* =========================
   Header
========================= */

.site-header {
  width: 100%;
  background: var(--navy);
  border-top: 1px solid rgba(201, 173, 123, 0.45);
}

.header-inner {
  height: var(--header-height);
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 180px 1fr 260px;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 88px;
  height: 88px;
}

.site-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  position: relative;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.78;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 72px;
  height: 1px;
  background: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.language-toggle,
.contact-button {
  height: 48px;
  padding: 0 16px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

.language-toggle {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--white);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.22);
}

.mobile-menu-button {
  display: none;
  width: 40px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 7px 0;
}

.mobile-nav {
  display: none;
  background: var(--navy-dark);
  padding: 24px;
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  /* Full-width, finger-friendly hit area (min 44px) */
  display: block;
  padding: 12px 0;
  min-height: 44px;
  line-height: 20px;
}

/* =========================
   Hero
========================= */

.hero-section {
  position: relative;
  min-height: var(--hero-section-height);
  background: var(--cream);
  overflow: hidden;
}

.hero-content {
  max-width: 1512px;
  min-height: var(--hero-section-height);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-text {
  width: 52%;
  padding-left: 72px;
  padding-bottom: 16px;
  position: relative;
  z-index: 3;
}

/* Matched to .interior-hero-text so the homepage and the interior pages read
   at the same weight and scale. */
.hero-text h1 {
  max-width: 640px;
  font-size: 48px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-text p {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 34px;
}

.hero-button,
.why-button,
.meet-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 7px 9px rgba(0, 0, 0, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

/* Primary CTA buttons */
.hero-button {
  min-width: 240px;
  height: 64px;
  padding: 0 32px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid rgba(31, 61, 99, 0.14);
  border-radius: 6px;
  box-shadow: 0 7px 9px rgba(0, 0, 0, 0.22);
}

.hero-button:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 9px 13px rgba(0, 0, 0, 0.22);
}

.why-button,
.meet-preview-button {
  min-width: 160px;
  height: 56px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
}

.why-button:hover,
.meet-preview-button:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  right: -72px;
  top: -48px;
  width: 736px;
  height: 504px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.78;
  z-index: 1;
}

/* Background-removed bust, standing free on the hero's bottom edge. */
.attorney-image {
  position: absolute;
  right: 108px;
  bottom: 0;
  width: min(430px, 40vw);
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
}

/* =========================
   Credibility Grid
========================= */

.credibility-section {
  width: 100%;
  background: var(--navy);
}

.credibility-grid {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  /* Hairline gaps let the grid's own background show through as dividers
     between the stat cards, which are otherwise all the same navy. */
  gap: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.credibility-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.text-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px 32px;
}

.text-card h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 24px;
}

.text-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.text-card p {
  font-size: 14px;
  line-height: 1.45;
  max-width: 312px;
}

/* =========================
   Why Choose LeUnes
========================= */

.why-section {
  width: 100%;
  min-height: 960px;
  background: var(--cream);
}

.why-inner {
  max-width: 1512px;
  min-height: 960px;
  margin: 0 auto;
  padding: 144px 72px 120px;
  display: grid;
  grid-template-columns: 1fr 720px;
  align-items: start;
  column-gap: 96px;
}

.why-left {
  max-width: 608px;
  padding-top: 16px;
}

.section-eyebrow {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

.why-left h2 {
  max-width: 520px;
  font-size: 40px;
  line-height: 1.16;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

.why-description {
  max-width: 568px;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 328px);
  grid-auto-rows: 352px;
  gap: 48px;
}

.why-card {
  position: relative;
  width: 328px;
  height: 352px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 7px 12px rgba(0, 0, 0, 0.18);
}

.gold-card {
  background: var(--gold);
  color: var(--navy);
}

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

.why-card-content {
  width: 280px;
  min-height: 192px;
  padding-top: 32px;
  margin-left: 24px;
}

.why-card h3 {
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.why-card p {
  font-size: 12.5px;
  line-height: 1.45;
}

.why-icon {
  position: absolute;
  right: 32px;
  bottom: 28px;
  font-size: 24px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* =========================
   Process
========================= */

.process-section {
  width: 100%;
  min-height: 712px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.process-inner {
  max-width: 1512px;
  min-height: 712px;
  margin: 0 auto;
  position: relative;
  padding: 72px 72px 56px;
}

.process-heading {
  text-align: center;
  max-width: 624px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.process-heading h2 {
  font-size: 48px;
  line-height: 1.12;
  margin-bottom: 24px;
}

.process-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.process-description {
  max-width: 528px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.45;
}

.process-wave {
  position: absolute;
  left: 152px;
  right: 152px;
  top: 272px;
  height: 160px;
  z-index: 1;
  pointer-events: none;
}

.process-wave svg {
  width: 100%;
  height: 100%;
}

.process-wave path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 12 18;
}

.process-steps {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 48px;
  z-index: 2;
}

.process-step {
  text-align: center;
}

.process-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 40px;
  color: var(--white);
}

.process-icon svg {
  width: 64px;
  height: 64px;
}

.process-icon svg path,
.process-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-icon {
  border: 1px dotted rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.check-icon svg {
  width: 48px;
  height: 48px;
}

.process-step h3 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 32px;
}

.process-step h4 {
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 24px;
  min-height: 48px;
}

.process-step p {
  max-width: 248px;
  margin: 0 auto;
  font-size: 12.5px;
  line-height: 1.4;
}

/* =========================
   Areas We Handle
========================= */

.areas-section {
  width: 100%;
  min-height: 872px;
  background: var(--cream);
  border-top: 6px solid var(--navy);
}

.areas-inner {
  max-width: 1512px;
  margin: 0 auto;
  padding: 104px 72px 112px;
}

.areas-heading {
  width: 728px;
  min-height: 112px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.areas-heading h2 {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.areas-heading p {
  font-size: 20px;
  line-height: 1.4;
}

.areas-grid {
  width: 1034px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 485px);
  gap: 32px 64px;
}

.area-card {
  position: relative;
  width: 485px;
  height: 240px;
  padding: 48px 32px 32px;
  background: var(--cream);
  border: 4px solid var(--rust);
  border-radius: 24px 24px 44px 24px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: #000000;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 13px rgba(0, 0, 0, 0.22);
}

.area-card-text {
  width: 408px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-card h3 {
  font-size: 26px;
  line-height: 1.15;
}

.area-card p {
  max-width: 392px;
  font-size: 18px;
  line-height: 1.5;
}

.area-arrow {
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 32px;
  height: 32px;
  border-top: 5px solid var(--rust);
  border-right: 5px solid var(--rust);
  transform: rotate(45deg);
  transition: right 0.2s ease;
}

.area-card:hover .area-arrow {
  right: 24px;
}

/* =========================
   Associations Banner
========================= */

.associations-section {
  width: 100%;
  background: var(--white);
  padding: 48px 72px;
  border-top: 1px solid rgba(31, 61, 99, 0.08);
}

.associations-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 64px;
}

.association-logo {
  width: 112px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.association-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.association-item {
  text-align: center;
  max-width: 190px;
}

.association-item h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 5px;
}

.association-item p {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(44, 42, 39, 0.68);
}

/* =========================
   Meet Christopher Preview
========================= */

.meet-preview-section {
  width: 100%;
  background: var(--cream);
  overflow: hidden;
}

.meet-preview-inner {
  max-width: 1512px;
  min-height: 568px;
  margin: 0 auto;
  padding: 72px 72px 0;
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: end;
}

.meet-preview-image {
  position: relative;
  height: 496px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.meet-preview-image img {
  width: min(440px, 42vw);
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.meet-preview-text {
  align-self: center;
  max-width: 664px;
  padding-bottom: 48px;
}

.meet-preview-text h2 {
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.meet-preview-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* =========================
   Testimonials
========================= */

.testimonials-section {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  min-height: 624px;
}

.testimonials-inner {
  max-width: 1512px;
  margin: 0 auto;
  padding: 112px 72px 96px;
}

.testimonials-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.testimonials-heading h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.testimonials-heading p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.55;
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-track {
  width: 100%;
  max-width: 1224px;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  color: var(--text-dark);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18);
}

.side-card {
  min-height: 216px;
  padding: 48px 32px;
  opacity: 0.78;
}

.featured-card {
  min-height: 280px;
  padding: 56px 48px;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.testimonial-stars {
  color: var(--rust);
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.testimonial-card p:last-child {
  max-width: 432px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.45;
}

.featured-card p:last-child {
  font-size: 14px;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 64px;
  line-height: 1;
  font-family: var(--font-serif);
  cursor: pointer;
  z-index: 5;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.testimonial-arrow:hover {
  opacity: 0.72;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.contact-anchor-section {
  height: 1px;
  background: var(--navy);
}

/* =========================
   Footer
========================= */

.site-footer {
  width: 100%;
  background: #172f4b;
  color: var(--white);
}

.footer-inner {
  max-width: 1512px;
  margin: 0 auto;
  padding: 80px 72px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-column h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-column a,
.footer-column p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TikTok mark reads as a filled glyph rather than a line drawing. */
.footer-social svg path {
  fill: currentColor;
  stroke: none;
}

.footer-social svg .solid {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 1512px;
  margin: 0 auto;
  padding: 24px 72px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px 32px;
}

.footer-bottom p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.footer-legal-links {
  flex-basis: 100%;
  padding-top: 4px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-links a:hover {
  color: var(--white);
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.4);
  padding: 0 6px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1200px) {
  :root {
    --header-height: 104px;
    --hero-section-height: 552px;
  }

  .header-inner {
    padding: 0 32px;
    grid-template-columns: 144px 1fr 240px;
  }

  .logo-link,
  .site-logo {
    width: 80px;
    height: 80px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero-text {
    padding-left: 56px;
  }

  .hero-text p {
    max-width: 540px;
  }

  .hero-circle {
    width: 640px;
    height: 464px;
    right: -112px;
  }

  .attorney-image {
    right: 56px;
    width: min(424px, 42vw);
  }

  .credibility-grid {
    grid-auto-rows: 224px;
  }

  .why-inner {
    padding: 120px 56px 104px;
    grid-template-columns: 1fr 624px;
    column-gap: 56px;
  }

  .why-card-grid {
    grid-template-columns: repeat(2, 288px);
    grid-auto-rows: 320px;
    gap: 32px;
  }

  .why-card {
    width: 288px;
    height: 320px;
  }

  .why-card-content {
    width: 240px;
  }

  .process-wave {
    left: 112px;
    right: 112px;
  }

  .process-steps {
    left: 32px;
    right: 32px;
    column-gap: 32px;
  }

  .areas-grid {
    width: 100%;
    max-width: 984px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 40px;
  }

  .area-card {
    width: 100%;
  }

  .area-card-text {
    width: auto;
    max-width: 408px;
  }

  .associations-inner {
    gap: 36px 48px;
  }

  .meet-preview-inner,
  .testimonials-inner {
    padding-left: 56px;
    padding-right: 56px;
  }

  .meet-preview-text h2 {
    font-size: 42px;
  }

  .testimonial-track {
    max-width: 1048px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

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

  .mobile-menu-button {
    display: block;
  }

  .hero-section,
  .hero-content {
    min-height: 608px;
  }

  .hero-text {
    width: 62%;
    padding-left: 40px;
    padding-top: 72px;
  }

  .hero-text h1 {
    font-size: 44px;
  }

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

  .why-section,
  .why-inner,
  .process-section,
  .process-inner,
  .areas-section {
    min-height: auto;
  }

  .why-inner {
    padding: 88px 40px;
    display: block;
  }

  .why-left {
    margin-bottom: 56px;
  }

  .why-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card {
    width: 100%;
  }

  .process-inner {
    padding: 80px 40px 88px;
  }

  .process-wave {
    display: none;
  }

  .process-steps {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 72px;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 40px;
  }

  .areas-inner {
    padding: 80px 40px 88px;
  }

  .areas-heading {
    width: 100%;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    max-width: 624px;
  }

  .area-card {
    height: auto;
    min-height: 232px;
  }

  .associations-inner {
    gap: 32px 40px;
  }

  .meet-preview-inner {
    min-height: auto;
    padding: 80px 40px 0;
    grid-template-columns: 1fr;
  }

  .meet-preview-text {
    order: 1;
    max-width: 720px;
    padding-bottom: 40px;
  }

  .meet-preview-image {
    order: 2;
    height: 432px;
  }

  .meet-preview-image img {
    width: 328px;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
    max-width: 624px;
  }

  .side-card {
    display: none;
  }

  .featured-card {
    min-height: 264px;
  }

  .testimonial-prev {
    left: 24px;
  }

  .testimonial-next {
    right: 24px;
  }

  .footer-inner {
    padding: 72px 40px 56px;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-bottom {
    padding: 24px 40px 32px;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 88px;
  }

  .header-inner {
    height: var(--header-height);
    padding: 0 24px;
  }

  .logo-link,
  .site-logo {
    width: 68px;
    height: 68px;
  }

  .hero-section,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    display: block;
    padding: 64px 24px 0;
  }

  .hero-text {
    width: 100%;
    padding: 0;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    margin-bottom: 32px;
  }
  .hero-button {
    min-width: 216px;
    height: 60px;
    padding: 0 28px;
    font-size: 18px;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: 408px;
    margin-top: 40px;
  }

  .hero-circle {
    width: 472px;
    height: 352px;
    right: -184px;
    top: 24px;
  }

  .attorney-image {
    right: 50%;
    transform: translateX(50%);
    width: 304px;
  }

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

  .credibility-card {
    min-height: 232px;
  }

  .credibility-card.image-card {
    display: none;
  }

  .hero-circle {
    display: none;
  }

  .process-wave {
    display: none;
  }

  .meet-preview-image {
    display: none;
  }

  .side-card {
    display: none;
  }

  .why-inner,
  .areas-inner {
    padding: 72px 24px;
  }

  .why-left h2 {
    font-size: 32px;
  }

  .why-card-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-inner {
    padding: 64px 24px 80px;
  }

  .process-heading h2 {
    font-size: 40px;
  }

  .process-step h3 {
    font-size: 36px;
  }

  .areas-heading h2 {
    font-size: 40px;
  }

  .areas-heading p {
    font-size: 18px;
  }

  .area-card {
    min-height: 240px;
    padding: 40px 24px 32px;
  }

  .area-card h3 {
    font-size: 24px;
  }

  .area-card p {
    font-size: 17px;
  }

  .area-arrow {
    right: 28px;
    bottom: 24px;
    width: 28px;
    height: 28px;
  }

  .associations-section {
    padding: 40px 24px;
  }

  .associations-inner {
    max-width: 440px;
    gap: 26px 32px;
  }

  .association-item {
    max-width: 160px;
  }

  .association-item h3 {
    font-size: 13px;
  }

  .association-logo {
    width: 88px;
    height: 56px;
  }

  .meet-preview-inner {
    padding: 64px 24px 0;
  }

  .meet-preview-text h2 {
    font-size: 36px;
  }

  .meet-preview-text p {
    font-size: 15px;
  }

  .meet-preview-image {
    height: 360px;
  }

  .meet-preview-image img {
    width: 288px;
  }

  .testimonials-inner {
    padding: 80px 24px;
  }

  .testimonials-heading {
    margin-bottom: 48px;
  }

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

  .testimonials-heading p {
    font-size: 18px;
  }

  .featured-card {
    padding: 48px 32px;
  }

  .testimonial-arrow {
    display: none;
  }

  .footer-inner {
    padding: 64px 24px 48px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    width: 80px;
    height: 80px;
  }

  .footer-bottom {
    padding: 24px;
  }

  /* Larger touch targets for footer navigation on small screens */
  .footer-column a {
    padding: 7px 0;
    margin-bottom: 4px;
  }

  /* Inline text links need a finger-sized hit area on touch devices */
  .text-link,
  .resource-learn-more,
  .case-review-link,
  .secondary-contact-link,
  .contact-info-card a {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
  }


  .footer-legal-links a {
    display: inline-block;
    padding: 9px 0;
  }

  .legal-page-section {
    padding: 48px 24px 64px;
  }

  .legal-page-inner h1 {
    font-size: 33px;
  }

  .legal-page-inner h2 {
    font-size: 19px;
    margin-top: 32px;
  }
}


/* =========================
   About Page
========================= */

.about-hero-section {
  background: var(--cream);
  overflow: hidden;
}

.about-hero-inner {
  max-width: 1512px;
  min-height: 640px;
  margin: 0 auto;
  padding: 80px 96px 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  align-items: end;
  gap: 72px;
}

.about-hero-text {
  align-self: start;
  padding-top: 8px;
  max-width: 560px;
}

.about-hero-text h1 {
  font-size: 48px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-hero-text p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 48px;
}

.about-hero-image {
  height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-hero-image img {
  width: min(500px, 40vw);
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.about-stat-bar {
  position: absolute;
  left: 50%;
  bottom: -56px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 192px));
  min-height: 112px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
  z-index: 5;
  box-shadow: 0 10px 24px rgba(31, 61, 99, 0.14);
}

.about-stat h3 {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-stat p {
  font-size: 13px;
  line-height: 1.4;
}

.about-story-section {
  background: var(--navy);
  color: var(--white);
  min-height: 680px;
  padding: 144px 96px 120px;
}

.about-story-inner {
  max-width: 1512px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 96px;
}

.about-story-image {
  grid-column: 1;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 420px;
  /* Circular frame: gives the cut-out a deliberate edge and hides the flat
     crop across the chest, which otherwise floats on the navy. */
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 173, 123, 0.5);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.about-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-copy {
  grid-column: 2;
}

.about-story-copy .section-eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.about-story-copy h2 {
  max-width: 520px;
  font-size: 38px;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.about-story-copy p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.defense-section {
  background: var(--cream);
  padding: 96px 72px 112px;
  text-align: center;
}

.defense-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.defense-label {
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.defense-inner h2 {
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: 36px;
  line-height: 1.2;
}

.defense-description {
  max-width: 760px;
  margin: 0 auto 72px;
  font-size: 15px;
  line-height: 1.6;
}

.defense-flow {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 16px;
}

.defense-card {
  min-height: 112px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 6px 12px rgba(31, 61, 99, 0.22);
}

.defense-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.defense-card p {
  font-size: 13px;
  line-height: 1.45;
}

.defense-arrow {
  color: var(--rust);
  font-size: 24px;
}

/* =========================
   Google Rating Badge
========================= */

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
  padding: 9px 18px;
  border: 1px solid rgba(201, 173, 123, 0.5);
  border-radius: 999px;
  background: rgba(201, 173, 123, 0.12);
}

.google-rating-score {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.google-rating-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}

.google-rating-count {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1;
}

.reviews-note {
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 30px auto 0;
}

.footer-address {
  display: block;
  line-height: 1.5;
}

/* =========================
   Client Commitment
========================= */

.commitment-section {
  background: var(--navy);
  color: var(--white);
  padding: 84px 72px 96px;
}

.commitment-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.commitment-heading {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.commitment-heading h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.commitment-heading p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

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

.commitment-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 173, 123, 0.32);
  border-radius: 10px;
  padding: 32px 28px;
}

.commitment-card h3 {
  font-size: 18px;
  line-height: 1.3;
  color: var(--gold);
  margin-bottom: 12px;
}

.commitment-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

/* =========================
   Legal Pages
========================= */

.legal-page-section {
  background: var(--cream);
  padding: 72px 72px 96px;
}

.legal-page-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page-inner h1 {
  font-size: 44px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 10px;
}

.legal-updated {
  font-size: 13px;
  color: rgba(44, 42, 39, 0.6);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(31, 61, 99, 0.16);
}

.legal-page-inner h2 {
  font-size: 21px;
  line-height: 1.3;
  color: var(--navy);
  margin-top: 38px;
  margin-bottom: 12px;
}

.legal-page-inner p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.consult-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 173, 123, 0.12);
  font-size: 13px;
  line-height: 1.6;
}

.credentials-section {
  background: var(--cream);
  padding: 72px 72px 88px;
}

.credentials-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.credentials-column h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rust);
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(31, 61, 99, 0.18);
}

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

.credentials-column li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dark);
  padding: 9px 0 9px 20px;
  position: relative;
}

.credentials-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold, #c9a15a);
}

.team-section {
  background: var(--navy);
  color: var(--white);
  padding: 88px 72px 104px;
}

.team-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.team-heading {
  max-width: 520px;
  margin-bottom: 64px;
}

.team-heading .section-eyebrow {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-heading h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.team-heading p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px);
  justify-content: center;
  gap: 64px;
}

.team-card {
  background: var(--cream);
  color: var(--text-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.team-photo {
  height: 280px;
  background: #5c7089;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.team-photo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.team-info {
  padding: 22px 20px 26px;
}

.team-role {
  color: var(--rust);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-info h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 12px;
  line-height: 1.55;
}

.comparison-section {
  background: var(--cream);
  padding: 96px 72px 104px;
}

.comparison-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.comparison-heading {
  max-width: 560px;
  margin-bottom: 64px;
}

.comparison-heading h2 {
  font-size: 34px;
  line-height: 1.18;
  text-transform: uppercase;
  margin-top: 12px;
}

/* Segmented switch: one side at a time instead of two columns side by side. */
.comparison-switch {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(31, 61, 99, 0.1);
  margin-bottom: 40px;
}

.comparison-switch-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: transparent;
  border-radius: 999px;
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(44, 42, 39, 0.6);
  transition: background-color 0.22s ease, color 0.22s ease;
}

.comparison-switch-btn:hover {
  color: var(--navy);
}

.comparison-switch-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.comparison-switch-btn.active {
  background: var(--navy);
  color: var(--white);
}

.comparison-panels {
  max-width: 760px;
}

.comparison-panel {
  display: grid;
  gap: 20px;
}

.comparison-panel[hidden] {
  display: none;
}

.comparison-box {
  min-height: 88px;
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.45;
}

.comparison-box.muted {
  background: #d8d8d8;
  color: var(--text-dark);
}

.comparison-box.highlight {
  background: var(--navy);
  color: var(--white);
}

.about-faq-section {
  background: var(--cream);
  padding: 104px 72px 112px;
}

.about-faq-inner {
  max-width: 980px;
  margin: 0 auto;
}

.about-faq-inner .defense-label {
  text-align: left;
}

.about-faq-inner h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 56px;
}

.about-faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.about-faq-item {
  border-bottom: 1px solid rgba(31, 61, 99, 0.4);
  padding: 0 0 24px;
  margin-bottom: 24px;
}

.about-faq-item h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 14px;
}

.about-faq-item p {
  font-size: 14px;
  line-height: 1.7;
}

.about-cta-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 24px 80px;
}

.about-cta-section h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-cta-section p {
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 15px;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.about-cta-actions a {
  min-width: 120px;
  height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  text-decoration: none;
}

.about-cta-primary {
  background: var(--white);
  color: var(--navy);
}

.about-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

@media (max-width: 980px) {
  .about-hero-inner {
    min-height: auto;
    padding: 72px 40px 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-image {
    height: 420px;
  }

  .about-stat-bar {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: -12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-section {
    padding: 88px 40px;
  }

  .about-story-inner {
    display: block;
  }

  .about-story-copy {
    max-width: 680px;
  }

  .defense-flow {
    grid-template-columns: 1fr;
  }

  .defense-arrow {
    transform: rotate(90deg);
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 32px;
  }

  .credentials-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

}

@media (max-width: 760px) {
  .about-hero-inner,
  .about-story-section,
  .defense-section,
  .team-section,
  .credentials-section,
  .commitment-section,
  .comparison-section,
  .about-faq-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .commitment-heading h2 {
    font-size: 28px;
  }

  .commitment-card {
    padding: 26px 22px;
  }

  .about-hero-text h1 {
    font-size: 38px;
  }

  .about-hero-text p {
    font-size: 16px;
  }

  .about-stat-bar {
    grid-template-columns: 1fr;
  }

  .about-story-copy h2,
  .defense-inner h2,
  .comparison-heading h2,
  .about-faq-inner h2 {
    font-size: 30px;
  }

  .team-grid {
    max-width: 340px;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}


/* =========================
   Patch: About Overlay + Comparison Alignment
   Added without deleting existing CSS.
========================= */

/* Fix gold stat bar so it overlays the cream hero and blue section */
.about-hero-section {
  position: relative;
  overflow: visible;
  z-index: 2;
}

.about-hero-inner {
  position: relative;
  overflow: visible;
  z-index: 3;
}

.about-stat-bar {
  position: absolute;
  left: 50%;
  bottom: -56px;
  transform: translateX(-50%);
  z-index: 50;
}

/* The blue section starts normally, while its content clears the overlay */
.about-story-section {
  position: relative;
  z-index: 1;
  padding-top: 144px;
}

/* =========================
   Case Results Page
========================= */

.case-hero-section {
  position: relative;
  background: var(--cream);
  overflow: visible;
  z-index: 2;
}

.case-hero-inner {
  max-width: 1512px;
  min-height: 520px;
  margin: 0 auto;
  padding: 72px 96px 0;
  position: relative;
  overflow: visible;
  z-index: 3;

  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 72px;
}

.case-hero-text {
  align-self: start;
  max-width: 560px;
  padding-top: 24px;
}

.case-hero-text h1 {
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.case-hero-text p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 40px;
}

.case-hero-image {
  height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.case-hero-image img {
  width: 300px;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.case-stat-bar {
  position: absolute;
  left: 50%;
  bottom: -56px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 192px));
  min-height: 112px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
  z-index: 50;
  box-shadow: 0 10px 24px rgba(31, 61, 99, 0.14);
}

.case-stat h3 {
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 12px;
}

.case-stat p {
  font-size: 12px;
  line-height: 1.4;
}

.case-results-list-section {
  position: relative;
  z-index: 1;
  background: var(--navy);
  padding: 144px 72px 88px;
}

.case-results-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.case-result-card {
  background: var(--cream);
  color: var(--text-dark);
  border-radius: 10px;
  margin-bottom: 32px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.case-result-amount {
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid rgba(31, 61, 99, 0.25);
}

.case-result-amount h2 {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.case-result-amount p {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.case-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(31, 61, 99, 0.72);
  font-family: var(--font-serif);
  font-size: 13px;
  text-decoration: none;
  border-top: 1px solid rgba(31, 61, 99, 0.25);
  padding-top: 12px;
}

.case-result-details {
  display: grid;
  gap: 16px;
}

.case-result-row {
  border-bottom: 1px solid rgba(31, 61, 99, 0.3);
  padding-bottom: 14px;
}

.case-result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-result-row h3 {
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.case-result-row p {
  font-size: 13px;
  line-height: 1.55;
}

.case-track-record {
  background: rgba(201, 173, 123, 0.14);
  border: 1px solid rgba(201, 173, 123, 0.4);
  border-radius: 10px;
  padding: 34px 40px;
  margin-bottom: 28px;
  text-align: center;
}

.case-track-record h2 {
  font-size: 24px;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 12px;
}

.case-track-record p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 0 auto;
}

.case-results-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 4px;
}

.case-more-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.case-more-button {
  min-width: 104px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: transparent;
  font-family: var(--font-serif);
  font-size: 13px;
  cursor: pointer;
}

/* Responsive fixes for about + case results */
@media (max-width: 980px) {
  .about-stat-bar,
  .case-stat-bar {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: -8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .case-hero-inner {
    min-height: auto;
    padding: 72px 40px 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-hero-image {
    height: 360px;
  }

  .case-results-list-section {
    padding: 88px 40px;
  }

  .case-result-card {
    grid-template-columns: 1fr;
  }

  .case-result-amount {
    border-right: none;
    border-bottom: 1px solid rgba(31, 61, 99, 0.25);
    padding-right: 0;
    padding-bottom: 28px;
  }

}

@media (max-width: 760px) {
  .about-stat-bar,
  .case-stat-bar {
    grid-template-columns: 1fr;
  }

  .case-hero-inner,
  .case-results-list-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .case-hero-text h1 {
    font-size: 34px;
  }

  .case-result-card {
    padding: 32px 24px;
  }

  .case-result-amount h2 {
    font-size: 42px;
  }

  .case-track-record {
    padding: 28px 22px;
  }

  .case-track-record h2 {
    font-size: 21px;
  }
}


/* =========================
   Final Navigation Fixes
========================= */

.header-inner {
  grid-template-columns: 170px 1fr 260px;
}

.desktop-nav {
  gap: 28px;
}

/* Keep the text nav clean. Contact only lives in the white button on desktop. */
.desktop-nav a[href="contact.html"] {
  display: none;
}

/* =========================
   Practice Areas Page Full Styling
========================= */

.secondary-button {
  min-width: 160px;
  height: 64px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 18px;
  border-radius: 6px;
}

.pi-hero-section {
  position: relative;
  min-height: 640px;
  background: var(--cream);
  overflow: hidden;
}

.pi-hero-inner {
  max-width: 1512px;
  min-height: 640px;
  margin: 0 auto;
  padding: 96px 72px 0;
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
}

.pi-hero-text {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.page-label {
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pi-hero-text h1 {
  max-width: 680px;
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.pi-hero-description {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.pi-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pi-hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}

.pi-hero-circle {
  position: absolute;
  right: -110px;
  top: 56px;
  width: 640px;
  height: 440px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.72;
  z-index: 1;
}

.pi-attorney-image {
  position: absolute;
  right: 120px;
  bottom: 0;
  width: min(420px, 38vw);
  max-height: 95%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading.centered h2 {
  font-size: 48px;
  line-height: 1.16;
  margin-bottom: 20px;
}

.section-heading.centered p:not(.section-eyebrow) {
  font-size: 17px;
  line-height: 1.65;
}

.section-heading.light {
  color: var(--white);
}

.section-heading.light .section-eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.pi-categories-section {
  background: var(--cream);
  padding: 112px 72px;
}

.pi-categories-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.pi-accordion {
  display: grid;
  gap: 20px;
}

.pi-accordion-item {
  background: #fbf8f1;
  border: 1px solid rgba(31, 61, 99, 0.16);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(31, 61, 99, 0.06);
}

.pi-accordion-item summary {
  min-height: 112px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 56px 260px 1fr 42px;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.pi-accordion-item summary::-webkit-details-marker {
  display: none;
}

.pi-category-icon,
.pi-category-marker {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--rust);
  border-radius: 50%;
  color: var(--rust);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pi-category-title {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-size: 28px;
  line-height: 1.2;
}

.pi-category-preview {
  color: rgba(44, 42, 39, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.pi-expand-icon {
  width: 26px;
  height: 26px;
  position: relative;
}

.pi-expand-icon::before,
.pi-expand-icon::after {
  content: "";
  position: absolute;
  background: var(--rust);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pi-expand-icon::before {
  width: 24px;
  height: 2px;
}

.pi-expand-icon::after {
  width: 2px;
  height: 24px;
}

.pi-accordion-item[open] .pi-expand-icon::after {
  display: none;
}

.pi-expanded-content {
  border-top: 1px solid rgba(31, 61, 99, 0.14);
  padding: 40px 34px 44px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.pi-expanded-image {
  min-height: 360px;
  border-radius: 14px;
  overflow: hidden;
}

.pi-expanded-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pi-expanded-text h3 {
  font-size: 34px;
  line-height: 1.18;
  margin-bottom: 22px;
}

.pi-expanded-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.pi-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.pi-detail-grid h4 {
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--navy);
}

.pi-detail-grid ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.pi-detail-grid li {
  font-size: 14px;
  line-height: 1.45;
}

.text-link {
  color: var(--rust);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 18px;
}

.pi-editorial-section {
  background: var(--navy);
  color: var(--white);
  padding: 112px 72px;
}

.pi-editorial-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.pi-editorial-image {
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.pi-editorial-image img {
  width: min(430px, 100%);
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.pi-editorial-text .section-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.pi-editorial-text h2 {
  font-size: 46px;
  line-height: 1.14;
  margin-bottom: 28px;
}

.pi-editorial-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
}

.pi-editorial-points {
  display: grid;
  gap: 18px;
}

.pi-editorial-points div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pi-editorial-points strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 8px;
}

.pi-editorial-points span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.pi-results-section {
  background: var(--cream);
  padding: 112px 72px;
}

.pi-results-inner {
  max-width: 1180px;
  margin: 0 auto;
}

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

.pi-result-card {
  background: #fbf8f1;
  border: 1px solid rgba(31, 61, 99, 0.16);
  border-radius: 16px;
  min-height: 260px;
  padding: 34px 30px;
}

.pi-result-card span {
  display: block;
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pi-result-card h3 {
  font-size: 28px;
  line-height: 1.18;
  margin-bottom: 18px;
}

.pi-result-card p {
  font-size: 15px;
  line-height: 1.65;
}

.pi-process-section {
  background: var(--navy);
  color: var(--white);
  padding: 104px 72px;
}

.pi-process-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.pi-mini-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pi-mini-process article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 34px 30px;
}

.pi-mini-process span {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pi-mini-process h3 {
  font-size: 25px;
  margin-bottom: 14px;
}

.pi-mini-process p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.pi-faq-section {
  background: var(--cream);
  padding: 104px 72px;
}

.pi-faq-inner {
  max-width: 980px;
  margin: 0 auto;
}

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

.faq-list details {
  background: #fbf8f1;
  border: 1px solid rgba(31, 61, 99, 0.16);
  border-radius: 14px;
  padding: 24px 28px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
}

.faq-list p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
}

.pi-cta-section {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.pi-cta-inner {
  max-width: 1180px;
  min-height: 520px;
  margin: 0 auto;
  padding: 80px 72px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.pi-cta-text .section-eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.pi-cta-text h2 {
  font-size: 46px;
  line-height: 1.14;
  margin-bottom: 24px;
}

.pi-cta-text p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.pi-cta-image {
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pi-cta-image img {
  max-height: 100%;
  width: 400px;
  object-fit: contain;
  object-position: bottom center;
}

/* =========================
   Resources Page
========================= */

.resource-hero-section {
  background: var(--cream);
  padding: 96px 72px 80px;
}

.resource-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: end;
}

.resource-hero-inner h1 {
  max-width: 600px;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.resource-hero-inner p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
}

.resource-feature-section {
  background: var(--navy);
  padding: 96px 72px;
}

.resource-feature-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 32px;
}

.resource-feature-card,
.resource-side-note {
  border-radius: 14px;
  padding: 48px;
}

.resource-feature-card {
  background: var(--cream);
  color: var(--text-dark);
}

.resource-feature-card span {
  display: block;
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.resource-feature-card h2 {
  font-size: 42px;
  line-height: 1.16;
  margin-bottom: 22px;
}

.resource-feature-card p,
.resource-side-note p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.resource-feature-card a,
.resource-card a {
  color: var(--rust);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 16px;
}

.resource-side-note {
  background: var(--gold);
  color: var(--navy);
}

.resource-side-note h3 {
  font-size: 29px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.resource-grid-section {
  background: var(--cream);
  padding: 104px 72px;
}

.resource-grid-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.resource-heading {
  max-width: 620px;
  margin-bottom: 56px;
}

.resource-heading h2 {
  font-size: 42px;
  line-height: 1.16;
}

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

.resource-card {
  min-height: 280px;
  padding: 34px 30px;
  border: 1px solid rgba(31, 61, 99, 0.18);
  border-radius: 16px;
  background: #fbf8f1;
  display: flex;
  flex-direction: column;
}

.resource-card h3 {
  font-size: 25px;
  line-height: 1.22;
  margin-bottom: 18px;
}

.resource-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.resource-learn-more {
  background: none;
  border: none;
  color: var(--rust);
  font-size: 15px;
  font-family: var(--font-serif);
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 0;
}

.resource-learn-more:hover {
  opacity: 0.78;
}

/* Blog Modal */
.blog-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 24px;
}

.blog-modal.open {
  display: flex;
}

.blog-modal-content {
  background: var(--cream);
  border-radius: 10px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.blog-modal-close {
  position: sticky;
  top: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  float: right;
}

.blog-modal-close:hover {
  background: var(--navy-dark);
}

.blog-modal-inner {
  padding: 60px 48px;
  clear: both;
}

.blog-modal-inner h2 {
  font-size: 42px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}

.blog-modal-inner > p:first-of-type {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 32px;
  font-style: italic;
}

.blog-section {
  margin-bottom: 48px;
}

.blog-section h3 {
  font-size: 24px;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 32px;
}

.blog-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.blog-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.blog-section li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.blog-section li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 18px;
}

.blog-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 61, 99, 0.2);
}

.blog-modal-actions a,
.blog-modal-actions button {
  flex: 1;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.blog-modal-actions .practice-areas-link {
  background: var(--navy);
  color: var(--white);
}

.blog-modal-actions .practice-areas-link:hover {
  background: var(--navy-dark);
}

.blog-modal-actions button {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.blog-modal-actions button:hover {
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 768px) {
  .blog-modal-inner {
    padding: 40px 24px;
  }

  .blog-modal-inner h2 {
    font-size: 28px;
  }

  .blog-modal-actions {
    flex-direction: column;
  }
}

.resource-faq-section {
  background: var(--cream);
  padding: 64px 72px 112px;
}

.resource-faq-inner {
  max-width: 980px;
  margin: 0 auto;
}

/* =========================
   Contact Page
========================= */

.contact-hero-section {
  background: var(--cream);
  padding: 96px 72px 112px;
}

.contact-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-hero-text {
  padding-top: 32px;
}

.contact-hero-text h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.contact-hero-text p {
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.contact-quick-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.secondary-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 56px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 16px;
  border-radius: 6px;
}

.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 48px;
  box-shadow: 0 18px 40px rgba(31, 61, 99, 0.18);
}

.contact-card h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-card > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 32px;
}

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

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

.form-row label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-row select option {
  color: var(--text-dark);
}

.contact-submit {
  height: 56px;
  border: none;
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 17px;
  cursor: pointer;
  margin-top: 8px;
}

.contact-info-section {
  background: var(--navy);
  color: var(--white);
  padding: 88px 72px;
}

.contact-info-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-info-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 34px 30px;
}

.contact-info-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-info-card h3 {
  font-size: 26px;
  margin: 24px 0 16px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-info-card a {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 16px;
}

.contact-process-section {
  background: var(--cream);
  padding: 104px 72px;
}

.contact-process-inner {
  max-width: 1120px;
  margin: 0 auto;
}

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

.contact-process-grid div {
  background: #fbf8f1;
  border-radius: 14px;
  border: 1px solid rgba(31, 61, 99, 0.16);
  padding: 34px 30px;
}

.contact-process-grid h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-process-grid p {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .pi-hero-inner,
  .pi-expanded-content,
  .pi-editorial-inner,
  .pi-cta-inner,
  .resource-hero-inner,
  .resource-feature-inner,
  .contact-hero-inner,
  .contact-info-inner,
  .contact-process-grid {
    grid-template-columns: 1fr;
  }

  .pi-hero-visual {
    position: relative;
    width: 100%;
    height: 440px;
    margin-top: 48px;
  }

  .pi-hero-inner {
    padding: 80px 40px 0;
  }

  .pi-hero-text h1,
  .resource-hero-inner h1,
  .contact-hero-text h1 {
    font-size: 44px;
  }

  .pi-accordion-item summary {
    grid-template-columns: 56px 1fr 38px;
  }

  .pi-category-preview {
    grid-column: 2 / -1;
  }

  .pi-results-grid,
  .pi-mini-process,
  .resource-card-grid {
    grid-template-columns: 1fr;
  }

  .pi-categories-section,
  .pi-editorial-section,
  .pi-results-section,
  .pi-process-section,
  .pi-faq-section,
  .resource-hero-section,
  .resource-feature-section,
  .resource-grid-section,
  .resource-faq-section,
  .contact-hero-section,
  .contact-info-section,
  .contact-process-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: none;
  }

  .pi-hero-actions,
  .contact-quick-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pi-hero-inner,
  .pi-categories-section,
  .pi-editorial-section,
  .pi-results-section,
  .pi-process-section,
  .pi-faq-section,
  .pi-cta-inner,
  .resource-hero-section,
  .resource-feature-section,
  .resource-grid-section,
  .resource-faq-section,
  .contact-hero-section,
  .contact-info-section,
  .contact-process-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pi-hero-text h1,
  .section-heading.centered h2,
  .pi-editorial-text h2,
  .pi-cta-text h2,
  .resource-hero-inner h1,
  .contact-hero-text h1 {
    font-size: 38px;
  }

  .pi-accordion-item summary {
    padding: 24px;
    grid-template-columns: 48px 1fr;
  }

  .pi-expand-icon {
    display: none;
  }

  .pi-expanded-content {
    padding: 28px 24px 34px;
  }

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

  .contact-card,
  .resource-feature-card,
  .resource-side-note {
    padding: 34px 26px;
  }
}

/* Case Results reveal animation */
.case-extra-results[hidden] {
  display: none;
}

.case-extra-results {
  display: block;
}
  

/* =========================================================
   Final Consistency Pass — Interior Pages, Practice Areas,
   Resource Links, Contact Form, Testimonials
========================================================= */

.interior-hero-section {
  position: relative;
  background: var(--cream);
  overflow: visible;
  z-index: 2;
}

.interior-hero-inner {
  max-width: 1512px;
  min-height: 620px;
  margin: 0 auto;
  padding: 72px 96px 0;
  position: relative;
  overflow: visible;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  align-items: end;
  gap: 72px;
}

.interior-hero-text {
  align-self: start;
  max-width: 640px;
  padding-top: 18px;
}

.interior-hero-text h1 {
  font-size: 48px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.interior-hero-text > p:not(.page-label) {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 34px;
}

.interior-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.interior-hero-image {
  height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.interior-hero-image img {
  width: min(500px, 40vw);
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.interior-stat-bar {
  position: absolute;
  left: 50%;
  bottom: -56px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 192px));
  min-height: 112px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(31, 61, 99, 0.32);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(31, 61, 99, 0.16);
  z-index: 50;
}

.interior-stat {
  min-height: 112px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(31, 61, 99, 0.24);
}

.interior-stat:last-child {
  border-right: none;
}

.interior-stat h3 {
  font-size: 26px;
  line-height: 1.08;
  margin-bottom: 8px;
}

.interior-stat p {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

/* Give the section after an interior hero room for the gold overlap. */
.about-story-section,
.case-results-list-section,
.pi-categories-section,
.resource-feature-section,
.contact-form-section {
  padding-top: 152px;
}

/* Practice areas: replace hidden accordions with visible, linkable content cards. */
.pi-categories-section {
  background: #fffdf8;
  padding-bottom: 112px;
}

.pi-practice-list {
  display: grid;
  gap: 32px;
}

.pi-practice-card {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(31, 61, 99, 0.16);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(31, 61, 99, 0.08);
}

.pi-practice-card:nth-child(even) .pi-practice-card-media {
  order: 2;
}

.pi-practice-card-media {
  min-height: 410px;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Soft gold disc behind the icon, echoing the circle in the homepage hero. */
.pi-practice-card-media::before {
  content: "";
  position: absolute;
  width: 232px;
  height: 232px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.14;
}

.pi-practice-icon {
  position: relative;
  width: 128px;
  height: 128px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pi-practice-icon .solid {
  fill: var(--gold);
  stroke: none;
}

.pi-practice-card-copy {
  padding: 46px 44px;
}

.pi-practice-card-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.pi-practice-card-heading h3 {
  font-size: 34px;
  line-height: 1.15;
}

.pi-practice-card-copy > p {
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 30px;
}

.pi-practice-card .pi-detail-grid {
  margin-bottom: 30px;
}

.pi-editorial-section {
  scroll-margin-top: 100px;
}

/* Resources: make cards act like real topic links. */
.resource-card a {
  margin-top: auto;
}

.resource-card a:hover,
.text-link:hover {
  text-decoration: underline;
}

/* Contact: form starts in its own section so the hero matches the rest of the site. */
.contact-form-section {
  background: #fffdf8;
  padding-left: 72px;
  padding-right: 72px;
  padding-bottom: 112px;
}

.contact-form-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-copy {
  position: sticky;
  top: 96px;
}

.contact-form-copy h2 {
  font-size: 44px;
  line-height: 1.14;
  margin-bottom: 22px;
}

.contact-form-copy p:not(.section-eyebrow) {
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}

.contact-form-inner .contact-card {
  width: 100%;
}

/* Testimonials: equal-size cards with smoother transitions and text clipping. */
.testimonial-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.testimonial-card,
.side-card,
.featured-card {
  min-height: 292px;
  height: 292px;
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.testimonial-card.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.testimonial-card p:last-child,
.featured-card p:last-child {
  max-width: 440px;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

@media (max-width: 1100px) {
  .interior-hero-inner {
    grid-template-columns: 1fr 300px;
    padding: 64px 48px 0;
    gap: 44px;
  }

  .interior-stat-bar {
    width: min(1000px, calc(100% - 96px));
  }

  .pi-practice-card,
  .contact-form-inner {
    grid-template-columns: 1fr;
  }

  .pi-practice-card:nth-child(even) .pi-practice-card-media {
    order: 0;
  }

  .contact-form-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  .interior-hero-inner {
    min-height: auto;
    padding: 56px 24px 0;
    /* minmax(0, 1fr) so the track can shrink below its content's min-content
       width; a bare 1fr floors at min-content and overflows narrow screens. */
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .interior-hero-text {
    padding-top: 0;
  }

  .interior-hero-text h1 {
    font-size: 40px;
  }

  .interior-hero-image {
    height: 340px;
  }

  .interior-hero-image img {
    width: 260px;
  }

  .interior-stat-bar {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .about-story-section,
  .case-results-list-section,
  .pi-categories-section,
  .resource-feature-section,
  .contact-form-section {
    padding-top: 72px;
  }

  .pi-categories-section,
  .contact-form-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pi-practice-card-copy {
    padding: 34px 26px;
  }

  .pi-practice-card-media {
    min-height: 260px;
  }

  .pi-practice-card-heading h3 {
    font-size: 28px;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .side-card,
  .featured-card {
    height: auto;
    min-height: 260px;
  }

  /* Show only the featured review on mobile; the duplicate side cards add
     length without adding information. Must sit after the shared
     .testimonial-card/.side-card/.featured-card rule above to win the cascade. */
  .side-card {
    display: none;
  }
}

@media (max-width: 520px) {
  .interior-stat-bar {
    grid-template-columns: 1fr;
  }

  .interior-stat {
    border-right: none;
    border-bottom: 1px solid rgba(31, 61, 99, 0.22);
  }

  .interior-stat:last-child {
    border-bottom: none;
  }
}

/* Tighten page labels inside shared interior heroes after legacy page rules. */
.interior-hero-text .page-label,
.about-hero-text.interior-hero-text .page-label,
.case-hero-text.interior-hero-text .page-label {
  color: var(--rust);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  line-height: 1.2;
}

/* =========================
   Additional Services (Real Estate + Estate Planning)
========================= */

.additional-services-section {
  background: var(--cream);
  padding: 104px 72px 112px;
  border-top: 1px solid rgba(31, 61, 99, 0.1);
}

.additional-services-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.additional-services-grid .resource-card {
  display: flex;
  flex-direction: column;
}

.additional-services-grid .resource-card ul {
  list-style: disc;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .additional-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .additional-services-section {
    padding: 72px 24px 80px;
  }
}

/* =========================
   Mobile overrides (kept last so they win the cascade over the
   base component rules defined earlier in this file)
========================= */

@media (max-width: 760px) {
  /* iOS Safari auto-zooms the page when a focused field has a font-size
     below 16px. Holding at 16px keeps the viewport stable on tap. */
  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  /* Interior heroes on About, Case Results, Practice Areas and Resources drop
     the portrait and the stat bar on phones so the page opens on the copy. */
  .interior-hero-lean .interior-hero-image,
  .interior-hero-lean .interior-stat-bar {
    display: none;
  }

  .interior-hero-lean.interior-hero-section,
  .interior-hero-lean.about-hero-section,
  .interior-hero-lean.case-hero-section,
  .interior-hero-lean.resource-hero-section {
    padding-bottom: 56px;
  }

  .comparison-switch {
    display: flex;
    width: 100%;
  }

  .comparison-switch-btn {
    flex: 1;
    padding: 14px 12px;
  }

  .about-story-image {
    max-width: 300px;
    margin: 0 auto 32px;
  }
}
