@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Libre+Baskerville:wght@400;700&display=swap");

:root {
  --navy: #0f1a2a;
  --ivory: #f6f1e8;
  --bronze: #b59b68;
  --bronze-text: #765a2a;
  --charcoal: #232323;
  --soft-gray: #e8e5df;
  --navy-soft: #1c2a40;
  --ink: var(--charcoal);
  --ink-soft: #3a3a3a;
  --muted: #6b665f;
  --line: var(--soft-gray);
  --paper: var(--ivory);
  --white: var(--ivory);
  --teal: var(--navy);
  --teal-dark: #111f33;
  --wine: var(--bronze);
  --gold: var(--bronze);
  --sand: var(--bronze);
  --sand-soft: #c8b486;
  --shadow: 0 20px 60px rgba(15, 26, 42, 0.12);
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--navy);
}

.service-page-shell {
  color: var(--ivory);
  background: var(--navy);
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--sand);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

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

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

.narrow {
  width: min(780px, calc(100% - 40px));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--navy);
  border-bottom: 1px solid rgba(246, 241, 232, 0.06);
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    box-shadow 1100ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
  will-change: transform, opacity;
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -108%, 0);
}

.home-page .site-header {
  background: transparent;
  border-bottom-color: transparent;
}

.home-page .site-header.is-past-hero,
.home-page.nav-menu-open .site-header {
  background: var(--navy);
  border-bottom-color: rgba(246, 241, 232, 0.06);
}

.site-header.is-revealing {
  transform: translate3d(0, 0, 0);
  animation: header-drop-in 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header.is-hiding {
  transform: translate3d(0, -108%, 0);
  animation: header-rise-out 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes header-drop-in {
  from {
    transform: translate3d(0, -108%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes header-rise-out {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -108%, 0);
  }
}

.topbar {
  min-height: 0;
  display: none;
  justify-content: center;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 0.9rem;
}

.topbar a,
.button,
.nav-cta,
.service-card a,
.contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar svg,
.button svg,
.service-card svg,
.values-grid svg,
.contact-info svg {
  width: 18px;
  height: 18px;
}

i[data-lucide="arrow-up-right"],
svg.lucide-arrow-up-right {
  display: none;
}

.navbar {
  width: min(1080px, calc(100% - 40px));
  min-height: 64px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 30px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  color: var(--sand);
  background: transparent;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(246, 241, 232, 0.82);
  font-size: 1rem;
  font-weight: 400;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: color 160ms ease;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--bronze);
}

.nav-links a.active,
.nav-dropdown.is-active .nav-dropdown-trigger {
  color: var(--sand);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  --dropdown-gap: 10px;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: var(--dropdown-gap);
}

.nav-chevron {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(181, 155, 104, 0.08);
  transition: background 160ms ease;
}

.nav-chevron::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid rgba(181, 155, 104, 0.92);
  border-bottom: 1.5px solid rgba(181, 155, 104, 0.92);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron,
.nav-dropdown.is-open .nav-chevron {
  background: rgba(181, 155, 104, 0.14);
}

.nav-dropdown:hover .nav-chevron::before,
.nav-dropdown:focus-within .nav-chevron::before,
.nav-dropdown.is-open .nav-chevron::before {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + var(--dropdown-gap));
  left: 50%;
  z-index: 120;
  width: min(260px, calc(100vw - 32px));
  overflow: hidden;
  padding: 10px 0;
  color: rgba(246, 241, 232, 0.86);
  border: 1px solid rgba(246, 241, 232, 0.1);
  border-top-color: rgba(246, 241, 232, 0.06);
  border-radius: 0 0 8px 8px;
  background: var(--navy);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-group {
  display: grid;
}

.nav-dropdown-group + .nav-dropdown-group {
  padding-top: 10px;
}

.nav-dropdown-group strong,
.nav-dropdown-heading {
  padding: 0 18px 7px;
  color: var(--sand);
  border-top: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.nav-dropdown-panel a {
  display: block;
  padding: 9px 18px;
  border-top: 1px solid rgba(246, 241, 232, 0.09);
  color: rgba(246, 241, 232, 0.86);
  font-size: 0.9rem;
  line-height: 1.25;
}

.nav-dropdown-panel .nav-dropdown-heading {
  padding: 0 18px 7px;
  color: var(--sand);
  border-top: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  color: var(--sand);
  background: rgba(246, 241, 232, 0.03);
}

.service-page-loading {
  min-height: 70vh;
  opacity: 0;
  visibility: hidden;
}

.nav-cta,
.button {
  border: 1px solid transparent;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  justify-content: center;
}

.nav-cta,
.button-primary {
  color: var(--ink);
  background: var(--sand);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--sand-soft);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(246, 241, 232, 0.58);
  background: rgba(246, 241, 232, 0.1);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border: 0;
  background: transparent;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--sand);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-toggle svg {
  transition: opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] svg {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-cta {
  min-height: 40px;
  width: max-content;
  padding: 0 22px;
  justify-self: end;
  justify-content: center;
  color: var(--ink);
  background: var(--sand);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
}

.nav-cta > span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--sand);
  border-radius: 5px;
}

.nav-cta strong {
  display: grid;
  gap: 1px;
  line-height: 1.05;
  font-size: 1.2rem;
}

.nav-cta small {
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.72rem;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02) brightness(0.96);
}

.hero-home .hero-media img {
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 26, 42, 0.86) 0%, rgba(15, 26, 42, 0.62) 42%, rgba(15, 26, 42, 0.18) 100%),
    linear-gradient(0deg, rgba(15, 26, 42, 0.78) 0%, rgba(15, 26, 42, 0.18) 48%, rgba(15, 26, 42, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0 190px;
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ivory);
  line-height: 1.02;
  letter-spacing: 0;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-home h1 {
  width: min(100%, 1080px);
  max-width: 1080px;
  font-size: clamp(2.45rem, 3.55vw, 3.65rem);
  line-height: 1.06;
  font-weight: 800;
  text-wrap: balance;
}

.hero-home h1 span,
.hero-copy span {
  display: block;
}

.hero-home h1 span {
  white-space: normal;
}

.hero-pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 10px 22px;
  color: var(--sand);
  border: 1px solid rgba(181, 155, 104, 0.24);
  border-radius: 999px;
  background: rgba(15, 26, 42, 0.42);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-pill span,
.hero-featured strong span {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 999px;
  background: var(--sand);
}

.hero-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 650;
  line-height: 1.58;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-cta {
  min-height: 56px;
  padding: 0 28px;
  gap: 0;
  color: var(--charcoal);
  background: var(--sand);
  border-radius: 999px;
}

.hero-home .hero-cta {
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-cta:hover {
  background: var(--sand-soft);
}

.hero-cta-secondary {
  min-height: 56px;
  padding: 0 26px;
  border-color: rgba(246, 241, 232, 0.42);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(15, 26, 42, 0.2);
  font-size: 1rem;
  font-weight: 700;
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
  border-color: rgba(181, 155, 104, 0.72);
  background: rgba(181, 155, 104, 0.1);
}

.hero-cta svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  stroke-width: 2.4;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section-dark .eyebrow {
  color: var(--bronze);
}

.hero-featured {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 76px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 178px repeat(5, minmax(105px, 1fr));
  gap: 30px;
  align-items: center;
  color: rgba(246, 241, 232, 0.38);
  font-size: 1.38rem;
  font-weight: 800;
}

.hero-featured strong {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--white);
  background: rgba(15, 26, 42, 0.68);
  border-radius: 8px;
  font-size: 1.05rem;
  white-space: nowrap;
}

.home-hero-stats {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 34px;
  display: grid;
  width: min(1080px, calc(100% - 40px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 241, 232, 0.2);
  transform: translateX(-50%);
}

.home-hero-stats div {
  min-width: 0;
}

.home-hero-stats strong {
  display: block;
  color: var(--sand);
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 0.95;
}

.home-hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(246, 241, 232, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-strip {
  background: var(--ink);
  color: var(--white);
}

.strip-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(246, 241, 232, 0.76);
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

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

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

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2,
.split h2,
.contact-band h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  font-size: 2.5rem;
  font-weight: 700;
}

.section-heading p,
.split p,
.contact-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-heading p,
.section-dark .contact-band p {
  color: rgba(246, 241, 232, 0.72);
}

.row-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.service-grid,
.process-grid,
.testimonial-grid,
.values-grid,
.team-grid,
.blog-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}

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

.service-card,
.process-step,
.testimonial-card,
.values-grid article,
.team-card,
.blog-card,
.rich-panel,
.side-panel,
.contact-info article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 286px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.service-grid.large .service-card {
  min-height: 310px;
}

.service-card svg {
  width: 38px;
  height: 38px;
  color: var(--wine);
  margin-bottom: 28px;
}

.service-card h2,
.service-card h3,
.process-step h3,
.values-grid h3,
.team-card h2,
.blog-card h2,
.blog-card h3,
.side-panel h2,
.contact-info h2,
.rich-panel h2 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card h2,
.service-card h3 {
  font-size: 1.35rem;
}

.service-card p {
  color: var(--muted);
  margin: 14px 0 24px;
}

.service-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.portrait-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.portrait-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-stack img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

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

.process-step {
  padding: 30px;
  background: var(--paper);
}

.process-step span {
  display: inline-block;
  color: var(--wine);
  font-weight: 800;
  margin-bottom: 52px;
  font-size: 1.05rem;
}

.process-step p,
.values-grid p,
.team-card span,
.blog-card p,
.article-body p,
.article-body li,
.rich-panel li,
.rich-panel p,
.side-panel p,
.contact-info p,
.form-note {
  color: var(--muted);
}

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

.faq-list details {
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: 8px;
  padding: 22px 24px;
  background: rgba(246, 241, 232, 0.05);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-list p {
  color: rgba(246, 241, 232, 0.74);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card > p {
  margin: 0 0 28px;
  font-size: 1.05rem;
}

.testimonial-card div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.testimonial-card img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card span {
  display: grid;
  line-height: 1.3;
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonial-card strong {
  color: var(--ink);
}

.contact-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.contact-band > div {
  max-width: 720px;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid.compact .blog-card {
  min-height: 236px;
}

.blog-card a {
  min-height: 100%;
  display: block;
  padding: 28px;
}

.blog-card span {
  display: inline-block;
  color: var(--wine);
  font-weight: 700;
  margin-bottom: 44px;
}

.blog-card h2,
.blog-card h3 {
  font-size: 1.35rem;
}

.blog-card.featured {
  grid-column: span 2;
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.blog-card.featured span,
.blog-card.featured p {
  color: rgba(246, 241, 232, 0.72);
}

.page-hero {
  padding: 86px 0;
  background: var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.page-hero p,
.article-hero p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid div {
  padding: 26px;
  border-left: 3px solid var(--teal);
  background: var(--paper);
}

.stats-grid strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}

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

.rich-text p {
  margin-top: 0;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.values-grid article {
  padding: 28px;
}

.values-grid svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
  margin-bottom: 30px;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.team-card div {
  padding: 22px;
}

.team-card p {
  margin: 6px 0 10px;
  color: var(--wine);
  font-weight: 700;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.rich-panel,
.side-panel {
  padding: 32px;
}

.rich-panel ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.side-panel {
  position: sticky;
  top: 126px;
}

.article-hero {
  padding: 92px 0 48px;
  background: var(--paper);
}

.article-body {
  font-size: 1.08rem;
}

.article-body h2 {
  margin: 36px 0 10px;
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info article {
  padding: 24px;
}

.contact-info svg {
  color: var(--wine);
  margin-bottom: 18px;
}

.contact-info h2 {
  font-size: 1.2rem;
}

.contact-info a {
  color: var(--teal);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  color: var(--white);
  background: var(--navy);
  padding: 64px 0 24px;
}

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

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

.footer p,
.footer span,
.footer a {
  color: rgba(246, 241, 232, 0.72);
}

.footer h2 {
  margin: 0 0 16px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-grid div {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 42px;
  border-top: 1px solid rgba(246, 241, 232, 0.12);
  font-size: 0.92rem;
}

.footer-bottom span {
  margin-right: auto;
}

.footer-bottom a {
  display: inline-flex;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 920px) {
  body.nav-menu-open {
    overflow: hidden;
  }

  body.nav-menu-open .site-header {
    transform: none;
    will-change: auto;
  }

  .navbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: grid;
    align-content: start;
    justify-content: start;
    justify-items: start;
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    bottom: 0;
    gap: 14px;
    padding: 28px 18px 42px;
    color: rgba(246, 241, 232, 0.88);
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(90deg, rgba(15, 26, 42, 0.96) 0%, rgba(15, 26, 42, 0.88) 58%, rgba(15, 26, 42, 0.92) 100%),
      url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1400&q=80") center / cover;
    box-shadow: none;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    transition:
      clip-path 320ms cubic-bezier(0.55, 0, 0.2, 1),
      opacity 220ms ease,
      visibility 0s linear 320ms;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
    transition:
      clip-path 860ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 520ms ease,
      visibility 0s linear 0s;
  }

  .nav-links.is-open a {
    width: max-content;
    padding: 0;
    color: inherit;
    font-size: 1.22rem;
    line-height: 1.08;
  }

  .nav-links.is-open a.active,
  .nav-links.is-open .nav-dropdown.is-active .nav-dropdown-trigger {
    color: var(--sand);
  }

  .nav-links.is-open .nav-dropdown {
    display: grid;
    justify-items: start;
    gap: 16px;
  }

  .nav-links.is-open .nav-dropdown::after {
    display: none;
  }

  .nav-links.is-open .nav-dropdown-trigger {
    width: max-content;
    padding: 0;
    color: inherit;
    font-size: 1.22rem;
    line-height: 1.08;
  }

  .nav-links.is-open .nav-chevron {
    width: 34px;
    height: 34px;
    margin-left: 6px;
    border-radius: 4px;
    background: rgba(181, 155, 104, 0.1);
  }

  .nav-links.is-open .nav-dropdown .nav-chevron::before,
  .nav-links.is-open .nav-dropdown:hover .nav-chevron::before,
  .nav-links.is-open .nav-dropdown:focus-within .nav-chevron::before {
    transform: translateY(-2px) rotate(45deg);
  }

  .nav-links.is-open .nav-dropdown.is-open .nav-chevron::before {
    transform: translateY(1px) rotate(225deg);
  }

  .nav-links.is-open .nav-dropdown-panel {
    display: none;
    position: static;
    width: min(100%, 286px);
    margin: -4px 0 4px 40px;
    border: 0;
    border-radius: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    box-shadow: none;
  }

  .nav-links.is-open .nav-dropdown.is-open .nav-dropdown-panel {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links.is-open .nav-dropdown-group strong,
  .nav-links.is-open .nav-dropdown-heading {
    padding: 0 0 8px;
    font-size: 1.06rem;
  }

  .nav-links.is-open .nav-dropdown-panel a {
    width: 100%;
    padding: 8px 0;
    color: rgba(246, 241, 232, 0.7);
    font-size: 1rem;
  }

  .nav-links.is-open .nav-dropdown-panel .nav-dropdown-heading {
    padding: 0 0 8px;
    border-top: 0;
    color: var(--sand);
  }

  .nav-links.is-open .nav-dropdown-panel .nav-dropdown-group + .nav-dropdown-group .nav-dropdown-heading {
    border-top: 0;
  }

  .nav-links.is-open .nav-dropdown-panel .nav-dropdown-group + .nav-dropdown-group {
    padding-top: 18px;
  }

  .hero {
    min-height: calc(100vh - 64px);
  }

  .hero-featured {
    grid-template-columns: 148px repeat(5, minmax(72px, 1fr));
    bottom: 34px;
    gap: 16px;
    font-size: 1rem;
  }

  .hero-featured strong {
    min-height: 44px;
    font-size: 1rem;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: 2.8rem;
  }

  .home-hero-stats {
    bottom: 28px;
    gap: 18px;
  }

  .service-grid,
  .process-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid,
  .blog-grid,
  .stats-grid,
  .page-hero-grid,
  .split,
  .detail-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card.featured {
    grid-column: span 1;
  }

  .detail-grid,
  .contact-grid,
  .page-hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow,
  .navbar {
    width: min(100% - 28px, 1120px);
  }

  .topbar {
    display: none;
  }

  .topbar a:nth-child(2) {
    display: none;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: 2rem;
    overflow-wrap: break-word;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-content {
    padding: 74px 0 210px;
  }

  .hero-pill {
    margin-bottom: 20px;
    padding: 8px 16px;
  }

  .hero-featured {
    grid-template-columns: 1fr 1fr;
    bottom: 24px;
    font-size: 0.88rem;
  }

  .hero-featured strong {
    grid-column: 1 / -1;
  }

  .section-heading h2,
  .split h2,
  .contact-band h2 {
    font-size: 2rem;
  }

  .section,
  .page-hero {
    padding: 64px 0;
  }

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

  .strip-inner {
    justify-content: flex-start;
  }

  .service-grid,
  .process-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid,
  .blog-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-band,
  .row-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .portrait-stack {
    grid-template-columns: 1fr;
  }

  .portrait-stack img:first-child {
    grid-row: auto;
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

.contact-main {
  color: var(--ivory);
  background: var(--navy);
}

.contact-reference-hero {
  padding: 96px 0 54px;
  text-align: center;
  background: var(--navy);
}

.contact-reference-heading {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.contact-main .framer-pill {
  margin-bottom: 30px;
  letter-spacing: 0;
}

.contact-reference-heading h1,
.contact-reference-info h2 {
  width: min(100%, 790px);
  max-width: 790px;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(1.9rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.contact-reference-heading h1 span,
.contact-reference-info h2 span {
  display: block;
  color: rgba(246, 241, 232, 0.62);
}

.contact-reference-heading p:last-child {
  max-width: 1220px;
  margin: 16px auto 0;
  color: rgba(246, 241, 232, 0.58);
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.5;
}

.contact-reference-heading p:last-child span {
  display: block;
  white-space: nowrap;
}

.contact-reference-section {
  padding: 0 0 68px;
  background: var(--navy);
}

.contact-reference-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 40px 30px;
  padding: 40px;
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: 18px;
  background: var(--navy-soft);
}

.contact-reference-info {
  min-width: 0;
}

.contact-reference-info h2 {
  width: min(100%, 540px);
  max-width: 540px;
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2vw, 1.6rem);
}

.contact-reference-detail {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
}

.contact-reference-detail > div {
  min-width: 0;
}

.contact-reference-detail:last-child {
  border-bottom: 0;
}

.contact-reference-detail > svg,
.contact-reference-detail > i svg {
  width: 17px;
  height: 17px;
  align-self: start;
  margin-top: 27px;
  color: var(--sand);
}

.contact-reference-detail span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-reference-detail strong {
  min-height: 17px;
  display: block;
  color: var(--ivory);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.contact-reference-detail a {
  color: var(--ivory);
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 4px;
}

.contact-reference-detail a svg {
  width: 15px;
  height: 15px;
  color: var(--sand);
}

.contact-reference-map {
  min-height: 456px;
  overflow: hidden;
  align-self: start;
  border-radius: 16px;
  border: 1px solid rgba(181, 155, 104, 0.22);
  background:
    radial-gradient(circle at 51% 51%, var(--bronze) 0 9px, rgba(181, 155, 104, 0.25) 10px 15px, transparent 16px),
    linear-gradient(118deg, transparent 0 37%, rgba(232, 229, 223, 0.9) 37.4% 41%, transparent 41.4%),
    linear-gradient(100deg, transparent 0 52%, rgba(232, 229, 223, 0.72) 52.3% 56%, transparent 56.4%),
    linear-gradient(146deg, transparent 0 45%, var(--ivory) 45.4% 48.6%, transparent 49%),
    linear-gradient(32deg, transparent 0 42%, var(--ivory) 42.3% 45.5%, transparent 46%),
    linear-gradient(76deg, transparent 0 62%, var(--soft-gray) 62.2% 64.5%, transparent 65%),
    var(--ivory);
}

.contact-reference-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.contact-reference-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  background: var(--navy-soft);
}

.contact-reference-form label {
  display: grid;
  gap: 7px;
  color: rgba(246, 241, 232, 0.54);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-reference-form input,
.contact-reference-form select,
.contact-reference-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(246, 241, 232, 0.08);
  border-radius: 6px;
  color: var(--ivory);
  background: rgba(246, 241, 232, 0.08);
  padding: 11px 12px;
  outline: none;
}

.contact-reference-form input::placeholder {
  color: rgba(246, 241, 232, 0.46);
}

.contact-reference-form select option,
.framer-form select option {
  color: var(--charcoal);
  background: var(--ivory);
}

.contact-reference-form textarea {
  min-height: 247px;
  resize: vertical;
}

.contact-reference-form input:focus,
.contact-reference-form select:focus,
.contact-reference-form textarea:focus {
  border-color: rgba(181, 155, 104, 0.74);
  box-shadow: 0 0 0 3px rgba(181, 155, 104, 0.12);
}

.contact-reference-submit {
  width: min(100%, 260px);
  justify-self: center;
  min-height: 41px;
  margin-top: 30px;
  border: 0;
  border-radius: 9px;
  color: var(--navy);
  background: var(--sand);
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.contact-reference-submit:hover,
.contact-reference-submit:focus-visible {
  background: var(--sand-soft);
}

.contact-reference-form .form-note {
  min-height: 1.2rem;
  margin: 0;
  color: rgba(246, 241, 232, 0.58);
}

@media (max-width: 920px) {
  .contact-reference-hero {
    padding: 84px 0 44px;
  }

  .contact-reference-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-reference-map {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .contact-reference-hero {
    padding: 66px 0 36px;
  }

  .contact-main .framer-pill {
    margin-bottom: 24px;
  }

  .contact-reference-heading h1 {
    width: min(280px, calc(100vw - 64px));
    max-width: min(280px, calc(100vw - 64px));
    font-size: clamp(1.62rem, 8vw, 1.9rem);
    line-height: 1.24;
  }

  .contact-reference-info h2 {
    width: min(312px, calc(100vw - 48px));
    max-width: min(312px, calc(100vw - 48px));
    font-size: clamp(1.62rem, 8vw, 1.9rem);
    line-height: 1.24;
  }

  .contact-reference-heading p:last-child {
    width: min(390px, calc(100vw - 40px));
    max-width: min(390px, calc(100vw - 40px));
    margin-top: 0;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .contact-reference-heading p:last-child span {
    display: inline;
    white-space: normal;
  }

  .contact-reference-heading p:last-child span + span::before {
    content: " ";
  }

  .contact-reference-section {
    padding-bottom: 52px;
  }

  .contact-reference-card {
    width: min(1080px, calc(100% - 28px));
    max-width: calc(100vw - 28px);
    gap: 28px;
    padding: 22px;
    border-radius: 12px;
    overflow: hidden;
  }

  .contact-reference-card .contact-reference-info > .framer-pill {
    display: none;
  }

  .contact-reference-info,
  .contact-reference-map,
  .contact-reference-form {
    min-width: 0;
    max-width: 100%;
  }

  .contact-reference-detail {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .contact-reference-detail strong {
    max-width: min(270px, calc(100vw - 110px));
    font-size: 0.98rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .contact-reference-map {
    min-height: 300px;
    border-radius: 10px;
  }

  .contact-reference-form {
    padding: 14px;
  }

  .contact-reference-form textarea {
    min-height: 186px;
  }

  .contact-reference-submit {
    margin-top: 22px;
  }
}

.home-page {
  background: var(--navy);
  color: var(--ivory);
}

.home-page main {
  background: var(--navy);
}

.home-page .hero {
  min-height: 100vh;
  margin-top: -64px;
}

.home-page .hero-content {
  padding: 160px 0 210px;
  transform: none;
}

.home-section {
  padding: 118px 0;
  color: var(--ivory);
  background: var(--navy);
}

.home-section-heading {
  max-width: 740px;
  margin-bottom: 72px;
}

.home-section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.home-section h2,
.faq-framer-grid h2,
.contact-panel-info h2 {
  margin: 0;
  color: var(--ivory);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.heading-muted {
  color: rgba(246, 241, 232, 0.68);
}

.heading-nowrap {
  white-space: nowrap;
}

.home-section-heading h2 .heading-muted,
.faq-framer-grid h2 .heading-muted {
  display: block;
}

.home-section-heading h2 .heading-muted.heading-nowrap {
  display: inline;
}

.home-services {
  padding-top: 92px;
}

.home-services .home-section-heading {
  max-width: 650px;
  margin-bottom: 72px;
}

.home-services h2 {
  line-height: 1.22;
}

.home-services h2 span {
  display: block;
  color: rgba(246, 241, 232, 0.68);
}

.framer-pill.framer-pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  padding: 10px 20px;
  color: var(--sand);
  border: 1px solid rgba(181, 155, 104, 0.26);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.03);
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.framer-pill.framer-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sand);
}

.service-catalog {
  display: grid;
  gap: 74px;
}

.service-family {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 500px);
  gap: 80px;
  align-items: start;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(246, 241, 232, 0.08);
}

.service-family:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-family-copy h3 {
  margin: 0 0 6px;
  color: var(--sand);
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.service-family-copy p {
  max-width: 500px;
  margin: 0 0 24px;
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-family-copy a,
.service-link-list a,
.contact-panel-info a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ivory);
  font-weight: 700;
}

.service-family-copy a,
.service-link-list a {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.service-family-copy svg,
.service-link-list svg,
.contact-panel-info a svg {
  width: 17px;
  height: 17px;
  color: var(--sand);
}

.service-link-list {
  position: relative;
  z-index: 1;
  display: grid;
}

.service-link-list a {
  justify-content: flex-start;
  gap: 8px;
  min-height: 57px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.09);
  color: rgba(246, 241, 232, 0.96);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color 160ms ease;
}

.service-link-list a:hover,
.service-link-list a:focus-visible,
.service-link-list a.is-preview-active {
  color: var(--white);
}

.service-link-list a svg {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.service-link-list a:hover svg,
.service-link-list a:focus-visible svg,
.service-link-list a.is-preview-active svg {
  transform: translate(2px, -2px);
}

.service-hover-preview {
  position: absolute;
  z-index: 2;
  right: 4px;
  top: var(--preview-y, 92px);
  width: min(250px, 46%);
  aspect-ratio: 1.22;
  overflow: hidden;
  pointer-events: none;
  border-radius: 18px;
  background: rgba(246, 241, 232, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) rotate(13deg) scale(0.92);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 220ms ease,
    top 180ms ease;
}

.service-hover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.94) saturate(0.9);
}

.service-family.is-preview-visible .service-hover-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) rotate(13deg) scale(1);
}

.home-team {
  padding-top: 90px;
}

.home-team .home-section-heading {
  max-width: 920px;
}

.home-team .home-section-heading h2 {
  white-space: normal;
}

.home-profile {
  padding: 112px 0;
}

.home-profile-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 72px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.home-profile-copy {
  min-width: 0;
}

.home-profile-copy .framer-pill.framer-pill {
  margin-bottom: 28px;
}

.home-profile-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  text-align: left;
  text-wrap: balance;
}

.home-profile-copy h2 span {
  display: block;
  margin-top: 8px;
  color: var(--charcoal);
}

.home-profile-copy > p:not(.framer-pill) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(35, 35, 35, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

.profile-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 28px 0 0;
}

.home-profile-roles {
  max-width: 650px;
  margin-top: 30px;
}

.profile-role-card {
  min-width: 0;
  min-height: 112px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.profile-role-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--bronze);
}

.profile-role-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.75;
}

.profile-role-logo img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.profile-role-card div {
  display: grid;
  gap: 7px;
}

.profile-role-card strong,
.profile-page-roles .profile-role-card strong,
.home-profile-roles .profile-role-card strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.profile-role-card small,
.profile-page-roles .profile-role-card small,
.home-profile-roles .profile-role-card small {
  color: rgba(35, 35, 35, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.home-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin-top: 32px;
  border-top: 1px solid rgba(35, 35, 35, 0.1);
  border-bottom: 1px solid rgba(35, 35, 35, 0.1);
}

.home-profile-stats div {
  min-width: 0;
  padding: 22px 18px 20px 0;
}

.home-profile-stats div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(35, 35, 35, 0.1);
}

.home-profile-stats strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1;
}

.home-profile-stats span {
  display: block;
  margin-top: 8px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-profile-list {
  display: grid;
  gap: 10px;
  max-width: 650px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--charcoal);
}

.home-profile-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.55;
}

.home-profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bronze);
}

.home-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.home-profile-actions .about-framer-button {
  margin-top: 0;
}

.home-profile-link {
  color: var(--navy);
  border-bottom: 1px solid rgba(15, 26, 42, 0.34);
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease;
}

.home-profile-link:hover,
.home-profile-link:focus-visible {
  color: var(--bronze);
  border-bottom-color: currentColor;
}

.home-profile-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 8px;
  background: var(--soft-gray);
}

.home-profile-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.02);
}

.home-profile-media figcaption {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border-top: 1px solid rgba(15, 26, 42, 0.08);
}

.home-profile-media strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.25;
}

.home-profile-media span {
  color: rgba(35, 35, 35, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.attorney-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.attorney-card {
  min-width: 0;
  padding: 10px 10px 14px;
  background: var(--navy-soft);
}

.attorney-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.86);
}

.attorney-image-link {
  display: block;
  overflow: hidden;
  color: inherit;
}

.attorney-image-link:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

.attorney-image-link img {
  transition: transform 260ms ease, filter 260ms ease;
}

.attorney-image-link:hover img,
.attorney-image-link:focus-visible img {
  filter: brightness(0.82) saturate(0.94);
  transform: scale(1.035);
}

.attorney-card img.attorney-photo-beatriz {
  object-position: 82% center;
}

.attorney-card h3 {
  margin: 18px 0 2px;
  color: var(--sand);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.attorney-card p {
  margin: 0;
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.86rem;
}

.timeline-list {
  width: min(620px, calc(100% - 40px));
  display: grid;
  gap: 0;
}

.timeline-list article {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0;
  min-height: 142px;
}

.timeline-list article:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 78px;
  bottom: -18px;
  width: 1px;
  background: rgba(246, 241, 232, 0.18);
}

.timeline-icon {
  width: 80px;
  height: 80px;
  display: inline-grid;
  place-items: center;
  color: var(--sand);
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.06);
}

.timeline-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.timeline-list h3 {
  margin: 4px 0 6px;
  color: var(--ivory);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.timeline-list p {
  max-width: 470px;
  margin: 0;
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-framer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(420px, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.faq-framer-grid > div:first-child {
  padding-top: 30px;
}

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

.faq-framer-list details {
  border-radius: 8px;
  background: var(--navy-soft);
  overflow: hidden;
}

.faq-framer-list details.is-animating {
  transition: height 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-framer-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: var(--ivory);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.faq-framer-list summary span {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: var(--sand);
  transition: background 560ms ease;
}

.faq-framer-list details[open]:not(.is-closing) summary span {
  background: var(--ivory);
}

.faq-framer-list summary svg {
  width: 18px;
  height: 18px;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-framer-list details[open]:not(.is-closing) summary svg {
  transform: rotate(180deg);
}

.faq-framer-list p {
  margin: -6px 24px 22px 64px;
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 650ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-framer-list details[open]:not(.is-closing):not(.is-preparing) p {
  opacity: 1;
  transform: translateY(0);
}

.home-testimonials {
  overflow: hidden;
}

.home-testimonials .home-section-heading {
  max-width: 690px;
  margin-bottom: 60px;
}

.home-testimonials h2 span {
  display: block;
  color: rgba(246, 241, 232, 0.68);
}

.testimonial-shell {
  position: relative;
}

.testimonial-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: -1px;
  bottom: 38px;
  width: 220px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(15, 26, 42, 0), var(--navy) 78%);
  opacity: 0;
  transition: opacity 160ms ease;
}

.testimonial-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: -1px;
  bottom: 38px;
  width: 220px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--navy) 22%, rgba(15, 26, 42, 0));
  opacity: 0;
  transition: opacity 160ms ease;
}

.testimonial-shell.has-scroll-left::before,
.testimonial-shell.has-scroll-right::after {
  opacity: 1;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.dark-testimonial {
  min-height: 374px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 20px;
  border-radius: 8px;
  background: var(--navy-soft);
  scroll-snap-align: start;
}

.testimonial-stars {
  display: flex;
  gap: 7px;
}

.testimonial-stars span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--sand);
  border-radius: 4px;
  background: var(--navy-soft);
  font-size: 0.76rem;
  line-height: 1;
}

.dark-testimonial p {
  margin: 0;
  color: rgba(246, 241, 232, 0.92);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: 0;
}

.dark-testimonial footer {
  display: flex;
  gap: 12px;
  align-items: center;
  align-self: end;
}

.dark-testimonial img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.9);
}

.dark-testimonial footer span {
  display: grid;
  color: rgba(246, 241, 232, 0.46);
  font-size: 0.78rem;
  line-height: 1.25;
}

.dark-testimonial strong {
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.86rem;
}

.testimonial-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: var(--navy);
  background: var(--sand);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.testimonial-prev {
  left: 58px;
}

.testimonial-next {
  right: 58px;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  background: var(--sand-soft);
  transform: translateY(-50%) scale(1.03);
}

.testimonial-nav:disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
  transform: translateY(-50%);
}

.testimonial-nav:disabled:hover,
.testimonial-nav:disabled:focus-visible {
  background: var(--sand);
  transform: translateY(-50%);
}

.testimonial-nav svg {
  width: 21px;
  height: 21px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.22);
}

.testimonial-dots span.is-active {
  background: var(--ivory);
}

.contact-panel-framer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 40px;
  padding: 40px;
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: 18px;
  background: var(--navy-soft);
}

.contact-panel-info h2 {
  max-width: 430px;
  margin-bottom: 28px;
}

.contact-panel-info h2 .heading-muted {
  display: block;
}

.contact-panel-info article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid rgba(246, 241, 232, 0.1);
}

.contact-panel-info article > svg,
.contact-panel-info article > i svg {
  width: 18px;
  height: 18px;
  align-self: start;
  margin-top: 27px;
  color: var(--sand);
}

.contact-panel-info article.contact-panel-detail-centered {
  align-items: start;
}

.contact-panel-info article.contact-panel-detail-centered > svg,
.contact-panel-info article.contact-panel-detail-centered > i svg {
  align-self: start;
  margin-top: 27px;
  margin-bottom: 0;
}

.contact-panel-info article span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-panel-info article strong {
  min-height: 18px;
  display: block;
  margin-bottom: 6px;
  color: var(--ivory);
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.35;
}

.contact-panel-info article strong:last-child,
.contact-reference-detail strong:last-child {
  margin-bottom: 0;
}

.contact-panel-info article strong a[href^="tel:"],
.contact-reference-detail strong a[href^="tel:"] {
  text-decoration: none;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-panel-info article strong a[href^="mailto:"],
.contact-reference-detail strong a[href^="mailto:"] {
  text-decoration: none;
}

.contact-panel-info article strong a[href^="https://maps.app.goo.gl"]:hover,
.contact-panel-info article strong a[href^="https://maps.app.goo.gl"]:focus,
.contact-panel-info article strong a[href^="https://maps.app.goo.gl"]:focus-visible,
.contact-panel-info article strong a[href^="https://maps.app.goo.gl"]:active,
.contact-panel-info article strong a[href^="tel:"]:hover,
.contact-panel-info article strong a[href^="tel:"]:focus,
.contact-panel-info article strong a[href^="tel:"]:focus-visible,
.contact-panel-info article strong a[href^="tel:"]:active,
.contact-panel-info article strong a[href^="mailto:"]:hover,
.contact-panel-info article strong a[href^="mailto:"]:focus,
.contact-panel-info article strong a[href^="mailto:"]:focus-visible,
.contact-panel-info article strong a[href^="mailto:"]:active,
.contact-reference-detail strong a[href^="https://maps.app.goo.gl"]:hover,
.contact-reference-detail strong a[href^="https://maps.app.goo.gl"]:focus,
.contact-reference-detail strong a[href^="https://maps.app.goo.gl"]:focus-visible,
.contact-reference-detail strong a[href^="https://maps.app.goo.gl"]:active,
.contact-reference-detail strong a[href^="tel:"]:hover,
.contact-reference-detail strong a[href^="tel:"]:focus,
.contact-reference-detail strong a[href^="tel:"]:focus-visible,
.contact-reference-detail strong a[href^="tel:"]:active,
.contact-reference-detail strong a[href^="mailto:"]:hover,
.contact-reference-detail strong a[href^="mailto:"]:focus,
.contact-reference-detail strong a[href^="mailto:"]:focus-visible {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-reference-detail strong a[href^="mailto:"]:active {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-panel-map {
  min-height: 260px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(181, 155, 104, 0.22);
  border-radius: 12px;
  background: var(--ivory);
}

.contact-panel-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.framer-form {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 8px;
  background: var(--navy-soft);
}

.framer-form label {
  display: grid;
  gap: 6px;
  color: rgba(246, 241, 232, 0.52);
  font-size: 0.84rem;
  font-weight: 700;
}

.framer-form input,
.framer-form select,
.framer-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(246, 241, 232, 0.06);
  border-radius: 6px;
  color: var(--ivory);
  background: rgba(246, 241, 232, 0.08);
  padding: 11px 12px;
}

.framer-form textarea {
  min-height: 152px;
  resize: vertical;
}

.framer-form button {
  width: min(100%, 260px);
  justify-self: center;
  align-self: center;
  min-height: 44px;
  margin-top: 30px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.home-blog {
  padding-top: 96px;
}

.blog-framer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.blog-framer-card {
  min-width: 0;
  padding: 20px;
  border-radius: 8px;
  background: var(--navy-soft);
}

.blog-framer-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border-radius: 6px;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.86);
}

.blog-framer-card div {
  padding-top: 20px;
}

.blog-framer-card p {
  margin: 0 0 12px;
  color: rgba(246, 241, 232, 0.56);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-framer-card h3 {
  margin: 0;
  color: var(--ivory);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.explore-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.home-news-framer {
  position: relative;
  overflow: hidden;
  padding: 112px 0 126px;
  color: var(--charcoal);
  background: var(--ivory);
}

.home-news-framer::before {
  content: none;
}

.home-news-heading,
.home-news-grid,
.home-news-actions {
  position: relative;
  z-index: 1;
}

.home-news-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 64px;
  text-align: center;
}

.home-news-framer .framer-pill.framer-pill {
  margin-bottom: 34px;
  color: var(--bronze-text);
  border-color: rgba(181, 155, 104, 0.32);
  background: transparent;
}

.home-news-framer .framer-pill.framer-pill span {
  background: currentColor;
}

.home-news-heading h2 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.home-news-heading h2 span {
  display: block;
  color: var(--charcoal);
}

.home-news-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-height: 535px;
  overflow: hidden;
  padding-bottom: 6px;
}

.home-news-grid::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 185px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(246, 241, 232, 0), var(--ivory) 78%);
}

.home-news-card {
  min-width: 0;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 8px;
  background: var(--soft-gray);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.home-news-card:hover,
.home-news-card:focus-visible {
  border-color: rgba(181, 155, 104, 0.42);
  background: rgba(232, 229, 223, 0.72);
  transform: translateY(-2px);
}

.home-news-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.home-news-card .home-news-portrait {
  object-position: center 18%;
}

.home-news-card div {
  padding-top: 20px;
}

.home-news-card p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: rgba(35, 35, 35, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.home-news-card p span:first-child {
  color: var(--bronze-text);
}

.home-news-card p span[aria-hidden="true"] {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--bronze-text);
}

.home-news-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: clamp(1.12rem, 1.7vw, 1.28rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.home-news-actions {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: -112px;
}

.home-news-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 13px;
  padding: 7px 8px 7px 22px;
  color: var(--navy);
  border-radius: 999px;
  background: var(--bronze);
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.home-news-button:hover,
.home-news-button:focus-visible {
  background: var(--sand-soft);
  transform: translateY(-1px);
}

.home-news-button svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--ivory);
  border-radius: 999px;
  background: var(--navy);
}

.home-footer {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: var(--charcoal);
  padding: 70px 0 72px;
}

.footer-giant {
  color: rgba(181, 155, 104, 0.14);
  font-size: clamp(5rem, 14vw, 12.5rem);
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
}

.footer-badges {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  margin-top: -58px;
  margin-bottom: 74px;
  pointer-events: none;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--sand);
  background: rgba(246, 241, 232, 0.08);
  border: 1px solid rgba(181, 155, 104, 0.22);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.83rem;
}

.footer-badges svg {
  width: 18px;
  height: 18px;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  padding-top: 26px;
}

.home-footer h2 {
  margin: 0 0 22px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.15;
  text-transform: uppercase;
}

.home-footer-grid div {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
}

.home-footer a,
.home-footer span {
  color: rgba(246, 241, 232, 0.84);
  font-weight: 600;
}

.home-footer a {
  text-decoration: none;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.home-footer a:hover,
.home-footer a:focus,
.home-footer a:focus-visible,
.home-footer a:active {
  color: var(--ivory);
  text-decoration-line: underline;
}

.footer-grid a,
.home-footer-grid a,
.footer-bottom a {
  width: fit-content;
}

.home-footer .footer-badges span {
  color: var(--sand);
}

.home-footer .footer-bottom {
  border-top: 2px solid rgba(246, 241, 232, 0.14);
}

@media (max-width: 920px) {
  .navbar {
    width: min(1080px, calc(100% - 32px));
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    flex: 0 0 44px;
    position: fixed;
    top: 10px;
    right: max(16px, calc(100vw - 414px));
    z-index: 80;
    background: transparent;
  }

  .home-section {
    padding: 88px 0;
  }

  .home-section h2,
  .faq-framer-grid h2,
  .contact-panel-info h2 {
    font-size: 1.9rem;
  }

  .home-team .home-section-heading h2 {
    white-space: normal;
  }

  .home-services .home-section-heading {
    margin-bottom: 58px;
  }

  .service-family,
  .faq-framer-grid,
  .contact-panel-framer {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-hover-preview {
    display: none;
  }

  .attorney-grid,
  .blog-framer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-shell::after {
    width: 150px;
  }

  .testimonial-shell::before {
    width: 150px;
  }

  .testimonial-track {
    grid-auto-columns: minmax(280px, 42vw);
  }

  .testimonial-next {
    right: 34px;
  }

  .testimonial-prev {
    left: 34px;
  }

  .dark-testimonial {
    min-height: 350px;
  }

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

@media (max-width: 640px) {
  .heading-nowrap {
    white-space: normal;
  }

  .container,
  .narrow,
  .navbar {
    width: min(1120px, calc(100% - 28px));
  }

  .home-page .hero {
    min-height: 100svh;
  }

  .home-page .hero-media img {
    object-position: 58% center;
    filter: saturate(0.95) contrast(1.02) brightness(1.06);
  }

  .hero-home h1 {
    max-width: 350px;
    font-size: clamp(1.72rem, 7.9vw, 2.08rem);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .hero-content {
    transform: none;
  }

  .home-page .hero-content {
    width: min(100% - 28px, 402px);
    padding: calc(clamp(180px, 28svh, 228px) + 64px) 0 22px;
    transform: translateY(clamp(28px, 5svh, 46px));
  }

  .hero-copy {
    max-width: 348px;
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .hero-home h1 span,
  .hero-copy span {
    display: inline;
  }

  .hero-home h1 span {
    white-space: normal;
  }

  .hero-home h1 span + span::before,
  .hero-copy span + span::before {
    content: " ";
  }

  .hero-cta,
  .hero-cta-secondary {
    width: 100%;
    max-width: 348px;
    min-height: 50px;
    justify-content: center;
  }

  .home-hero-stats {
    position: relative;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.3fr);
    gap: 6px;
    margin: 0;
    padding: 18px 14px 52px;
    transform: none;
  }

  .home-hero-stats div {
    min-width: 0;
    text-align: left;
  }

  .home-hero-stats div:nth-child(2) {
    text-align: center;
  }

  .home-hero-stats div:nth-child(3) {
    text-align: right;
  }

  .home-hero-stats strong {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .home-hero-stats span {
    font-size: 0.52rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }

  .home-section {
    padding: 70px 0;
  }

  .home-services {
    padding-top: 70px;
  }

  .home-section-heading {
    margin-bottom: 42px;
  }

  .home-services .home-section-heading {
    max-width: 360px;
    margin-bottom: 50px;
  }

  .home-section h2,
  .faq-framer-grid h2,
  .contact-panel-info h2 {
    font-size: 1.72rem;
  }

  .home-testimonials .home-section-heading {
    max-width: 360px;
    margin-bottom: 38px;
  }

  .testimonial-shell {
    width: 100%;
  }

  .testimonial-shell::after {
    bottom: 34px;
    width: 84px;
  }

  .testimonial-shell::before {
    bottom: 34px;
    width: 84px;
  }

  .testimonial-track {
    grid-auto-columns: minmax(260px, 84%);
    padding-inline: 14px 72px;
  }

  .dark-testimonial {
    min-height: 330px;
    padding: 18px;
  }

  .dark-testimonial p {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .testimonial-next {
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .testimonial-prev {
    left: 14px;
    width: 40px;
    height: 40px;
  }

  .home-section.home-services h2 {
    font-size: 1.48rem;
    line-height: 1.2;
  }

  .service-catalog {
    gap: 58px;
  }

  .framer-pill {
    padding: 9px 16px;
    white-space: normal;
  }

  .service-family {
    gap: 30px;
    padding-bottom: 64px;
    border-bottom: 0;
  }

  .service-family-copy h3 {
    font-size: 1.55rem;
  }

  .service-family-copy p {
    max-width: none;
    font-size: 0.94rem;
  }

  .service-link-list a {
    gap: 8px;
    min-height: 57px;
    font-size: 1rem;
  }

  .attorney-grid,
  .blog-framer-grid,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-footer {
    text-align: center;
  }

  .home-footer-grid {
    justify-items: center;
  }

  .home-footer-grid div {
    justify-items: center;
  }

  .home-footer-grid a,
  .home-footer .footer-bottom a {
    margin-inline: auto;
  }

  .home-footer .footer-bottom {
    align-items: center;
    justify-content: center;
    gap: 14px 22px;
    text-align: center;
  }

  .home-team {
    padding-top: 86px;
  }

  .home-team .home-section-heading {
    max-width: 370px;
    margin-bottom: 42px;
  }

  .home-team .framer-pill {
    margin-inline: auto;
    margin-bottom: 24px;
    padding: 9px 18px;
  }

  .home-team .home-section-heading h2 {
    font-size: clamp(1.48rem, 6vw, 1.72rem);
    line-height: 1.22;
    letter-spacing: 0;
  }

  .home-team .attorney-grid {
    width: min(100%, 352px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-inline: auto;
  }

  .home-team .attorney-card {
    padding: 8px 8px 10px;
  }

  .home-team .attorney-card img {
    aspect-ratio: 1 / 1;
  }

  .home-team .attorney-card h3 {
    margin: 12px 0 3px;
    font-size: 0.78rem;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .home-team .attorney-card p {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .timeline-list {
    width: min(1120px, calc(100% - 28px));
  }

  .timeline-list article {
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 156px;
  }

  .timeline-list article:not(:last-child)::before {
    left: 29px;
    top: 62px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
  }

  .timeline-list h3 {
    font-size: 1.08rem;
  }

  .home-faq .faq-framer-grid > div:first-child {
    text-align: center;
  }

  .home-faq .framer-pill {
    margin-inline: auto;
  }

  .home-faq .faq-framer-grid h2 {
    text-align: center;
  }

  .faq-framer-list summary {
    align-items: flex-start;
    padding: 16px;
    font-size: 0.96rem;
  }

  .faq-framer-list p {
    margin: 0 16px 18px 60px;
  }

  .contact-panel-framer {
    padding: 22px;
    border-radius: 10px;
  }

  .home-contact .contact-panel-info > .framer-pill.framer-pill {
    text-align: center;
  }

  .home-contact .contact-panel-info > h2 {
    margin-inline: auto;
    text-align: center;
  }

  .framer-form {
    padding: 14px;
  }

  .footer-badges {
    display: grid;
    justify-content: center;
    margin-top: -22px;
    margin-bottom: 44px;
  }
}

.about-framer-main {
  overflow: hidden;
  color: var(--ivory);
  background: var(--navy);
}

.about-framer-main .container {
  width: min(1080px, calc(100% - 40px));
}

.about-framer-hero {
  padding: 96px 0 84px;
  text-align: center;
  background: var(--navy);
}

.about-framer-hero-inner {
  display: grid;
  justify-items: center;
}

.about-framer-main .framer-pill {
  margin-bottom: 34px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-framer-hero h1,
.about-framer-copy h2,
.about-framer-founder-copy h2,
.about-framer-cta h2 {
  margin: 0;
  color: var(--ivory);
  letter-spacing: 0;
}

.about-framer-hero h1 {
  max-width: 980px;
  font-size: clamp(1.9rem, 3vw, 2.08rem);
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.about-framer-hero h1 span,
.about-framer-copy h2 span {
  display: block;
}

.about-framer-hero h1 .about-title-line,
.about-framer-copy h2 .about-heading-line {
  color: var(--ivory);
}

.about-framer-copy h2 .about-heading-nowrap,
.about-framer-founder-copy .about-founder-heading-nowrap {
  white-space: normal;
  overflow-wrap: break-word;
}

.about-framer-copy h2 .about-heading-nowrap {
  font-size: clamp(1.5rem, 2.15vw, 1.86rem);
}

.about-framer-hero h1 span,
.about-framer-copy h2 span,
.about-framer-founder-copy h2 span,
.about-framer-cta h2 span {
  color: rgba(246, 241, 232, 0.58);
}

.about-framer-media {
  position: relative;
  width: 100%;
  margin: 64px 0 0;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: 16px;
  background: var(--navy-soft);
}

.about-framer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 42, 0.42);
  pointer-events: none;
}

.about-framer-media img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.about-framer-stats {
  background: var(--navy);
}

.about-framer-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-framer-stats-grid div {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 128px;
  padding: 28px 20px;
  text-align: center;
}

.about-framer-stats-grid div + div {
  border-left: 0;
}

.about-framer-stats strong {
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.about-framer-stats span {
  color: var(--sand);
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-framer-story,
.about-framer-founder {
  padding: 108px 0;
  background: var(--navy);
}

.about-framer-story + .about-framer-story,
.about-framer-founder {
  border-top: 0;
}

.about-framer-split,
.about-framer-founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 520px);
  gap: 40px;
  align-items: center;
}

.about-framer-split-reverse {
  grid-template-columns: minmax(0, 520px) minmax(0, 520px);
}

.about-framer-image,
.about-founder-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-soft);
}

.about-framer-image img,
.about-founder-image img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.about-framer-image img {
  aspect-ratio: 1.48 / 1;
}

.about-founder-image {
  justify-self: end;
  width: min(100%, 450px);
  background: var(--ivory);
}

.about-founder-image img {
  aspect-ratio: 4 / 5.85;
  object-position: center top;
}

.about-framer-copy,
.about-framer-founder-copy {
  min-width: 0;
}

.about-framer-copy h2,
.about-framer-founder-copy h2 {
  max-width: 590px;
  font-size: clamp(1.6rem, 2.35vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
}

.about-framer-founder-copy h2 {
  font-size: clamp(1.45rem, 2vw, 1.7rem);
}

.about-framer-founder-copy .about-founder-heading-nowrap {
  font-size: clamp(1.38rem, 1.75vw, 1.56rem);
}

.about-framer-founder-copy h2 span {
  display: block;
}

.about-framer-copy p:not(.framer-pill),
.about-founder-letter p {
  color: rgba(246, 241, 232, 0.66);
  font-size: 0.94rem;
  line-height: 1.55;
}

.about-framer-copy p:not(.framer-pill) {
  max-width: 570px;
  margin: 16px 0 0;
}

.about-founder-letter {
  max-width: 590px;
  margin-top: 32px;
  padding: 32px 0 26px;
}

.about-founder-letter h3 {
  margin: 0 0 24px;
  color: var(--ivory);
  font-size: 1.05rem;
}

.about-founder-letter p {
  margin: 0;
  font-weight: 650;
}

.about-founder-letter p + p {
  margin-top: 24px;
}

.about-signature {
  margin: 22px 0 0;
  color: var(--ivory);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.7rem, 3.3vw, 2.35rem);
  line-height: 1;
}

.about-framer-cta {
  padding: 0 0 160px;
  background: var(--navy);
}

.about-framer-cta-card {
  display: grid;
  justify-items: center;
  min-height: 306px;
  padding: 42px 32px;
  align-content: center;
  text-align: center;
  border-radius: 18px;
  background: var(--navy-soft);
}

.about-framer-cta h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.18;
}

.about-framer-button {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 54px;
  margin-top: 24px;
  padding: 0 30px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--sand);
  font-size: 1rem;
  font-weight: 800;
}

.about-framer-button svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 999px;
  color: var(--ivory);
  background: var(--navy);
}

.about-framer-button:hover,
.about-framer-button:focus-visible {
  background: var(--sand-soft);
}

@media (max-width: 920px) {
  .about-framer-hero {
    padding: 78px 0 70px;
  }

  .about-framer-media {
    margin-top: 46px;
  }

  .about-framer-split,
  .about-framer-split-reverse,
  .about-framer-founder-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-framer-story,
  .about-framer-founder {
    padding: 78px 0;
  }

  .about-founder-image {
    justify-self: start;
    width: min(100%, 520px);
  }

  .about-framer-cta {
    padding-bottom: 96px;
  }
}

@media (max-width: 640px) {
  .about-framer-main .container {
    width: min(100% - 28px, 1080px);
  }

  .about-framer-hero {
    padding: 56px 0 54px;
  }

  .about-framer-main .framer-pill {
    margin-bottom: 24px;
  }

  .about-framer-hero h1 {
    width: 100%;
    max-width: min(390px, 100%);
    font-size: clamp(1.28rem, 5.2vw, 1.48rem);
    line-height: 1.16;
  }

  .about-framer-media {
    margin-top: 36px;
    border-radius: 12px;
  }

  .about-framer-media img {
    aspect-ratio: 1.55 / 1;
  }

  .about-framer-stats-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(246, 241, 232, 0.1);
    border-bottom: 1px solid rgba(246, 241, 232, 0.1);
  }

  .about-framer-stats-grid div {
    min-height: 106px;
  }

  .about-framer-stats-grid div + div {
    border-top: 1px solid rgba(246, 241, 232, 0.1);
    border-left: 0;
  }

  .about-framer-story {
    padding: 62px 0;
  }

  .about-framer-founder {
    padding: 96px 0;
  }

  .about-framer-copy h2 {
    max-width: min(390px, 100%);
    font-size: clamp(1.22rem, 4.85vw, 1.38rem);
    line-height: 1.16;
  }

  .about-framer-copy h2 .about-heading-nowrap {
    white-space: nowrap;
    font-size: inherit;
  }

  .about-framer-founder-copy {
    order: 1;
  }

  .about-framer-founder-copy h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 7vw, 1.8rem);
    line-height: 1.18;
  }

  .about-framer-founder-copy .about-founder-heading-nowrap {
    white-space: normal;
    font-size: clamp(1.38rem, 1.75vw, 1.56rem);
  }

  .about-framer-image img {
    aspect-ratio: 1.15 / 1;
  }

  .about-founder-letter {
    margin-top: 26px;
    padding: 26px 0 22px;
  }

  .about-founder-letter p + p {
    margin-top: 20px;
  }

  .about-founder-image {
    order: -1;
    width: 100%;
  }

  .about-founder-image img {
    aspect-ratio: 1.15 / 1;
  }

  .about-framer-cta {
    padding-bottom: 72px;
  }

  .about-framer-cta-card {
    min-height: 260px;
    padding: 34px 18px;
    border-radius: 14px;
  }

  .about-framer-cta h2 {
    max-width: min(390px, 100%);
    font-size: clamp(1.35rem, 5.4vw, 1.58rem);
    line-height: 1.16;
  }

  .about-framer-button {
    max-width: 100%;
    justify-content: space-between;
    padding-left: 18px;
  }
}

.attorneys-framer-main {
  overflow: hidden;
  color: var(--ivory);
  background: var(--navy);
}

.attorneys-framer-main .container {
  width: min(1080px, calc(100% - 40px));
}

.attorneys-framer-hero {
  padding: 96px 0 56px;
  text-align: center;
  background: var(--navy);
}

.attorneys-framer-heading {
  display: grid;
  justify-items: center;
}

.attorneys-framer-main .framer-pill {
  margin-bottom: 34px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.attorneys-framer-heading h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

.attorneys-framer-heading h1 span {
  display: block;
  color: rgba(246, 241, 232, 0.58);
}

.attorneys-framer-section {
  padding: 16px 0 104px;
  background: var(--navy);
}

.attorneys-framer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.attorneys-framer-card {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-soft);
}

.attorneys-framer-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.86);
}

.attorneys-framer-card img.attorneys-framer-photo-beatriz {
  object-position: 82% center;
}

.attorneys-framer-card > div {
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 32px 30px 26px;
}

.attorneys-framer-card h2 {
  margin: 0;
  color: var(--sand);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.attorneys-framer-card p {
  margin: 8px 0 22px;
  color: rgba(246, 241, 232, 0.64);
  font-size: 1rem;
  font-weight: 700;
}

.attorneys-framer-card span {
  display: block;
  max-width: 100%;
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.94rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.attorneys-framer-actions {
  display: flex;
  gap: 14px;
  align-self: end;
  margin-top: 22px;
}

.attorneys-framer-actions a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--sand);
  background: rgba(181, 155, 104, 0.08);
}

.attorneys-framer-actions a:hover,
.attorneys-framer-actions a:focus-visible {
  color: var(--navy);
  background: var(--sand);
}

.attorneys-framer-actions svg {
  width: 17px;
  height: 17px;
}

.attorneys-framer-actions .linkedin-icon {
  fill: currentColor;
  stroke: none;
}

.attorneys-framer-cta {
  padding: 0 0 160px;
  background: var(--navy);
}

.attorneys-framer-cta-card {
  display: grid;
  justify-items: center;
  min-height: 306px;
  padding: 42px 32px;
  align-content: center;
  text-align: center;
  border-radius: 18px;
  background: var(--navy-soft);
}

.attorneys-framer-cta h2 {
  max-width: 690px;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  .attorneys-framer-card {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  }

  .attorneys-framer-card > div {
    padding: 28px 24px 24px;
  }
}

@media (max-width: 920px) {
  .attorneys-framer-hero {
    padding: 78px 0 42px;
  }

  .attorneys-framer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .attorneys-framer-card {
    grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  }

  .attorneys-framer-cta {
    padding-bottom: 96px;
  }
}

@media (max-width: 640px) {
  .attorneys-framer-main .container {
    width: min(100% - 28px, 1080px);
  }

  .attorneys-framer-hero {
    padding: 56px 0 34px;
  }

  .attorneys-framer-main .framer-pill {
    margin-bottom: 24px;
  }

  .attorneys-framer-heading h1 {
    max-width: min(390px, 100%);
    font-size: clamp(1.34rem, 5.4vw, 1.55rem);
    line-height: 1.16;
  }

  .attorneys-framer-section {
    padding: 8px 0 70px;
  }

  .attorneys-framer-card {
    grid-template-columns: 1fr;
    min-height: 0;
    max-width: 100%;
  }

  .attorneys-framer-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1.05;
    object-position: center top;
  }

  .attorneys-framer-card img.attorneys-framer-photo-beatriz {
    object-position: 78% top;
  }

  .attorneys-framer-card > div {
    padding: 24px 22px 22px;
  }

  .attorneys-framer-card p {
    margin-bottom: 16px;
  }

  .attorneys-framer-actions {
    margin-top: 20px;
  }

  .attorneys-framer-cta {
    padding-bottom: 72px;
  }

  .attorneys-framer-cta-card {
    min-height: 260px;
    padding: 34px 18px;
    border-radius: 14px;
  }

  .attorneys-framer-cta h2 {
    max-width: min(390px, 100%);
    font-size: clamp(1.35rem, 5.4vw, 1.58rem);
    line-height: 1.16;
  }
}

.custody-main {
  color: var(--ivory);
  background: var(--navy);
  overflow-x: hidden;
}

.custody-main .container {
  width: min(1080px, calc(100% - 40px));
}

.custody-mobile-only {
  display: none;
}

.custody-hero {
  padding: 86px 0 58px;
  text-align: center;
  background: var(--navy);
  border-bottom: 1px solid rgba(246, 241, 232, 0.07);
}

.custody-hero-inner {
  display: grid;
  justify-items: center;
}

.custody-hero .framer-pill {
  margin-bottom: 24px;
}

.custody-hero h1 {
  width: 100%;
  max-width: 760px;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(1.95rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.custody-hero-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.custody-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.custody-hero-actions .about-framer-button {
  margin-top: 0;
}

.custody-intro {
  padding: 56px 0 52px;
  background: var(--navy);
}

.custody-intro .container {
  display: grid;
  gap: 20px;
}

.custody-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: rgba(246, 241, 232, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
}

.custody-breadcrumb a {
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.custody-breadcrumb a:hover,
.custody-breadcrumb a:focus-visible {
  color: var(--sand);
  border-bottom-color: currentColor;
}

.custody-breadcrumb a::after,
.custody-services-card a::after {
  content: none;
}

.custody-breadcrumb span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.46);
}

.custody-intro h2 {
  width: 100%;
  max-width: 860px;
  margin: 12px 0 0;
  color: var(--ivory);
  font-size: clamp(1.65rem, 3vw, 2rem);
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.custody-intro p {
  width: 100%;
  max-width: 850px;
  margin: 0;
  color: rgba(246, 241, 232, 0.68);
  font-size: 0.93rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.custody-quick-grid {
  width: min(850px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.custody-quick-grid article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(246, 241, 232, 0.1);
  border-radius: 8px;
  background: rgba(246, 241, 232, 0.05);
}

.custody-quick-grid article span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--sand);
}

.custody-quick-grid strong {
  color: var(--ivory);
  font-size: 0.88rem;
  line-height: 1.25;
}

.custody-body {
  padding: 0 0 88px;
  background: var(--navy);
}

.custody-content-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 372px);
  gap: 30px 28px;
  padding: 28px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy-soft);
}

.custody-feature-image {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 8px;
}

.custody-article {
  min-width: 0;
  color: rgba(246, 241, 232, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

.custody-article section {
  padding: 24px 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
}

.custody-article section:first-of-type {
  padding-top: 18px;
}

.custody-article section:last-child {
  border-bottom: 0;
}

.custody-article h2,
.custody-article h3 {
  margin: 0 0 12px;
  color: var(--ivory);
  font-size: clamp(1.35rem, 2.2vw, 1.58rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.custody-article h3 {
  display: block;
}

.custody-article h3 span {
  display: inline-block;
  margin-right: 10px;
}

.custody-article p {
  margin: 0 0 18px;
}

.custody-article ul {
  margin: 0;
  padding-left: 18px;
}

.custody-article li + li {
  margin-top: 8px;
}

.custody-article strong {
  color: rgba(246, 241, 232, 0.88);
}

.custody-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 12px;
  align-self: start;
}

.custody-lawyer-card,
.custody-stats-card,
.custody-services-card {
  min-width: 0;
  padding: 20px;
  border-radius: 8px;
  background: var(--navy-soft);
}

.custody-lawyer-card img {
  width: 100%;
  aspect-ratio: 1 / 0.95;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  filter: saturate(0.92) brightness(0.86);
}

.custody-lawyer-card h2 {
  margin: 18px 0 2px;
  color: var(--sand);
  font-size: 0.92rem;
  line-height: 1.25;
}

.custody-lawyer-card p {
  margin: 0;
  color: rgba(246, 241, 232, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
}

.custody-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

.custody-stats-grid strong {
  display: block;
  color: var(--sand);
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1;
}

.custody-stats-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(246, 241, 232, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
}

.custody-consult-button {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 22px;
  color: var(--navy);
  background: var(--sand);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.custody-consult-button:hover,
.custody-consult-button:focus-visible {
  background: var(--sand-soft);
}

.custody-services-card h2 {
  margin: 0 0 26px;
  color: var(--ivory);
  font-size: 1.15rem;
  line-height: 1.2;
}

.custody-services-card h3 {
  margin: 24px 0 12px;
  padding-bottom: 16px;
  color: var(--sand);
  border-bottom: 1px solid rgba(246, 241, 232, 0.14);
  font-size: 1rem;
  line-height: 1.2;
}

.custody-services-card h3:first-of-type {
  margin-top: 0;
}

.custody-services-card a {
  width: max-content;
  max-width: 100%;
  display: block;
  margin-top: 14px;
  color: var(--ivory);
  border-bottom: 1px solid transparent;
  font-size: 0.85rem;
  transition: color 180ms ease, border-color 180ms ease;
  overflow-wrap: anywhere;
}

.custody-services-card a:hover,
.custody-services-card a:focus-visible {
  color: var(--sand);
  border-bottom-color: currentColor;
}

.custody-services-card a[aria-current="page"] {
  color: var(--sand);
  border-bottom-color: currentColor;
  font-weight: 800;
}

.custody-cta {
  padding: 0 0 160px;
  background: var(--navy);
}

.custody-cta-card {
  display: grid;
  justify-items: center;
  min-height: 306px;
  padding: 42px 32px;
  align-content: center;
  text-align: center;
  border-radius: 18px;
  background: var(--navy-soft);
}

.custody-cta h2 {
  max-width: 680px;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.family-law-main {
  color: var(--ivory);
  background: var(--navy);
}

.family-law-hero {
  padding: 118px 0 64px;
  text-align: center;
  background: var(--navy);
}

.family-law-hero-inner {
  display: grid;
  justify-items: center;
}

.family-law-hero .framer-pill {
  margin-bottom: 34px;
}

.family-law-hero h1 {
  width: 100%;
  max-width: 980px;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
}

.family-law-section {
  padding: 0 0 112px;
  background: var(--navy);
}

.family-law-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 480px);
  gap: 40px;
  align-items: start;
}

.family-law-copy {
  min-width: 0;
}

.family-law-copy img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(246, 241, 232, 0.1);
  border-radius: 8px;
  filter: grayscale(1) brightness(0.78) contrast(1.12);
}

.criminal-law-main .family-law-copy img {
  filter: saturate(0.78) brightness(0.78) contrast(1.04);
}

.criminal-law-main .family-law-title {
  max-width: 300px;
}

.family-law-copy h2 {
  max-width: 470px;
  margin: 22px 0 0;
  color: var(--ivory);
  font-size: clamp(1.45rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.family-law-copy p {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.92rem;
  line-height: 1.55;
}

.family-law-accordion {
  display: grid;
  gap: 16px;
}

.family-law-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--navy-soft);
  transition: border-color 160ms ease, background 160ms ease;
}

.family-law-card.is-animating {
  transition:
    height 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease;
}

.family-law-card.is-active {
  border-color: rgba(246, 241, 232, 0.12);
}

.family-law-card button {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 74px 1fr 42px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  color: var(--ivory);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.family-law-index {
  color: rgba(246, 241, 232, 0.24);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.family-law-card.is-active .family-law-index {
  color: rgba(246, 241, 232, 0.62);
}

.family-law-title {
  justify-self: center;
  color: var(--ivory);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.family-law-symbol {
  position: relative;
  width: 40px;
  height: 40px;
  justify-self: end;
  border-radius: 8px;
  background: rgba(181, 155, 104, 0.07);
}

.family-law-symbol::before,
.family-law-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--sand);
  transform: translate(-50%, -50%);
  transition:
    opacity 650ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.family-law-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.family-law-card.is-active:not(.is-closing) .family-law-symbol::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.45);
}

.family-law-panel {
  display: grid;
  padding: 0 20px 18px;
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  transition:
    opacity 650ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.family-law-card:not(.is-active):not(.is-animating) .family-law-panel {
  display: none;
  visibility: hidden;
}

.family-law-card.is-active .family-law-panel,
.family-law-card.is-animating .family-law-panel {
  visibility: visible;
}

.family-law-card.is-active:not(.is-closing):not(.is-preparing) .family-law-panel {
  opacity: 1;
  transform: translateY(0);
}

.family-law-panel p {
  max-width: 410px;
  margin: 0;
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.9rem;
  line-height: 1.45;
}

.family-law-learn {
  width: max-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 20px;
  padding: 0 20px;
  color: var(--navy);
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.88rem;
  font-weight: 800;
}

.family-law-learn svg {
  display: none;
}

.family-law-panel img {
  width: 100%;
  aspect-ratio: 2.75 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.family-law-cta {
  padding-top: 0;
}

@media (max-width: 920px) {
  .custody-hero {
    padding: 72px 0 50px;
  }

  .custody-intro {
    padding: 48px 0;
  }

  .custody-quick-grid {
    grid-template-columns: 1fr;
  }

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

  .custody-sidebar {
    position: static;
  }

  .custody-lawyer-card {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: 18px;
    align-items: end;
  }

  .custody-lawyer-card img {
    grid-row: span 2;
  }

  .family-law-hero {
    padding: 84px 0 54px;
  }

  .family-law-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .family-law-copy {
    max-width: 620px;
  }

  .family-law-accordion {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .custody-main .container {
    width: calc(100vw - 28px);
    max-width: 1080px;
  }

  .custody-hero {
    padding: 46px 0 34px;
  }

  .custody-hero .framer-pill {
    max-width: 100%;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .custody-hero-inner {
    justify-items: center;
    text-align: center;
  }

  .custody-hero h1,
  .custody-intro h2 {
    width: calc(100vw - 72px);
    max-width: 330px;
    font-size: clamp(1.65rem, 7vw, 1.95rem);
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .custody-hero h1 {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.5rem, 6vw, 1.8rem);
    text-align: center;
  }

  .custody-hero-copy {
    width: min(330px, calc(100vw - 42px));
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .custody-hero-actions {
    width: min(330px, calc(100vw - 42px));
    display: grid;
    gap: 10px;
    margin-top: 20px;
  }

  .custody-hero-actions .about-framer-button {
    width: 100%;
    min-height: 46px;
    margin-top: 0;
  }

  .parental-responsibilities-main .custody-hero h1 {
    font-size: clamp(1.34rem, 5.35vw, 1.5rem);
  }

  .custody-intro p,
  .custody-content-card,
  .custody-cta-card {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .custody-intro p {
    width: calc(100vw - 72px);
    max-width: 330px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .custody-mobile-only {
    display: block;
  }

  .custody-intro {
    padding: 34px 0 34px;
  }

  .custody-breadcrumb {
    gap: 10px;
  }

  .custody-content-card {
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
  }

  .custody-feature-image {
    aspect-ratio: 4 / 3.1;
  }

  .custody-quick-grid {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    gap: 8px;
  }

  .custody-quick-grid article {
    min-height: 48px;
    padding: 12px 14px;
  }

  .custody-article {
    font-size: 0.88rem;
  }

  .custody-lawyer-card {
    grid-template-columns: 1fr;
  }

  .custody-stats-grid {
    gap: 10px;
  }

  .custody-cta {
    padding-bottom: 72px;
  }

  .custody-cta-card {
    min-height: 260px;
    padding: 34px 18px;
    border-radius: 14px;
  }

  .custody-cta h2 {
    max-width: min(390px, 100%);
    font-size: clamp(1.35rem, 5.4vw, 1.58rem);
    line-height: 1.16;
  }

  .family-law-main .container {
    width: calc(100vw - 28px);
    max-width: 1080px;
  }

  .family-law-hero {
    padding: 58px 0 44px;
  }

  .family-law-hero-inner {
    justify-items: center;
    text-align: center;
  }

  .family-law-hero .framer-pill {
    max-width: 100%;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .family-law-hero h1 {
    max-width: min(390px, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: clamp(1.22rem, 4.85vw, 1.38rem);
    line-height: 1.16;
    white-space: normal;
  }

  .family-law-section {
    padding-bottom: 108px;
  }

  .family-law-grid {
    gap: 28px;
  }

  .family-law-copy img {
    aspect-ratio: 1.45 / 1;
  }

  .family-law-copy h2 {
    max-width: min(390px, 100%);
    margin-top: 20px;
    font-size: clamp(1.28rem, 5.2vw, 1.5rem);
    line-height: 1.16;
  }

  .family-law-copy p {
    font-size: 0.88rem;
  }

  .family-law-card button {
    min-height: 70px;
    grid-template-columns: 44px 1fr 38px;
    gap: 12px;
    padding: 16px 14px;
  }

  .family-law-index {
    font-size: 1.25rem;
  }

  .family-law-title {
    font-size: clamp(1.05rem, 5.2vw, 1.35rem);
  }

  .family-law-symbol {
    width: 36px;
    height: 36px;
  }

  .family-law-panel {
    padding: 0 14px 14px;
  }

  .family-law-panel p {
    font-size: 0.86rem;
  }

  .family-law-learn {
    min-height: 46px;
    padding-left: 18px;
  }

  .family-law-panel img {
    aspect-ratio: 2.05 / 1;
  }
}

.framer-pill.framer-pill {
  width: auto;
  max-width: calc(100vw - 28px);
  display: block;
  padding: 0;
  color: var(--sand);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.35vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  white-space: nowrap;
  text-transform: none;
}

.framer-pill.framer-pill span {
  display: none;
}

.custody-hero .framer-pill.framer-pill,
.family-law-hero .framer-pill.framer-pill,
.about-framer-hero .framer-pill.framer-pill,
.attorneys-framer-hero .framer-pill.framer-pill,
.contact-reference-hero .framer-pill.framer-pill {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 3.55vw, 3.25rem);
}

.custody-cta .framer-pill.framer-pill,
.about-framer-cta .framer-pill.framer-pill,
.attorneys-framer-cta .framer-pill.framer-pill,
.contact-reference-card .framer-pill.framer-pill {
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.35vw, 2.2rem);
}

@media (max-width: 640px) {
  .framer-pill.framer-pill {
    font-size: clamp(1.12rem, 5vw, 1.45rem);
  }

  .custody-hero .framer-pill.framer-pill,
  .family-law-hero .framer-pill.framer-pill,
  .about-framer-hero .framer-pill.framer-pill,
  .attorneys-framer-hero .framer-pill.framer-pill,
  .contact-reference-hero .framer-pill.framer-pill {
    font-size: clamp(1.18rem, 5.4vw, 1.55rem);
  }

  .contact-reference-hero .framer-pill.framer-pill {
    margin-bottom: 12px;
  }

  .custody-hero .framer-pill.framer-pill,
  .family-law-hero .framer-pill.framer-pill,
  .custody-hero h1,
  .family-law-hero h1 {
    width: min(430px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    margin-left: auto;
    margin-right: auto;
  }

  .custody-cta .framer-pill.framer-pill,
  .about-framer-cta .framer-pill.framer-pill,
  .attorneys-framer-cta .framer-pill.framer-pill,
  .contact-reference-card .framer-pill.framer-pill {
    font-size: clamp(1.12rem, 5vw, 1.45rem);
  }
}

.home-testimonials {
  background: var(--navy);
}

.home-testimonials h2 {
  letter-spacing: 0;
}

.home-testimonials .dark-testimonial p {
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .home-testimonials {
    padding: 92px 0 76px;
  }

  .home-testimonials .home-section-heading {
    width: min(390px, calc(100% - 40px));
    max-width: 390px;
    margin-bottom: 40px;
  }

  .home-testimonials h2 {
    max-width: 390px;
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .home-testimonials .testimonial-shell::after {
    display: none;
  }

  .home-testimonials .testimonial-shell::before {
    display: none;
  }

  .home-testimonials .testimonial-track {
    grid-auto-columns: 100%;
    gap: 24px;
    padding-inline: 20px;
    padding-bottom: 0;
    scroll-padding-inline: 20px;
  }

  .home-testimonials .dark-testimonial {
    min-height: 374px;
    gap: 22px;
    padding: 20px;
    background: var(--navy-soft);
  }

  .home-testimonials .dark-testimonial p {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .home-testimonials .dark-testimonial img {
    width: 48px;
    height: 48px;
    filter: grayscale(1) brightness(0.9) contrast(1.08);
  }

  .home-testimonials .testimonial-next {
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .home-testimonials .testimonial-prev {
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .home-testimonials .testimonial-dots {
    gap: 8px;
    margin-top: 30px;
  }

  .home-testimonials .testimonial-dots span {
    width: 6px;
    height: 6px;
    background: rgba(246, 241, 232, 0.35);
  }

  .home-testimonials .testimonial-dots span.is-active {
    background: var(--ivory);
  }
}

.contact-reference-detail strong a,
.contact-panel-info article strong a {
  overflow-wrap: anywhere;
}

/* Brand palette alignment: ivory is the default page surface; navy is reserved for major structural areas. */
.home-page,
.home-page main,
.home-section {
  color: var(--charcoal);
  background: var(--ivory);
}

.home-page .site-header.is-past-hero,
.home-page.nav-menu-open .site-header,
.home-footer {
  background: var(--navy);
}

.home-section h2,
.faq-framer-grid h2,
.contact-panel-info h2,
.service-family-copy h3,
.timeline-list h3,
.attorney-card h3,
.blog-framer-card h3 {
  color: var(--navy);
}

.heading-muted,
.home-services h2 span,
.home-testimonials h2 span,
.service-family-copy p,
.timeline-list p,
.attorney-card p,
.blog-framer-card p {
  color: var(--charcoal);
}

.home-page .framer-pill.framer-pill {
  width: max-content;
  display: inline-flex;
  padding: 8px 14px;
  color: var(--bronze);
  border: 1px solid rgba(181, 155, 104, 0.32);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .framer-pill.framer-pill span {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 999px;
  background: var(--bronze);
}

.home-services .home-section-heading {
  max-width: min(980px, calc(100% - 40px));
}

.home-services h2 {
  text-wrap: balance;
  white-space: normal;
}

.home-services h2 span {
  display: block;
  margin-top: 8px;
}

.service-family {
  border-bottom-color: var(--soft-gray);
}

.service-link-list {
  overflow: visible;
}

.service-link-list a {
  border-bottom-color: var(--soft-gray);
  color: var(--navy);
}

.service-family-copy a,
.service-link-list a,
.contact-panel-info a {
  color: var(--navy);
}

.service-link-list a:hover,
.service-link-list a:focus-visible,
.service-link-list a.is-preview-active {
  color: var(--bronze);
}

.service-hover-preview {
  position: static;
  width: min(320px, 100%);
  max-width: 100%;
  margin-top: 24px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: var(--soft-gray);
  box-shadow: none;
  transform: none;
}

.service-family.is-preview-visible .service-hover-preview {
  transform: none;
}

.service-family.is-preview-visible .service-hover-preview,
.service-hover-preview {
  justify-self: end;
}

.service-hover-preview img {
  filter: saturate(0.92) contrast(1.02);
}

.service-family-copy svg,
.service-link-list svg,
.contact-panel-info a svg,
.contact-panel-info article > svg,
.contact-panel-info article > i svg {
  color: var(--bronze);
}

.attorney-card,
.faq-framer-list details,
.contact-panel-framer,
.dark-testimonial,
.blog-framer-card {
  background: var(--soft-gray);
}

.attorney-card img,
.dark-testimonial img {
  filter: saturate(0.92) contrast(1.02);
}

.timeline-list article:not(:last-child)::before {
  background: var(--soft-gray);
}

.timeline-icon {
  color: var(--bronze);
  background: rgba(181, 155, 104, 0.12);
}

.testimonial-stars span {
  width: auto;
  height: auto;
  display: inline;
  color: var(--bronze);
  background: transparent;
}

.faq-framer-list summary,
.dark-testimonial p,
.dark-testimonial strong,
.contact-panel-info article strong,
.blog-framer-card h3 {
  color: var(--charcoal);
}

.faq-framer-list p,
.dark-testimonial footer span {
  color: rgba(35, 35, 35, 0.72);
}

.faq-framer-list summary span,
.testimonial-nav,
.framer-form button {
  color: var(--navy);
  background: var(--bronze);
}

.faq-framer-list details[open]:not(.is-closing) summary span {
  background: var(--ivory);
}

.home-testimonials {
  background: var(--ivory);
}

.testimonial-shell::after {
  background: linear-gradient(90deg, rgba(246, 241, 232, 0), var(--ivory) 78%);
}

.testimonial-shell::before {
  background: linear-gradient(90deg, var(--ivory) 22%, rgba(246, 241, 232, 0));
}

.testimonial-dots span {
  background: rgba(35, 35, 35, 0.22);
}

.testimonial-dots span.is-active {
  background: var(--bronze);
}

.contact-panel-framer {
  border-color: var(--soft-gray);
}

.contact-panel-info article {
  border-top-color: rgba(35, 35, 35, 0.12);
}

.contact-panel-info article span {
  color: var(--bronze);
}

.contact-panel-info h2 .heading-muted {
  color: var(--charcoal);
}

.contact-panel-map {
  border-color: rgba(181, 155, 104, 0.28);
}

.framer-form {
  background: var(--ivory);
}

.framer-form label {
  color: rgba(35, 35, 35, 0.72);
}

.framer-form input,
.framer-form select,
.framer-form textarea {
  color: var(--charcoal);
  border-color: var(--soft-gray);
  background: rgba(232, 229, 223, 0.75);
}

.framer-form input::placeholder,
.framer-form textarea::placeholder {
  color: rgba(35, 35, 35, 0.46);
}

@media (max-width: 1120px) {
  .home-services h2 {
    white-space: normal;
  }
}

/* Header and section labels cleanup. */
.site-header,
.home-page .site-header,
.home-page .site-header.is-past-hero,
.home-page.nav-menu-open .site-header {
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
}

.home-page .site-header::before,
.home-page .site-header::after {
  content: none;
}

.home-page .framer-pill.framer-pill,
.home-page .home-team .framer-pill,
.home-page .home-faq .framer-pill,
.home-page .home-contact .contact-panel-info > .framer-pill.framer-pill {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 921px) {
  .nav-dropdown-panel {
    width: min(520px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-dropdown-group + .nav-dropdown-group {
    padding-top: 0;
    border-left: 1px solid rgba(246, 241, 232, 0.1);
  }

  .nav-dropdown-heading,
  .nav-dropdown-group strong,
  .nav-dropdown-panel .nav-dropdown-heading {
    padding: 0 14px 8px;
  }

  .nav-dropdown-panel a {
    padding: 8px 14px;
  }

  .service-link-list {
    padding-right: 270px;
  }

  .service-hover-preview {
    position: absolute;
    z-index: 2;
    top: var(--preview-y, 92px);
    right: 0;
    width: min(240px, 42%);
    margin-top: 0;
    transform: translateY(-50%) rotate(10deg) scale(0.96);
    box-shadow: 0 18px 46px rgba(15, 26, 42, 0.18);
  }

  .service-family.is-preview-visible .service-hover-preview {
    transform: translateY(-50%) rotate(10deg) scale(1);
  }
}

.service-hover-preview {
  display: none;
  opacity: 1;
  visibility: visible;
}

.service-family.is-preview-visible .service-hover-preview {
  display: block;
  opacity: 1;
  visibility: visible;
}

.site-header .nav-links > a:hover,
.site-header .nav-links > a:focus,
.site-header .nav-links > a:focus-visible,
.site-header .nav-links > a:active,
.site-header .nav-dropdown-trigger:hover,
.site-header .nav-dropdown-trigger:focus,
.site-header .nav-dropdown-trigger:focus-visible,
.site-header .nav-dropdown-trigger:active,
.site-header .nav-dropdown:hover .nav-dropdown-trigger,
.site-header .nav-dropdown:focus-within .nav-dropdown-trigger,
.site-header .nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--bronze);
}

.site-header .nav-dropdown-panel a:hover,
.site-header .nav-dropdown-panel a:focus,
.site-header .nav-dropdown-panel a:focus-visible,
.site-header .nav-dropdown-panel a:active {
  color: var(--bronze);
  background: rgba(181, 155, 104, 0.08);
}

@media (min-width: 921px) {
  .site-header .nav-dropdown {
    --dropdown-gap: 14px;
  }

  .site-header .nav-dropdown::after {
    left: -52px;
    right: -52px;
  }

  .site-header .nav-dropdown-panel {
    width: min(560px, calc(100vw - 40px));
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(181, 155, 104, 0.18);
    border-radius: 12px;
    background: rgba(15, 26, 42, 0.98);
    box-shadow: 0 24px 58px rgba(15, 26, 42, 0.28);
  }

  .site-header .nav-dropdown-group {
    gap: 2px;
    min-width: 0;
    padding: 4px;
    border: 1px solid rgba(246, 241, 232, 0.06);
    border-radius: 9px;
    background: rgba(246, 241, 232, 0.025);
  }

  .site-header .nav-dropdown-group + .nav-dropdown-group {
    padding-top: 4px;
    border-left: 1px solid rgba(246, 241, 232, 0.06);
  }

  .site-header .nav-dropdown-panel .nav-dropdown-heading {
    height: 40px;
    min-height: 40px;
    margin: 0 0 3px;
    padding: 9px 12px;
    color: var(--sand);
    border: 1px solid rgba(181, 155, 104, 0.14);
    border-radius: 7px;
    background: rgba(181, 155, 104, 0.09);
    font-size: 0.95rem;
    font-weight: 800;
  }

  .site-header .nav-dropdown-panel a {
    height: 40px;
    min-height: 40px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 9px 12px;
    border: 0;
    border-radius: 7px;
    color: rgba(246, 241, 232, 0.78);
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
  }

  .site-header .nav-dropdown-panel a:not(.nav-dropdown-heading):hover,
  .site-header .nav-dropdown-panel a:not(.nav-dropdown-heading):focus,
  .site-header .nav-dropdown-panel a:not(.nav-dropdown-heading):focus-visible,
  .site-header .nav-dropdown-panel a:not(.nav-dropdown-heading):active {
    color: var(--ivory);
    background: rgba(181, 155, 104, 0.12);
  }

  .site-header .nav-dropdown-panel .nav-dropdown-heading:hover,
  .site-header .nav-dropdown-panel .nav-dropdown-heading:focus,
  .site-header .nav-dropdown-panel .nav-dropdown-heading:focus-visible,
  .site-header .nav-dropdown-panel .nav-dropdown-heading:active {
    color: var(--sand);
    border-color: rgba(181, 155, 104, 0.2);
    background: rgba(181, 155, 104, 0.12);
  }
}

/* Internal pages use the same brand palette as the homepage sections. */
body:not(.home-page),
.service-page-shell,
.service-page-shell main,
.about-framer-main,
.contact-main,
.attorneys-framer-main,
.contact-reference-hero,
.contact-reference-section,
.about-framer-hero,
.about-framer-story,
.about-framer-founder,
.about-framer-cta,
.attorneys-framer-hero,
.attorneys-framer-section,
.attorneys-framer-cta,
.service-hero,
.service-section {
  color: var(--charcoal);
  background: var(--ivory);
}

.service-page-shell {
  color: var(--charcoal);
}

.about-framer-hero h1,
.about-framer-copy h2,
.about-framer-founder-copy h2,
.about-framer-cta h2,
.attorneys-framer-hero h1,
.attorneys-framer-cta h2,
.contact-reference-heading h1,
.contact-reference-info h2,
.service-hero h1,
.service-copy h2,
.service-copy h3 {
  color: var(--navy);
}

.about-framer-hero h1 .about-title-line,
.about-framer-copy h2 .about-heading-line {
  color: var(--navy);
}

.about-framer-hero h1 span,
.about-framer-copy h2 span,
.about-framer-founder-copy h2 span,
.about-framer-cta h2 span,
.attorneys-framer-hero p,
.contact-reference-heading p,
.service-hero p,
.service-copy p,
.service-copy li {
  color: var(--charcoal);
}

.contact-reference-card,
.contact-reference-form,
.attorneys-framer-card,
.about-framer-cta-card {
  border-color: var(--soft-gray);
  background: var(--soft-gray);
}

.contact-reference-form input,
.contact-reference-form select,
.contact-reference-form textarea {
  color: var(--charcoal);
  border-color: rgba(35, 35, 35, 0.12);
  background: rgba(246, 241, 232, 0.74);
}

.contact-reference-form label,
.contact-reference-heading p,
.contact-reference-heading p:last-child,
.contact-reference-heading p:last-child span,
.contact-reference-heading h1 span,
.contact-reference-info h2 span,
.contact-reference-detail strong,
.contact-reference-detail a,
.contact-reference-form .form-note,
.attorneys-framer-card p,
.attorneys-framer-card span,
.about-framer-copy p,
.about-framer-founder-copy blockquote p {
  color: var(--charcoal);
}

.contact-reference-form input::placeholder,
.contact-reference-form textarea::placeholder {
  color: rgba(35, 35, 35, 0.46);
}

.contact-reference-detail {
  border-top-color: rgba(35, 35, 35, 0.12);
}

.contact-reference-detail span,
.attorneys-framer-card h2,
.about-signature {
  color: var(--bronze);
}

.about-framer-stats {
  background: var(--soft-gray);
}

.about-framer-stats-grid {
  border-top: 1px solid rgba(35, 35, 35, 0.08);
  border-bottom: 1px solid rgba(35, 35, 35, 0.08);
}

.about-framer-stats strong {
  color: var(--navy);
}

.about-framer-stats span {
  color: var(--bronze);
}

.about-framer-stats-grid div + div {
  border-left: 1px solid rgba(35, 35, 35, 0.08);
}

.attorneys-framer-card img,
.about-framer-media img,
.about-framer-image img,
.about-framer-founder-image img,
.service-copy img {
  filter: saturate(0.92) contrast(1.02);
}

@media (max-width: 640px) {
  .about-framer-stats-grid div + div {
    border-top-color: rgba(35, 35, 35, 0.08);
    border-left: 0;
  }
}

.about-framer-main.about-framer-main,
.about-framer-main .about-framer-hero,
.about-framer-main .about-framer-stats,
.about-framer-main .about-framer-story,
.about-framer-main .about-framer-founder,
.about-framer-main .about-framer-cta {
  color: var(--charcoal);
  background: var(--ivory);
}

.about-framer-main .framer-pill.framer-pill {
  width: max-content;
  max-width: calc(100vw - 28px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--bronze-text);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-framer-main .framer-pill.framer-pill span {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 999px;
  background: currentColor;
}

.about-framer-main .about-framer-hero h1,
.about-framer-main .about-framer-copy h2,
.about-framer-main .about-framer-founder-copy h2,
.about-framer-main .about-framer-cta h2,
.about-framer-main .about-section-heading h2,
.about-framer-main .about-workflow-card h3,
.about-framer-main .about-credential-card h3,
.about-framer-main .about-framer-hero h1 .about-title-line,
.about-framer-main .about-framer-copy h2 .about-heading-line {
  color: var(--navy);
}

.about-framer-main .about-framer-hero h1 span,
.about-framer-main .about-framer-copy h2 span,
.about-framer-main .about-framer-founder-copy h2 span,
.about-framer-main .about-framer-cta h2 span,
.about-framer-main .about-section-heading h2 span {
  color: var(--charcoal);
}

.about-framer-main .about-framer-founder-copy h2 span:first-child {
  color: var(--navy);
}

.about-framer-main .about-framer-founder-copy .about-founder-heading-nowrap {
  white-space: normal;
  overflow-wrap: break-word;
}

.about-framer-main .about-framer-hero {
  padding: 78px 0 0;
  border-bottom: 1px solid rgba(35, 35, 35, 0.08);
}

.about-framer-main .about-hero-lead {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(35, 35, 35, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
  text-align: center;
}

.about-framer-main .about-framer-media {
  width: min(1080px, 100%);
  margin-top: 44px;
  border-color: rgba(181, 155, 104, 0.28);
  box-shadow: none;
}

.about-framer-main .about-framer-media::after {
  background: rgba(10, 12, 14, 0.58);
}

.about-framer-main .about-framer-media img {
  height: auto;
  aspect-ratio: 2.28 / 1;
  object-fit: cover;
  object-position: center center;
}

.about-framer-main .about-framer-stats {
  padding: 64px 0 62px;
}

.about-framer-main .about-framer-stats-grid {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  border-top: 1px solid rgba(35, 35, 35, 0.08);
  border-bottom: 1px solid rgba(35, 35, 35, 0.08);
}

.about-framer-main .about-framer-stats-grid div {
  min-height: 112px;
  padding: 24px 18px;
}

.about-framer-main .about-framer-stats-grid div + div {
  border-left: 1px solid rgba(35, 35, 35, 0.08);
}

.about-framer-main .about-framer-stats strong,
.about-framer-main .about-framer-stats dt {
  color: var(--navy);
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.45rem, 3.6vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-shadow: none;
}

.about-framer-main .about-framer-stats span,
.about-framer-main .about-framer-stats dd {
  margin: 0;
  color: var(--bronze-text);
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-framer-main .about-framer-story,
.about-framer-main .about-framer-founder {
  border-top: 1px solid rgba(35, 35, 35, 0.08);
}

.about-framer-main .about-framer-story {
  padding: 64px 0;
}

.about-framer-main .about-framer-founder {
  padding: 76px 0 88px;
}

.about-framer-main .about-section-heading {
  max-width: 660px;
}

.about-framer-main .about-workflow-section .about-section-heading {
  margin-inline: auto;
  text-align: center;
}

.about-framer-main .about-section-heading h2 {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.72rem, 2.45vw, 2.28rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.about-framer-main .about-story-lead {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(35, 35, 35, 0.72);
  font-size: 0.96rem;
  line-height: 1.65;
}

.about-framer-main .about-workflow-grid,
.about-framer-main .about-credential-grid {
  display: grid;
  gap: 18px;
}

.about-framer-main .about-workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.about-framer-main .about-credential-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-framer-main .about-workflow-card,
.about-framer-main .about-credential-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(2.35em, auto) auto;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(35, 35, 35, 0.08);
  border-radius: 8px;
  background: var(--soft-gray);
}

.about-framer-main .about-workflow-card span,
.about-framer-main .about-credential-card span {
  display: block;
  color: var(--bronze-text);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-framer-main .about-workflow-card h3,
.about-framer-main .about-credential-card h3 {
  min-height: 2.32em;
  margin: 14px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.16rem, 1.55vw, 1.36rem);
  line-height: 1.16;
}

.about-framer-main .about-workflow-card p,
.about-framer-main .about-credential-card p {
  margin: 10px 0 0;
  color: rgba(35, 35, 35, 0.72);
  font-size: 0.92rem;
  line-height: 1.58;
}

.about-framer-main .about-profile-link {
  grid-column: 1 / -1;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--navy);
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: 999px;
  background: transparent;
  font-weight: 800;
  text-decoration: none;
}

.about-framer-main .about-profile-link:hover,
.about-framer-main .about-profile-link:focus-visible {
  color: var(--ink);
  border-color: var(--bronze-text);
  background: rgba(181, 155, 104, 0.12);
}

.about-framer-main .about-profile-link svg {
  width: 16px;
  height: 16px;
}

.about-framer-main .about-framer-image,
.about-framer-main .about-founder-image {
  border-radius: 8px;
  background: var(--soft-gray);
}

.about-framer-main .about-framer-image img {
  aspect-ratio: 1.49 / 1;
  object-position: center center;
}

.about-framer-main .about-framer-split-reverse .about-framer-image img {
  object-position: center 28%;
}

.about-framer-main .about-framer-copy p:not(.framer-pill),
.about-framer-main .about-founder-letter p {
  color: rgba(35, 35, 35, 0.72);
}

.about-framer-main .about-founder-letter {
  border-top: 1px solid rgba(35, 35, 35, 0.1);
  border-bottom: 1px solid rgba(35, 35, 35, 0.1);
}

.about-framer-main .about-founder-letter h3 {
  color: var(--navy);
}

.about-framer-main .about-signature {
  color: var(--bronze-text);
}

.about-framer-main .about-founder-image {
  justify-self: end;
  width: min(100%, 390px);
  overflow: hidden;
  background: var(--ivory);
}

.about-framer-main .about-founder-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5.85;
  object-fit: cover;
  object-position: center top;
}

.about-framer-main .about-framer-cta-card {
  color: var(--charcoal);
  min-height: 252px;
  padding: 36px 28px;
  border: 1px solid var(--soft-gray);
  border-radius: 8px;
  background: var(--soft-gray);
}

.about-framer-main .about-framer-cta {
  padding-top: 16px;
  padding-bottom: 84px;
}

@media (max-width: 640px) {
  .about-framer-main .about-framer-hero {
    padding-top: 54px;
  }

  .about-framer-main .about-framer-media {
    margin-top: 30px;
    border-radius: 12px;
  }

  .about-framer-main .about-framer-media img {
    aspect-ratio: 1.48 / 1;
  }

  .about-framer-main .about-framer-stats {
    padding: 22px 0 26px;
  }

  .about-framer-main .about-framer-stats-grid div {
    min-height: 76px;
    padding: 14px;
  }

  .about-framer-main .about-framer-stats dt {
    font-size: clamp(1.95rem, 9vw, 2.2rem);
  }

  .about-framer-main .about-framer-stats dd {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .about-framer-main .about-framer-stats-grid div + div {
    border-top: 1px solid rgba(35, 35, 35, 0.08);
    border-left: 0;
  }

  .about-framer-main .about-framer-story {
    padding: 44px 0;
  }

  .about-framer-main .about-framer-founder {
    padding: 50px 0 60px;
  }

  .about-framer-main .about-section-heading h2 {
    margin-top: 18px;
    font-size: clamp(1.45rem, 7vw, 1.78rem);
    line-height: 1.16;
  }

  .about-framer-main .about-story-lead {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .about-framer-main .about-workflow-grid,
  .about-framer-main .about-credential-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-framer-main .about-workflow-grid {
    margin-top: 22px;
  }

  .about-framer-main .about-workflow-card,
  .about-framer-main .about-credential-card {
    grid-template-rows: auto auto auto;
    padding: 18px 0;
    border-width: 1px 0 0;
    border-radius: 0;
    background: transparent;
  }

  .about-framer-main .about-workflow-card h3,
  .about-framer-main .about-credential-card h3 {
    min-height: 0;
    margin-top: 10px;
    font-size: 1.12rem;
  }

  .about-framer-main .about-workflow-card p,
  .about-framer-main .about-credential-card p {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .about-framer-main .about-profile-link {
    margin-top: 18px;
  }

  .about-framer-main .about-founder-letter {
    margin-top: 22px;
    padding: 20px 0 18px;
  }

  .about-framer-main .about-founder-letter p + p {
    margin-top: 16px;
  }

  .about-framer-main .about-framer-cta {
    padding-bottom: 64px;
  }

  .about-framer-main .about-framer-cta-card {
    min-height: 224px;
    padding: 30px 20px;
  }

  .about-framer-main .about-founder-image {
    width: 100%;
  }

  .about-framer-main .about-founder-image img {
    aspect-ratio: 1 / 1;
  }
}

.service-page-shell main.custody-main {
  color: var(--charcoal);
  background: var(--ivory);
}

.service-page-shell main.custody-main .framer-pill.framer-pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--sand);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-page-shell main.custody-main .framer-pill.framer-pill span {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 999px;
  background: currentColor;
}

.service-page-shell main.custody-main .custody-hero .framer-pill.framer-pill {
  margin-bottom: 34px;
  font-size: 0.68rem;
}

.service-page-shell main.custody-main .custody-cta .framer-pill.framer-pill {
  margin-bottom: 28px;
  font-size: 0.68rem;
}

.service-page-shell main.custody-main .custody-hero h1 {
  font-size: clamp(1.85rem, 2.4vw, 2.05rem);
}

.service-page-shell main.custody-main .custody-hero-copy {
  color: rgba(35, 35, 35, 0.72);
}

.service-page-shell main.custody-main,
.service-page-shell main.custody-main .custody-hero,
.service-page-shell main.custody-main .custody-intro,
.service-page-shell main.custody-main .custody-body,
.service-page-shell main.custody-main .custody-cta {
  background: var(--ivory);
}

.service-page-shell main.custody-main .custody-content-card,
.service-page-shell main.custody-main .custody-lawyer-card,
.service-page-shell main.custody-main .custody-stats-card,
.service-page-shell main.custody-main .custody-services-card,
.service-page-shell main.custody-main .custody-cta-card {
  background: var(--soft-gray);
}

.service-page-shell main.custody-main .custody-content-card {
  border-radius: 14px;
}

.service-page-shell main.custody-main .custody-feature-image {
  border-radius: 6px;
}

.service-page-shell main.custody-main .custody-lawyer-card img {
  aspect-ratio: 1 / 1;
  filter: saturate(0.92) contrast(1.02);
  object-position: center center;
}

.service-page-shell main.custody-main .custody-lawyer-card h2 {
  color: var(--bronze);
}

.service-page-shell main.custody-main .custody-stats-grid strong {
  color: var(--bronze);
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.service-page-shell main.custody-main .custody-stats-grid {
  gap: 24px;
}

.service-page-shell main.custody-main .custody-stats-grid > div {
  display: grid;
  grid-template-rows: minmax(4.25rem, auto) minmax(30px, auto);
  align-items: start;
}

.service-page-shell main.custody-main .custody-stats-grid span {
  min-height: 30px;
}

.service-page-shell main.custody-main .custody-quick-grid article {
  border-color: rgba(35, 35, 35, 0.1);
  background: var(--soft-gray);
}

.service-page-shell main.custody-main .custody-quick-grid article span {
  background: var(--bronze);
}

.service-page-shell main.custody-main .custody-quick-grid strong {
  color: var(--navy);
}

.service-page-shell main.custody-main .custody-consult-button,
.service-page-shell main.custody-main .custody-cta .about-framer-button {
  min-height: 48px;
  justify-content: center;
  gap: 0;
  padding: 0 22px;
}

.service-page-shell main.custody-main .custody-consult-button svg,
.service-page-shell main.custody-main .custody-cta .about-framer-button svg {
  width: 38px;
  height: 38px;
  display: block;
  flex: 0 0 38px;
  padding: 10px;
  color: var(--ivory);
  border-radius: 999px;
  background: var(--navy);
}

.service-page-shell main.custody-main .custody-services-card h2 {
  margin-bottom: 28px;
  font-size: 1.18rem;
}

.service-page-shell main.custody-main .custody-services-card a {
  padding-bottom: 2px;
}

.service-page-shell main.custody-main .custody-cta {
  padding-top: 6px;
}

.service-page-shell main.custody-main .custody-hero {
  border-bottom-color: rgba(35, 35, 35, 0.08);
}

.service-page-shell main.custody-main .custody-hero h1,
.service-page-shell main.custody-main .custody-intro h2,
.service-page-shell main.custody-main .custody-article h2,
.service-page-shell main.custody-main .custody-article h3,
.service-page-shell main.custody-main .custody-services-card h2,
.service-page-shell main.custody-main .custody-cta h2 {
  color: var(--navy);
}

.service-page-shell main.custody-main .custody-intro p,
.service-page-shell main.custody-main .custody-article,
.service-page-shell main.custody-main .custody-article p,
.service-page-shell main.custody-main .custody-article li,
.service-page-shell main.custody-main .custody-lawyer-card p,
.service-page-shell main.custody-main .custody-stats-grid span {
  color: var(--charcoal);
}

.service-page-shell main.custody-main .custody-article strong {
  color: var(--navy);
}

.service-page-shell main.custody-main .custody-article section {
  border-bottom-color: rgba(35, 35, 35, 0.1);
}

.service-page-shell main.custody-main .custody-breadcrumb {
  color: var(--navy);
}

.service-page-shell main.custody-main .custody-breadcrumb a,
.service-page-shell main.custody-main .custody-services-card a {
  border-bottom-color: transparent;
}

.service-page-shell main.custody-main .custody-breadcrumb a:hover,
.service-page-shell main.custody-main .custody-breadcrumb a:focus-visible,
.service-page-shell main.custody-main .custody-services-card a:hover,
.service-page-shell main.custody-main .custody-services-card a:focus-visible {
  color: var(--bronze);
  border-bottom-color: currentColor;
}

.service-page-shell main.custody-main .custody-services-card a[aria-current="page"] {
  color: var(--bronze-text);
  border-bottom-color: currentColor;
  font-weight: 800;
}

.service-page-shell main.custody-main .custody-breadcrumb span {
  background: rgba(35, 35, 35, 0.42);
}

.service-page-shell main.custody-main .custody-services-card h3 {
  color: var(--bronze);
  border-bottom-color: rgba(35, 35, 35, 0.12);
}

.service-page-shell main.custody-main .custody-services-card a {
  color: var(--navy);
}

@media (max-width: 640px) {
  .service-page-shell main.custody-main .custody-article {
    padding-inline: clamp(18px, 5vw, 24px);
  }
}

.blog-page-main {
  color: var(--charcoal);
  background: var(--ivory);
}

.blog-page-main .container {
  width: min(1080px, calc(100% - 40px));
}

.blog-page-hero {
  padding: 98px 0 62px;
  text-align: center;
  background: var(--ivory);
}

.blog-page-hero-inner {
  display: grid;
  justify-items: center;
}

.blog-page-main .framer-pill.framer-pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  color: var(--bronze-text);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-page-main .framer-pill.framer-pill span {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 999px;
  background: currentColor;
}

.blog-page-hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 2.7vw, 2.25rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.blog-page-hero h1 span {
  display: block;
}

.blog-page-hero h1 span + span {
  color: var(--charcoal);
}

.blog-page-section {
  padding: 0 0 108px;
  background: var(--ivory);
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-page-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 16px;
  color: var(--charcoal);
  border-radius: 8px;
  background: var(--soft-gray);
  transition:
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.blog-page-card:hover,
.blog-page-card:focus-visible {
  color: var(--navy);
  background: rgba(232, 229, 223, 0.72);
  transform: translateY(-2px);
}

.blog-page-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.blog-page-card .blog-page-portrait {
  object-position: center 18%;
}

.blog-page-card div {
  padding-top: 16px;
}

.blog-page-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.blog-page-card-featured img {
  height: 100%;
  min-height: 286px;
  aspect-ratio: auto;
}

.blog-page-card-featured div {
  display: grid;
  align-content: center;
  padding: 22px 8px 22px 0;
}

.blog-page-card.blog-page-card-featured h2 {
  max-width: 620px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.16;
}

.blog-page-card .blog-page-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: rgba(35, 35, 35, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.blog-page-card .blog-page-meta span:first-child {
  color: var(--bronze-text);
}

.blog-page-card .blog-page-meta span[aria-hidden="true"] {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--bronze-text);
}

.blog-page-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.blog-page-summary {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(35, 35, 35, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.blog-page-readmore {
  width: max-content;
  display: inline-flex;
  margin-top: 24px;
  color: var(--navy);
  border-bottom: 1px solid rgba(15, 26, 42, 0.32);
  font-weight: 800;
  line-height: 1.3;
}

.blog-page-cta {
  padding: 0 0 132px;
  background: var(--ivory);
}

.blog-page-cta .about-framer-cta-card {
  max-width: 1080px;
  display: grid;
  justify-items: center;
  padding: 52px 24px;
  text-align: center;
  color: var(--charcoal);
  border: 1px solid var(--soft-gray);
  border-radius: 16px;
  background: var(--soft-gray);
}

.blog-page-cta h2 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.18;
  text-wrap: balance;
}

.blog-page-cta .about-framer-button {
  margin-top: 28px;
}

.news-article-main {
  color: var(--charcoal);
  background: var(--ivory);
}

.news-article-main .container {
  width: min(1080px, calc(100% - 40px));
}

.news-article-loading {
  padding: 120px 0;
  color: var(--charcoal);
  background: var(--ivory);
}

.news-article-hero {
  padding: 76px 0 46px;
  text-align: center;
  background: var(--ivory);
}

.news-article-hero-inner {
  display: grid;
  justify-items: center;
}

.news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.news-breadcrumb a {
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.news-breadcrumb a:hover,
.news-breadcrumb a:focus-visible {
  color: var(--bronze-text);
  border-bottom-color: currentColor;
}

.news-breadcrumb span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(35, 35, 35, 0.42);
}

.news-article-main .framer-pill.framer-pill {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--bronze-text);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-article-main .framer-pill.framer-pill span {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 999px;
  background: currentColor;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 0 18px;
  color: rgba(35, 35, 35, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.news-article-meta span:first-child {
  color: var(--bronze-text);
}

.news-article-meta span[aria-hidden="true"] {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--bronze-text);
}

.news-article-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.news-article-byline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(35, 35, 35, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.news-article-byline strong {
  color: var(--navy);
}

.news-article-byline > span[aria-hidden="true"] {
  width: 5px;
  height: 5px;
  align-self: center;
  border-radius: 999px;
  background: rgba(35, 35, 35, 0.32);
}

.news-article-summary {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.75;
}

.news-article-feature {
  padding: 0 0 56px;
  background: var(--ivory);
}

.news-article-image {
  width: 100%;
  max-height: 560px;
  border: 1px solid rgba(15, 26, 42, 0.12);
  border-radius: 12px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.news-article-portrait {
  max-height: 620px;
  object-position: center 18%;
  background: var(--soft-gray);
}

.news-article-section {
  padding: 0 0 108px;
  background: var(--ivory);
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.news-article-body {
  min-width: 0;
}

.news-article-content-section {
  margin: 0 0 34px;
  padding: 0 0 34px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.12);
}

.news-article-step {
  margin: 0 0 8px;
  color: var(--bronze-text);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.news-article-body h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.news-article-body p {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.75;
}

.news-article-body ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--charcoal);
}

.news-article-body li {
  padding-left: 4px;
}

.news-article-note {
  padding: 22px;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 10px;
  background: var(--soft-gray);
}

.news-article-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.news-article-note p {
  margin: 0;
}

.news-article-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.news-article-side-card {
  padding: 24px;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 12px;
  background: var(--soft-gray);
}

.news-article-side-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.25;
}

.news-article-side-card p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.94rem;
  line-height: 1.65;
}

.news-article-side-card .about-framer-button {
  width: 100%;
  margin-top: 20px;
  justify-content: center;
}

.news-related-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.news-related-list a {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.12);
  color: var(--charcoal);
  transition: color 160ms ease;
}

.news-related-list a:hover,
.news-related-list a:focus-visible {
  color: var(--bronze-text);
}

.news-related-list span {
  color: var(--bronze-text);
  font-size: 0.75rem;
  font-weight: 800;
}

.news-related-list strong {
  color: inherit;
  font-size: 0.94rem;
  line-height: 1.35;
}

.news-article-cta {
  padding-top: 0;
}

@media (max-width: 920px) {
  .blog-page-grid {
    grid-template-columns: 1fr;
  }

  .blog-page-card-featured {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-page-card-featured img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.5 / 1;
  }

  .blog-page-card-featured div {
    padding: 16px 0 0;
  }

  .news-article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news-article-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .blog-page-main .container {
    width: min(100% - 28px, 1080px);
  }

  .blog-page-hero {
    padding: 62px 0 42px;
  }

  .blog-page-hero h1 {
    font-size: clamp(1.3rem, 6.45vw, 1.72rem);
  }

  .blog-page-hero h1 span:first-child {
    white-space: nowrap;
  }

  .blog-page-main .framer-pill.framer-pill {
    margin-bottom: 24px;
  }

  .blog-page-section {
    padding-bottom: 72px;
  }

  .blog-page-card {
    padding: 14px;
  }

  .blog-page-card img {
    aspect-ratio: 1.25 / 1;
  }

  .blog-page-card.blog-page-card-featured h2 {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .blog-page-summary {
    margin-top: 14px;
  }

  .blog-page-cta {
    padding-bottom: 88px;
  }

  .blog-page-cta .about-framer-cta-card {
    padding: 42px 18px;
    border-radius: 12px;
  }

  .news-article-main .container {
    width: min(100% - 28px, 1080px);
  }

  .news-article-hero {
    padding: 52px 0 34px;
  }

  .news-breadcrumb {
    margin-bottom: 26px;
  }

  .news-article-hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .news-article-feature {
    padding-bottom: 38px;
  }

  .news-article-image {
    max-height: 420px;
    border-radius: 10px;
  }

  .news-article-section {
    padding-bottom: 74px;
  }

  .news-article-content-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  .news-article-side-card {
    padding: 20px;
  }
}

.profile-page-main,
.profile-hero,
.profile-stats,
.profile-section,
.profile-cta {
  color: var(--charcoal);
  background: var(--ivory);
}

.profile-page-main {
  overflow: hidden;
}

.profile-page-main .container {
  width: min(1120px, calc(100% - 40px));
}

.profile-page-main .framer-pill.framer-pill {
  width: max-content;
  max-width: calc(100vw - 28px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--bronze);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.profile-page-main .framer-pill.framer-pill span {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 999px;
  background: currentColor;
}

.profile-hero {
  padding: 76px 0 64px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.08);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 58px;
  align-items: center;
}

.profile-hero-copy {
  min-width: 0;
}

.profile-hero h1,
.profile-section h2,
.profile-cta h2 {
  margin: 0;
  color: var(--navy);
  letter-spacing: 0;
}

.profile-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
}

.profile-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  font-weight: 700;
  line-height: 1.32;
}

.profile-summary {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(35, 35, 35, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.profile-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 28px 0 0;
}

.profile-proof-list div {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.profile-proof-list dt {
  margin: 0 0 8px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.profile-proof-list dd {
  margin: 0;
  color: rgba(35, 35, 35, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.profile-hero-actions .about-framer-button,
.profile-cta .about-framer-button {
  margin-top: 0;
}

.profile-secondary-link {
  color: var(--navy);
  border-bottom: 1px solid rgba(15, 26, 42, 0.34);
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease;
}

.profile-secondary-link:hover,
.profile-secondary-link:focus-visible {
  color: var(--bronze);
  border-bottom-color: currentColor;
}

.profile-portrait-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 8px;
  background: var(--soft-gray);
  box-shadow: 0 22px 48px rgba(15, 26, 42, 0.08);
}

.profile-portrait-card img {
  display: block;
  width: 100%;
  height: clamp(420px, 39vw, 500px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.02);
}

.profile-portrait-card figcaption {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border-top: 1px solid rgba(15, 26, 42, 0.08);
}

.profile-portrait-card strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.25;
}

.profile-portrait-card span {
  color: rgba(35, 35, 35, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.profile-stats {
  padding: 0;
}

.profile-roles-section {
  padding: 34px 0 0;
}

.profile-page-roles {
  max-width: 920px;
  margin: 0 auto;
}

.profile-page-roles .profile-role-card {
  min-height: 118px;
  padding: 18px;
}

.profile-roles-section + .profile-section {
  padding-top: 66px;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(35, 35, 35, 0.08);
}

.profile-stats-grid div {
  display: grid;
  gap: 9px;
  min-height: 132px;
  align-content: center;
  padding: 28px 26px;
}

.profile-stats-grid div + div {
  border-left: 1px solid rgba(35, 35, 35, 0.08);
}

.profile-stats strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 3.5vw, 3.1rem);
  line-height: 0.95;
}

.profile-stats span {
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.profile-section {
  padding: 96px 0;
}

.profile-section + .profile-section {
  border-top: 1px solid rgba(35, 35, 35, 0.08);
}

.profile-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 68px;
  align-items: start;
}

.profile-section h2 {
  max-width: 620px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.14;
  text-wrap: balance;
}

.profile-intro-text p,
.profile-sticky-copy p,
.profile-info-card p,
.profile-method-grid p,
.profile-timeline span {
  color: rgba(35, 35, 35, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.profile-intro-text p {
  max-width: 680px;
  margin: 0;
}

.profile-intro-text p + p {
  margin-top: 18px;
}

.profile-section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.profile-info-card,
.profile-method-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 8px;
  background: var(--soft-gray);
}

.profile-method-grid article {
  display: grid;
  align-content: start;
}

.profile-info-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--bronze);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.profile-info-card h3,
.profile-method-grid h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.25;
}

.profile-method-grid h3 {
  min-height: 2.5em;
}

.profile-info-card p,
.profile-method-grid p {
  margin: 14px 0 0;
}

.profile-timeline-section {
  background: rgba(232, 229, 223, 0.35);
}

.profile-sticky-copy {
  position: sticky;
  top: 104px;
}

.profile-sticky-copy p:not(.framer-pill) {
  max-width: 420px;
  margin: 18px 0 0;
}

.profile-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 28px;
  list-style: none;
}

.profile-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(35, 35, 35, 0.14);
}

.profile-timeline li {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 0 0 30px;
}

.profile-timeline li:last-child {
  padding-bottom: 0;
}

.profile-timeline li::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 7px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--bronze);
  border-radius: 999px;
  background: var(--ivory);
}

.profile-timeline time {
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.profile-timeline strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.25;
}

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

.profile-preparation {
  background: rgba(232, 229, 223, 0.3);
}

.profile-prep-card {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 8px;
  background: var(--ivory);
}

.profile-prep-card p {
  max-width: 680px;
  margin: 0;
  color: rgba(35, 35, 35, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.profile-prep-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-prep-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(35, 35, 35, 0.74);
  font-size: 0.98rem;
  line-height: 1.62;
}

.profile-prep-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bronze);
}

.profile-prep-card .profile-secondary-link {
  width: max-content;
}

.profile-cta {
  padding: 78px 0 132px;
}

.profile-cta-card {
  display: grid;
  justify-items: center;
  min-height: 292px;
  align-content: center;
  padding: 46px 28px;
  text-align: center;
  border: 1px solid var(--soft-gray);
  border-radius: 8px;
  background: var(--soft-gray);
}

.profile-cta h2 {
  max-width: 650px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.18;
}

@media (max-width: 980px) {
  .profile-hero-grid,
  .profile-two-column {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .profile-portrait-card {
    width: min(100%, 440px);
  }

  .profile-portrait-card img {
    height: clamp(380px, 70vw, 520px);
  }

  .profile-sticky-copy {
    position: static;
  }

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

@media (max-width: 720px) {
  .profile-page-main .container {
    width: min(100% - 28px, 1080px);
  }

  .profile-hero {
    padding: 58px 0 48px;
  }

  .profile-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }

  .profile-hero-copy {
    display: flex;
    flex-direction: column;
  }

  .profile-lead {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
  }

  .profile-hero-actions {
    order: 1;
    margin-top: 24px;
  }

  .profile-proof-list {
    order: 2;
    margin-top: 24px;
  }

  .profile-stats-grid,
  .profile-role-grid,
  .profile-card-grid,
  .profile-proof-list,
  .profile-method-grid {
    grid-template-columns: 1fr;
  }

  .profile-role-card,
  .profile-page-roles .profile-role-card {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    padding: 16px;
  }

  .profile-stats-grid div + div {
    border-top: 1px solid rgba(35, 35, 35, 0.08);
    border-left: 0;
  }

  .profile-section {
    padding: 68px 0;
  }

  .profile-info-card,
  .profile-method-grid article,
  .profile-prep-card {
    padding: 24px 22px;
  }

  .profile-cta {
    padding-bottom: 86px;
  }

  .profile-cta-card {
    min-height: 248px;
    padding: 38px 18px;
  }

  .profile-cta .about-framer-button {
    margin-top: 22px;
  }
}

@media (max-width: 480px) {
  .profile-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-hero-actions .about-framer-button {
    width: 100%;
    justify-content: center;
  }

  .profile-secondary-link {
    width: max-content;
  }
}

@media (max-width: 980px) {
  .home-news-framer {
    padding: 92px 0 104px;
  }

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

@media (max-width: 640px) {
  .home-news-framer {
    padding: 74px 0 84px;
  }

  .home-news-heading {
    margin-bottom: 42px;
  }

  .home-news-framer .container {
    width: min(100% - 28px, 1080px);
  }

  .home-news-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-height: none;
    overflow: visible;
  }

  .home-news-grid::after {
    display: none;
  }

  .home-news-card {
    padding: 14px;
  }

  .home-news-card img {
    aspect-ratio: 1.28 / 1;
  }

  .home-news-button {
    width: min(100%, 260px);
    justify-content: space-between;
  }

  .home-news-actions {
    margin-top: 32px;
  }
}

@media (max-width: 980px) {
  .home-profile {
    padding: 88px 0;
  }

  .home-profile-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-profile-media {
    width: min(100%, 430px);
  }
}

@media (max-width: 640px) {
  .home-profile {
    padding: 70px 0;
  }

  .home-profile-panel {
    gap: 34px;
  }

  .home-profile-copy .framer-pill.framer-pill {
    margin-inline: 0;
  }

  .home-profile-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .home-profile-copy > p:not(.framer-pill) {
    margin-top: 18px;
  }

  .home-profile-stats {
    margin-top: 26px;
  }

  .home-profile-stats div {
    padding: 18px 10px 18px 0;
  }

  .home-profile-stats div + div {
    padding-left: 12px;
  }

  .home-profile-stats strong {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .home-profile-stats span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

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

  .home-profile-actions .about-framer-button {
    width: 100%;
    justify-content: center;
  }

  .home-profile-link {
    width: max-content;
  }
}

/* Contact page refinement */
.contact-main .contact-reference-hero {
  padding: 48px 0 32px;
}

.contact-main .contact-reference-heading h1 {
  max-width: 680px;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.contact-main .contact-reference-heading p:last-child {
  max-width: 760px;
  margin-top: 14px;
  color: var(--charcoal);
}

.contact-main .contact-reference-section {
  padding: 0 0 112px;
  background: var(--ivory);
}

.contact-main .contact-reference-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "info form"
    "map form";
  gap: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-main .contact-reference-info,
.contact-main .contact-reference-map,
.contact-main .contact-reference-form {
  min-width: 0;
  border: 1px solid rgba(15, 26, 42, 0.1);
  border-radius: 12px;
  background: var(--soft-gray);
}

.contact-main .contact-reference-info {
  grid-area: info;
  padding: 34px 30px;
}

.contact-main .contact-reference-map {
  grid-area: map;
  min-height: 278px;
  overflow: hidden;
}

.contact-main .contact-reference-form {
  grid-area: form;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 32px 38px;
}

.contact-main .contact-reference-info h2 {
  width: 100%;
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(1.36rem, 1.56vw, 1.58rem);
  line-height: 1.16;
}

.contact-main .contact-reference-info h2 .contact-title-line {
  display: block;
}

@media (min-width: 921px) {
  .contact-main .contact-reference-info h2 .contact-title-line {
    white-space: nowrap;
  }
}

.contact-main .contact-reference-detail {
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-bottom-color: rgba(35, 35, 35, 0.12);
}

.contact-main .contact-reference-detail > svg,
.contact-main .contact-reference-detail > i svg {
  margin-top: 25px;
}

.contact-address-link {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-reference-detail .contact-address-line {
  display: block;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.contact-reference-detail .contact-address-desktop,
.contact-reference-detail .contact-address-mobile {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.contact-reference-detail .contact-address-desktop {
  display: block;
}

.contact-reference-detail .contact-address-mobile {
  display: none;
}

.contact-reference-map-mobile {
  display: none;
}

.contact-reference-detail .contact-schedule-line {
  display: block;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

@media (min-width: 921px) {
  .contact-address-line {
    white-space: nowrap;
  }
}

.contact-reference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-reference-actions a {
  min-width: 142px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--navy);
  border: 1px solid rgba(15, 26, 42, 0.12);
  border-radius: 999px;
  background: var(--ivory);
  font-weight: 800;
  text-decoration: none;
}

.contact-reference-actions a:first-child {
  border-color: transparent;
  background: var(--bronze);
}

.contact-reference-actions a:hover,
.contact-reference-actions a:focus-visible {
  border-color: rgba(181, 155, 104, 0.48);
  background: var(--sand-soft);
}

.contact-form-heading {
  margin-bottom: 10px;
}

.contact-form-heading .framer-pill.framer-pill {
  margin-bottom: 18px;
}

.contact-form-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  line-height: 1.18;
}

.contact-form-heading p:not(.framer-pill) {
  max-width: none;
  margin: 12px 0 0;
  color: rgba(35, 35, 35, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (min-width: 921px) {
  .contact-form-heading p:not(.framer-pill) {
    white-space: nowrap;
  }
}

.contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

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

.contact-main .contact-reference-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.contact-label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  width: max-content;
  color: var(--charcoal);
}

.contact-label-required {
  color: var(--bronze);
}

.contact-main .contact-reference-form input,
.contact-main .contact-reference-form select,
.contact-main .contact-reference-form textarea {
  min-height: 44px;
  color: var(--charcoal);
  border-color: rgba(15, 26, 42, 0.12);
  background: rgba(246, 241, 232, 0.72);
}

.contact-main .contact-reference-form input::placeholder,
.contact-main .contact-reference-form textarea::placeholder {
  color: rgba(35, 35, 35, 0.46);
}

.contact-main .contact-reference-form input:focus,
.contact-main .contact-reference-form select:focus,
.contact-main .contact-reference-form textarea:focus {
  border-color: rgba(181, 155, 104, 0.86);
  box-shadow: 0 0 0 3px rgba(181, 155, 104, 0.18);
  outline: none;
}

.contact-main .contact-reference-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form-privacy {
  max-width: 540px;
  margin: 0;
  color: rgba(35, 35, 35, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form-privacy a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-main .contact-reference-submit {
  width: min(100%, 310px);
  min-height: 50px;
  justify-self: start;
  margin-top: 14px;
  border-radius: 8px;
  font-size: 1.05rem;
}

.contact-main .contact-reference-form .form-note {
  margin: 0;
  color: rgba(35, 35, 35, 0.72);
}

.contact-main .contact-reference-form .form-note:not(:empty) {
  padding: 12px 14px;
  border: 1px solid rgba(181, 155, 104, 0.35);
  border-radius: 8px;
  background: rgba(181, 155, 104, 0.1);
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 920px) {
  .contact-main .contact-reference-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "form"
      "map";
  }

  .contact-main .contact-reference-map {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .contact-main .contact-reference-hero {
    padding: 56px 0 34px;
  }

  .contact-main .contact-reference-heading h1 {
    width: min(330px, calc(100vw - 40px));
    max-width: min(330px, calc(100vw - 40px));
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .contact-main .contact-reference-card {
    width: min(100% - 28px, 1080px);
    max-width: calc(100vw - 28px);
    gap: 16px;
  }

  .contact-main .contact-reference-info,
  .contact-main .contact-reference-form {
    padding: 22px;
  }

  .contact-reference-card .contact-reference-info > .framer-pill.framer-pill {
    display: inline-flex;
  }

  .contact-main .contact-reference-detail {
    padding: 18px 0;
  }

  .contact-main .contact-reference-info h2 {
    font-size: clamp(1.45rem, 7vw, 1.86rem);
  }

  .contact-address-link {
    font-size: 1rem;
  }

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

  .contact-reference-actions {
    display: grid;
  }

  .contact-reference-actions a,
  .contact-main .contact-reference-submit {
    width: 100%;
  }

  .contact-main .contact-reference-map {
    min-height: 280px;
  }

  .contact-main .contact-reference-form textarea {
    min-height: 170px;
  }
}

/* Homepage selected refinements. */
.home-page .hero {
  min-height: clamp(720px, 92vh, 920px);
}

.home-page .hero-content {
  padding: 148px 0 158px;
}

.home-page .actions {
  align-items: center;
}

.home-page .hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 241, 232, 0.42);
}

.home-page .home-hero-stats {
  bottom: 28px;
}

.home-page .home-hero-stats > div {
  display: grid;
  grid-template-rows: minmax(4.25rem, auto) auto;
  align-content: start;
}

.home-page .home-hero-stats strong {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.home-page .home-hero-stats strong.home-hero-place {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.05;
  text-wrap: balance;
}

.home-page .home-section {
  padding: 86px 0;
}

.home-page .home-section-heading {
  margin-bottom: 46px;
}

.home-page .home-section h2,
.home-page .faq-framer-grid h2,
.home-page .contact-panel-info h2 {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  text-wrap: balance;
}

.home-page .framer-pill.framer-pill,
.home-page .contact-panel-info article span,
.home-page .home-news-card p span:first-child,
.home-page .testimonial-tag {
  color: var(--bronze-text);
}

.home-page .framer-pill.framer-pill span,
.home-page .home-news-card p span[aria-hidden="true"] {
  background: currentColor;
}

.home-page .service-card-catalog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-page .service-family-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-content: start;
  padding: 28px;
  border: 1px solid rgba(35, 35, 35, 0.1);
  border-radius: 8px;
  background: var(--soft-gray);
}

.home-page .service-family-card:last-child {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.1);
}

.home-page .service-family-card .service-family-copy {
  display: grid;
  grid-template-rows: auto minmax(2.45em, auto) auto auto;
  align-content: start;
}

.home-page .service-family-kicker {
  margin: 0 0 12px;
  color: var(--bronze-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .service-family-card .service-family-copy h3 {
  max-width: 500px;
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.home-page .service-family-card .service-family-copy p:not(.service-family-kicker) {
  margin-bottom: 22px;
}

.home-page .service-family-card .service-link-list {
  padding-right: 0;
}

.home-page .service-family-card .service-link-list a {
  min-height: 44px;
  padding: 12px 0;
}

.home-page .home-process .home-section-heading,
.home-page .home-testimonials .home-section-heading,
.home-page .home-news-heading {
  margin-bottom: 42px;
}

.home-page .timeline-list article {
  min-height: 116px;
}

.home-page .home-faq {
  padding: 78px 0;
}

.home-page .faq-framer-grid {
  align-items: start;
}

.home-page .faq-framer-list details {
  border-radius: 8px;
}

.home-page .faq-framer-list summary {
  min-height: 64px;
}

.home-page .home-testimonials {
  padding: 78px 0 84px;
}

.home-page .dark-testimonial {
  min-height: 304px;
  gap: 16px;
  padding: 20px;
}

.home-page .dark-testimonial .testimonial-tag {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .dark-testimonial p:not(.testimonial-tag) {
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.38;
}

.home-page .testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(35, 35, 35, 0.22);
  cursor: pointer;
}

.home-page .testimonial-dots button.is-active,
.home-page .testimonial-dots button[aria-current="true"] {
  background: var(--bronze-text);
}

.home-page .home-news-framer {
  padding: 84px 0 92px;
}

.home-page .home-news-heading {
  margin-bottom: 42px;
}

.home-page .home-news-grid {
  max-height: none;
  overflow: visible;
}

.home-page .home-news-grid::after {
  display: none;
}

.home-page .home-news-actions {
  margin-top: 30px;
}

.home-page .home-news-card {
  min-height: auto;
}

.home-page .home-contact {
  padding: 84px 0 98px;
}

.home-page .contact-panel-framer {
  gap: 34px;
  padding: 34px;
  border-radius: 12px;
}

.home-page .contact-panel-info article {
  padding: 18px 0;
}

.home-page .contact-panel-map {
  min-height: 220px;
  margin-top: 18px;
}

.home-page .framer-form {
  gap: 12px;
  padding: 22px;
}

.home-page .framer-form textarea {
  min-height: 132px;
}

.home-page .framer-form button {
  margin-top: 12px;
}

.home-page .form-privacy,
.home-page .form-note {
  margin: 0;
  color: rgba(35, 35, 35, 0.7);
  font-size: 0.82rem;
  line-height: 1.45;
}

.home-page .form-note {
  color: var(--bronze-text);
  font-weight: 700;
}

@media (max-width: 920px) {
  .home-page .hero {
    min-height: 100svh;
  }

  .home-page .home-section,
  .home-page .home-faq,
  .home-page .home-testimonials,
  .home-page .home-news-framer,
  .home-page .home-contact {
    padding: 68px 0;
  }

  .home-page .service-card-catalog,
  .home-page .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-page .service-family-card .service-family-copy {
    grid-template-rows: auto;
  }

  .home-page .contact-panel-framer {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .home-page .hero-content {
    width: min(100% - 28px, 402px);
    padding: calc(clamp(166px, 25svh, 212px) + 54px) 0 20px;
    transform: translateY(clamp(24px, 4svh, 38px));
  }

  .home-page .home-hero-stats strong {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }

  .home-page .home-hero-stats span {
    font-size: 0.5rem;
  }

  .home-page .home-section-heading,
  .home-page .home-process .home-section-heading,
  .home-page .home-testimonials .home-section-heading,
  .home-page .home-news-heading {
    margin-bottom: 34px;
  }

  .home-page .service-family-card {
    padding: 22px;
  }

  .home-page .service-family-card:last-child {
    padding-bottom: 22px;
  }

  .home-page .home-profile-panel {
    gap: 28px;
  }

  .home-page .home-profile-copy .framer-pill.framer-pill {
    margin-bottom: 18px;
  }

  .home-page .home-profile-copy h2 {
    font-size: clamp(1.78rem, 8vw, 2.28rem);
  }

  .home-page .home-profile-copy > p:not(.framer-pill) {
    margin-top: 16px;
    line-height: 1.58;
  }

  .home-page .home-profile-stats {
    margin-top: 20px;
  }

  .home-page .home-profile-stats div {
    padding: 14px 10px 14px 0;
  }

  .home-page .home-profile-stats div + div {
    padding-left: 12px;
  }

  .home-page .home-profile-stats strong {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .home-page .home-profile-list {
    gap: 8px;
    margin-top: 18px;
  }

  .home-page .home-profile-actions {
    margin-top: 22px;
  }

  .home-page .home-profile-media img {
    max-height: 360px;
    aspect-ratio: 4 / 3;
    object-position: center 18%;
  }

  .home-page .home-profile-media figcaption {
    padding: 14px 16px;
  }

  .home-page .dark-testimonial {
    min-height: 286px;
  }

  .home-page .home-news-card {
    padding: 14px;
  }

  .home-page .contact-panel-info h2 {
    margin-bottom: 18px;
  }

  .home-page .contact-panel-info article {
    padding: 14px 0;
  }

  .home-page .contact-panel-map {
    min-height: 200px;
  }

  .home-page .contact-panel-framer {
    padding: 18px;
  }

  .home-page .framer-form {
    padding: 18px;
  }

  .home-page .framer-form input,
  .home-page .framer-form select {
    min-height: 38px;
  }

  .home-page .framer-form textarea {
    min-height: 112px;
  }
}

/* Service category pages matched to the Family Law reference layout. */
.service-page-shell main.family-law-main {
  color: var(--charcoal);
  background: var(--ivory);
}

.service-page-shell main.family-law-main .container {
  width: min(1000px, calc(100% - 40px));
}

.service-page-shell main.family-law-main .family-law-hero,
.service-page-shell main.family-law-main .family-law-section,
.service-page-shell main.family-law-main .family-law-cta {
  background: var(--ivory);
}

.service-page-shell main.family-law-main .family-law-hero {
  padding: 132px 0 88px;
}

.service-page-shell main.family-law-main .framer-pill.framer-pill {
  width: max-content;
  max-width: calc(100vw - 40px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  color: var(--bronze-text);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-page-shell main.family-law-main .framer-pill.framer-pill span {
  width: 8px;
  height: 8px;
  display: block;
  flex: 0 0 8px;
  border-radius: 999px;
  background: currentColor;
}

.service-page-shell main.family-law-main .family-law-hero h1,
.service-page-shell main.family-law-main .family-law-copy h2,
.service-page-shell main.family-law-main .family-law-title,
.service-page-shell main.family-law-main .family-law-cta h2 {
  font-family: var(--font-sans);
}

.service-page-shell main.family-law-main .family-law-hero h1 {
  color: var(--navy);
  max-width: 650px;
  font-size: clamp(1.8rem, 2.4vw, 2.05rem);
  line-height: 1.25;
  white-space: normal;
  text-wrap: balance;
}

.service-page-shell main.family-law-main .family-law-subtitle {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(35, 35, 35, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  font-weight: 650;
  line-height: 1.55;
  text-wrap: balance;
}

.service-page-shell main.family-law-main .family-law-section {
  padding: 0 0 120px;
}

.service-page-shell main.family-law-main .family-law-grid {
  grid-template-columns: minmax(0, 480px) minmax(0, 480px);
  gap: 40px;
}

.service-page-shell main.family-law-main .family-law-copy img {
  aspect-ratio: 1.85 / 1;
  border-color: rgba(35, 35, 35, 0.1);
  background: var(--soft-gray);
}

.service-page-shell main.family-law-main .family-law-copy h2 {
  color: var(--navy);
  font-size: clamp(1.45rem, 2.15vw, 1.68rem);
}

.service-page-shell main.family-law-main .family-law-copy p {
  color: rgba(35, 35, 35, 0.72);
}

.service-page-shell main.family-law-main .family-law-card {
  border-color: rgba(35, 35, 35, 0.1);
  background: var(--soft-gray);
}

.service-page-shell main.family-law-main .family-law-card.is-active {
  border-color: rgba(35, 35, 35, 0.1);
  background: var(--soft-gray);
}

.service-page-shell main.family-law-main .family-law-card button {
  color: var(--navy);
}

.service-page-shell main.family-law-main .family-law-index {
  color: rgba(35, 35, 35, 0.32);
}

.service-page-shell main.family-law-main .family-law-card.is-active .family-law-index {
  color: var(--bronze-text);
}

.service-page-shell main.family-law-main .family-law-title {
  color: var(--navy);
}

.service-page-shell main.family-law-main .family-law-panel p {
  color: rgba(35, 35, 35, 0.72);
}

.service-page-shell main.family-law-main .family-law-learn {
  gap: 0;
  padding: 0 24px;
  color: var(--navy);
  background: var(--sand);
}

.service-page-shell main.family-law-main .family-law-learn svg {
  display: none;
}

.service-page-shell main.family-law-main .family-law-panel img {
  aspect-ratio: 2.75 / 1;
  background: var(--soft-gray);
}

.service-page-shell main.family-law-main .family-law-trust {
  padding: 0 0 132px;
  background: var(--ivory);
}

.service-page-shell main.family-law-main .family-law-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-page-shell main.family-law-main .family-law-trust-grid article {
  min-height: 126px;
  display: grid;
  grid-template-rows: minmax(3rem, auto) 1fr;
  align-content: start;
  gap: 12px;
  padding: 24px 22px;
  border: 1px solid rgba(35, 35, 35, 0.1);
  border-radius: 8px;
  background: var(--soft-gray);
}

.service-page-shell main.family-law-main .family-law-trust-grid strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.15;
}

.service-page-shell main.family-law-main .family-law-trust-grid span {
  display: block;
  color: rgba(35, 35, 35, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-page-shell main.family-law-main .family-law-cta {
  padding: 0 0 150px;
}

.service-page-shell main.family-law-main .family-law-cta .custody-cta-card {
  width: min(1080px, calc(100% - 40px));
  min-height: 278px;
  border-radius: 16px;
  background: var(--soft-gray);
}

.service-page-shell main.family-law-main .family-law-cta .framer-pill.framer-pill {
  margin-bottom: 28px;
}

.service-page-shell main.family-law-main .family-law-cta h2 {
  color: var(--navy);
}

.service-page-shell main.family-law-main .family-law-cta .about-framer-button {
  gap: 0;
  padding: 0 30px;
}

.service-page-shell main.family-law-main .family-law-cta .about-framer-button svg {
  display: none;
}

@media (max-width: 920px) {
  .service-page-shell main.family-law-main .family-law-grid {
    grid-template-columns: 1fr;
  }

  .service-page-shell main.family-law-main .family-law-copy {
    width: min(100%, 560px);
  }

  .service-page-shell main.family-law-main .family-law-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-page-shell main.family-law-main .container,
  .service-page-shell main.family-law-main .family-law-cta .custody-cta-card {
    width: min(100% - 28px, 1080px);
  }

  .service-page-shell main.family-law-main .family-law-hero {
    padding: 58px 0 42px;
  }

  .service-page-shell main.family-law-main .framer-pill.framer-pill {
    max-width: calc(100vw - 28px);
    justify-content: center;
    margin-bottom: 26px;
    white-space: normal;
  }

  .service-page-shell main.family-law-main .family-law-hero h1 {
    max-width: min(390px, 100%);
    font-size: clamp(1.32rem, 5.6vw, 1.52rem);
  }

  .service-page-shell main.family-law-main .family-law-subtitle {
    max-width: min(350px, 100%);
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .service-page-shell main.family-law-main .family-law-section {
    padding-bottom: 76px;
  }

  .service-page-shell main.family-law-main .family-law-grid {
    gap: 24px;
  }

  .service-page-shell main.family-law-main .family-law-copy img {
    aspect-ratio: 1.72 / 1;
  }

  .service-page-shell main.family-law-main .family-law-card button {
    grid-template-columns: 44px minmax(0, 1fr) 38px;
  }

  .service-page-shell main.family-law-main .family-law-title {
    justify-self: start;
    text-align: left;
  }

  .service-page-shell main.family-law-main .family-law-cta {
    padding-bottom: 88px;
  }

  .service-page-shell main.family-law-main .family-law-trust {
    padding-bottom: 76px;
  }

  .service-page-shell main.family-law-main .family-law-trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-page-shell main.family-law-main .family-law-trust-grid article {
    min-height: auto;
    padding: 20px;
  }

  .service-page-shell main.family-law-main .family-law-cta .custody-cta-card {
    min-height: 260px;
    padding: 34px 18px;
    border-radius: 14px;
  }
}

/* Mobile hardening across the static site. */
@media (max-width: 920px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  article,
  aside,
  form,
  nav,
  header,
  footer,
  .container,
  .narrow {
    min-width: 0;
  }

  iframe,
  video,
  canvas {
    max-width: 100%;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  body:not(.home-page) {
    padding-top: 64px;
  }

  .home-page .hero {
    margin-top: 0;
  }

  .navbar {
    width: min(100% - 28px, 1080px);
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
    align-items: center;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    line-height: 1.08;
  }

  .brand-mark {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .brand > span:last-child {
    min-width: 0;
    font-size: clamp(0.78rem, 2.6vw, 0.95rem);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    z-index: 140;
    flex: 0 0 44px;
    justify-self: end;
  }

  .nav-links {
    top: 64px;
    bottom: auto;
    width: 100vw;
    max-width: 100vw;
    height: calc(100svh - 64px);
    padding: 24px max(18px, env(safe-area-inset-left)) calc(40px + env(safe-area-inset-bottom));
    gap: 16px;
    align-content: start;
    overscroll-behavior: contain;
    opacity: 1 !important;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
  }

  .nav-links.is-open {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
    clip-path: none !important;
    transition: none;
  }

  .nav-links.is-open a,
  .nav-links.is-open .nav-dropdown-trigger {
    width: auto;
    max-width: 100%;
    font-size: clamp(1.05rem, 4.7vw, 1.22rem);
    line-height: 1.18;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav-links.is-open .nav-dropdown {
    width: 100%;
  }

  .nav-links.is-open .nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
  }

  .nav-links.is-open .nav-dropdown-panel {
    width: min(100%, calc(100vw - 56px));
    max-width: none;
    margin: 0 0 6px 18px;
  }

  .nav-links.is-open .nav-dropdown-panel a {
    width: 100%;
    max-width: 100%;
    line-height: 1.28;
  }

  .page-hero-grid,
  .split,
  .detail-grid,
  .contact-grid,
  .service-family,
  .faq-framer-grid,
  .contact-panel-framer,
  .profile-hero-grid,
  .profile-two-column,
  .news-article-layout,
  .contact-main .contact-reference-card,
  .custody-grid,
  .custody-content-card,
  .family-law-grid {
    grid-template-columns: 1fr;
  }

  .side-panel,
  .news-article-aside,
  .profile-sticky-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow,
  .navbar,
  .about-framer-main .container,
  .profile-page-main .container,
  .blog-page-main .container,
  .news-article-main .container,
  .contact-main .container,
  .custody-main .container,
  .family-law-main .container,
  .service-page-shell main.family-law-main .container {
    width: min(100% - 28px, 1080px);
    max-width: calc(100vw - 28px);
  }

  h1,
  h2,
  h3,
  p,
  a,
  button,
  strong,
  span {
    overflow-wrap: break-word;
  }

  .hero h1,
  .hero-home h1,
  .page-hero h1,
  .article-hero h1,
  .about-framer-hero h1,
  .profile-hero h1,
  .blog-page-hero h1,
  .news-article-hero h1,
  .contact-reference-heading h1,
  .custody-hero h1,
  .family-law-hero h1,
  .service-page-shell main.family-law-main .family-law-hero h1 {
    width: 100%;
    max-width: 100%;
    line-height: 1.12;
    text-wrap: balance;
    white-space: normal;
  }

  .section,
  .page-hero,
  .about-framer-story,
  .about-framer-founder,
  .profile-section,
  .blog-page-section,
  .news-article-section,
  .home-page .home-section,
  .home-page .home-faq,
  .home-page .home-testimonials,
  .home-page .home-news-framer,
  .home-page .home-contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading,
  .home-section-heading,
  .home-page .home-section-heading,
  .home-page .home-process .home-section-heading,
  .home-page .home-testimonials .home-section-heading,
  .home-page .home-news-heading,
  .profile-section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .split h2,
  .contact-band h2,
  .home-page .home-section h2,
  .home-page .faq-framer-grid h2,
  .home-page .contact-panel-info h2,
  .profile-section h2,
  .blog-page-cta h2,
  .news-article-side-card h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.16;
  }

  .framer-pill.framer-pill {
    max-width: 100%;
    white-space: normal;
  }

  .actions,
  .profile-hero-actions,
  .home-profile-actions,
  .contact-reference-actions,
  .custody-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .button,
  .hero-cta,
  .hero-cta-secondary,
  .about-framer-button,
  .home-news-button,
  .contact-reference-actions a,
  .contact-main .contact-reference-submit,
  .custody-hero-actions .about-framer-button,
  .profile-hero-actions .about-framer-button {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    justify-content: center;
    padding-inline: 16px;
  }

  .home-profile-link,
  .profile-secondary-link {
    width: auto;
    max-width: 100%;
    justify-self: start;
  }

  .home-page .hero {
    min-height: auto;
    display: block;
  }

  .home-page .hero-content {
    width: min(100% - 32px, 390px);
    padding: 104px 0 18px;
    transform: none;
  }

  .hero-home h1 {
    max-width: 370px;
    font-size: clamp(1.9rem, 8.2vw, 2.24rem);
    line-height: 1.05;
  }

  .hero-copy {
    max-width: 360px;
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-home h1 span,
  .hero-copy span {
    display: inline;
    white-space: normal;
  }

  .hero-home h1 span + span::before,
  .hero-copy span + span::before {
    content: " ";
  }

  .home-page .actions {
    gap: 9px;
    margin-top: 18px;
  }

  .home-page .hero-cta,
  .home-page .hero-cta-secondary {
    min-height: 44px;
  }

  .home-page .home-hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.3fr);
    gap: 10px;
    margin: 0;
    padding: 14px 16px 28px;
    transform: none;
  }

  .home-page .home-hero-stats strong {
    font-size: clamp(1.42rem, 6.4vw, 1.72rem);
    line-height: 1;
  }

  .home-page .home-hero-stats > div {
    grid-template-rows: minmax(2.95rem, auto) auto;
    justify-items: center;
    text-align: center;
  }

  .home-page .home-hero-stats strong.home-hero-place {
    max-width: 7.4em;
    justify-self: center;
    font-size: clamp(1.08rem, 4.8vw, 1.3rem);
    line-height: 1.05;
  }

  .home-page .home-hero-stats span {
    font-size: 0.55rem;
    line-height: 1.25;
    letter-spacing: 0.045em;
    text-align: center;
  }

  .service-card-catalog,
  .service-grid,
  .process-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid,
  .blog-grid,
  .stats-grid,
  .attorney-grid,
  .blog-framer-grid,
  .home-news-grid,
  .profile-card-grid,
  .profile-method-grid,
  .profile-stats-grid,
  .service-page-shell main.family-law-main .family-law-trust-grid {
    grid-template-columns: 1fr;
  }

  .service-family-card,
  .service-card,
  .process-step,
  .testimonial-card,
  .values-grid article,
  .blog-card a,
  .home-news-card,
  .profile-info-card,
  .profile-method-grid article,
  .news-article-side-card,
  .contact-main .contact-reference-info,
  .contact-main .contact-reference-form {
    padding: 18px;
  }

  .testimonial-shell {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    grid-template-areas:
      "track track track track"
      ". prev next ."
      "dots dots dots dots";
    gap: 14px 10px;
    overflow: visible;
  }

  .testimonial-track {
    grid-area: track;
    grid-auto-columns: minmax(0, 100%);
    padding-inline: 0;
  }

  .home-page .dark-testimonial {
    min-height: auto;
    background: var(--soft-gray);
  }

  .home-page .testimonial-nav {
    position: static;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .home-page .testimonial-nav:hover,
  .home-page .testimonial-nav:focus-visible {
    transform: none;
  }

  .home-page .testimonial-prev {
    grid-area: prev;
  }

  .home-page .testimonial-next {
    grid-area: next;
  }

  .home-page .testimonial-dots {
    grid-area: dots;
    margin-top: 0;
  }

  .home-profile-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .home-profile-media,
  .profile-portrait-card,
  .blog-page-card img,
  .news-article-image,
  .custody-feature-image,
  .family-law-copy img,
  .service-page-shell main.family-law-main .family-law-copy img {
    width: 100%;
  }

  .contact-panel-framer,
  .home-page .contact-panel-framer,
  .contact-main .contact-reference-card {
    gap: 16px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .contact-panel-info,
  .framer-form,
  .contact-panel-map,
  .contact-main .contact-reference-info,
  .contact-main .contact-reference-form,
  .contact-main .contact-reference-map {
    border-radius: 10px;
  }

  .contact-panel-info article,
  .contact-main .contact-reference-detail {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-panel-info article strong,
  .contact-address-link,
  .contact-main .contact-reference-detail strong,
  .news-article-byline,
  .blog-page-meta {
    overflow-wrap: anywhere;
  }

  .contact-form-fields,
  .framer-form {
    grid-template-columns: 1fr;
  }

  .contact-main .contact-address-link {
    font-size: clamp(0.82rem, 3.4vw, 0.88rem);
    letter-spacing: -0.01em;
    overflow-wrap: normal;
  }

  .contact-main .contact-address-desktop {
    display: none;
  }

  .contact-main .contact-address-mobile {
    display: block;
  }

  .contact-main .contact-address-line {
    white-space: nowrap;
  }

  .contact-main .contact-schedule-line {
    font-size: 0.8rem;
    letter-spacing: -0.02em;
  }

  .contact-main .contact-schedule-primary {
    white-space: nowrap;
  }

  .contact-main .contact-reference-map-desktop {
    display: none;
  }

  .contact-main .contact-reference-map-mobile {
    display: block;
    width: 100%;
    margin: 14px 0 18px;
  }

  .contact-main .contact-reference-map {
    min-height: 184px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(181, 155, 104, 0.22);
    border-radius: 8px;
    background: var(--ivory);
  }

  .contact-main .contact-reference-map iframe {
    min-height: inherit;
    border-radius: 0;
  }

  .home-page .home-news-actions {
    padding-inline: 14px;
  }

  .home-page .home-news-button {
    width: min(100%, 300px);
    min-height: 48px;
    justify-content: center;
    gap: 10px;
    padding: 6px 12px;
  }

  .home-page .home-news-button svg {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    margin-left: 0;
    padding: 8px;
  }

  .home-page .contact-panel-framer {
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(35, 35, 35, 0.08);
    border-radius: 12px;
    background: var(--soft-gray);
  }

  .home-page .contact-panel-info {
    background: transparent;
  }

  .home-page .home-contact .contact-panel-info > .framer-pill.framer-pill {
    width: max-content;
    display: flex;
    margin-inline: auto;
  }

  .home-page .contact-panel-map {
    min-height: 184px;
    margin-top: 14px;
    border-radius: 8px;
  }

  .home-page .framer-form {
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(35, 35, 35, 0.08);
    border-radius: 10px;
    background: var(--ivory);
  }

  .home-page .framer-form label {
    gap: 8px;
    font-size: 0.82rem;
  }

  .home-page .framer-form input,
  .home-page .framer-form select,
  .home-page .framer-form textarea {
    min-height: 44px;
    padding: 12px;
    border-radius: 8px;
    background: var(--soft-gray);
  }

  .home-page .framer-form button {
    width: 100%;
    min-height: 46px;
    margin-top: 8px;
    justify-content: center;
  }

  input,
  select,
  textarea {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .contact-label-text {
    width: auto;
    max-width: 100%;
  }

  .news-article-byline,
  .blog-page-meta {
    gap: 8px;
  }

  .footer-bottom,
  .home-footer .footer-bottom,
  .contact-band,
  .row-heading {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom span {
    margin-right: 0;
  }
}

@media (max-width: 380px) {
  .navbar {
    width: min(100% - 24px, 1080px);
  }

  .brand > span:last-child {
    font-size: 0.74rem;
  }

  .home-page .hero-content {
    padding-top: 104px;
  }

  .home-page .home-hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-page .home-hero-stats div,
  .home-page .home-hero-stats div:nth-child(2),
  .home-page .home-hero-stats div:nth-child(3) {
    grid-template-rows: auto;
    text-align: left;
  }

  .home-page .home-hero-stats span {
    font-size: 0.68rem;
  }

  .timeline-list article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
  }

  .faq-framer-list p {
    margin-left: 16px;
  }
}

body:not(.nav-menu-open) .site-header {
  top: 0;
}

body:not(.nav-menu-open) .site-header.is-hidden {
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transform: translate3d(0, -108%, 0) !important;
}

body.nav-menu-open .site-header {
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
