/* Shared MCX Legal navigation shell and back-to-top control. */
:root {
  --mcx-shell-black: #111111;
  --mcx-shell-red: #ef332f;
  --mcx-shell-gold: #dda12e;
  --mcx-shell-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  --mcx-shell-wide: 1180px;
  --mcx-shell-reader: 900px;
  --mcx-shell-article-reader: 960px;
}

/* One canonical masthead used on every page. */
.mcx-global-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  color: #111;
  background: #fff;
  box-shadow: var(--mcx-shell-shadow);
  font-family: Arial, Helvetica, sans-serif !important;
  line-height: 1.25;
}

.mcx-global-header *,
.mcx-global-header *::before,
.mcx-global-header *::after {
  box-sizing: border-box;
}

.mcx-global-header__top {
  min-height: 80px;
  padding: 8px clamp(22px, 3.25vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
}

.mcx-global-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 230px;
  min-width: 150px;
  text-decoration: none;
}

.mcx-global-header__logo img {
  display: block;
  width: 216px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.mcx-global-header__contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}

.mcx-global-header__contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 17px;
  border-radius: 5px;
  color: #111 !important;
  background: #e3e3e3;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.mcx-global-header__contact a:hover,
.mcx-global-header__contact a:focus-visible {
  background: #d4d4d4;
  outline: 3px solid rgba(239, 51, 47, 0.35);
  outline-offset: 2px;
}

.mcx-global-header__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.mcx-global-header__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mcx-global-nav {
  min-height: 68px;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(20px, 3.2vw, 52px);
  overflow-x: auto;
  background: var(--mcx-shell-black);
  scrollbar-width: thin;
  scrollbar-color: #555 var(--mcx-shell-black);
}

.mcx-global-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 0;
  color: #fff !important;
  font: 400 clamp(15px, 1.45vw, 20px)/1 Arial, Helvetica, sans-serif;
  text-decoration: none !important;
  white-space: nowrap;
}

.mcx-global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: transparent;
}

.mcx-global-nav a:hover::after,
.mcx-global-nav a:focus-visible::after,
.mcx-global-nav a.is-active::after {
  background: var(--mcx-shell-red);
}

.mcx-global-nav a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

/* Canonical recognition panel used across the site. */
.mcx-recognition-section {
  box-sizing: border-box;
  width: 100%;
  padding: 62px 24px 68px;
  color: #17263c;
  background: #f7f7f7;
  font-family: Arial, Helvetica, sans-serif !important;
}

.mcx-recognition-section *,
.mcx-recognition-section *::before,
.mcx-recognition-section *::after {
  box-sizing: border-box;
}

.mcx-recognition-inner {
  width: 100%;
  max-width: var(--mcx-shell-wide);
  margin: 0 auto;
  text-align: center;
}

/*
 * Blog articles use the same outer canvas as the shared site panels while
 * retaining a narrower, centered reading column for comfortable line length.
 */
.mcx-blog-article-page main {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: calc(var(--mcx-shell-wide) + 48px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-top: 32px !important;
  padding-right: 24px !important;
  padding-bottom: 28px !important;
  padding-left: 24px !important;
}

.mcx-blog-article-page main > article {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: var(--mcx-shell-wide) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 40px 48px 32px !important;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(23, 38, 60, 0.08) !important;
}

.mcx-blog-article-page main > article > * {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--mcx-shell-article-reader);
  margin-right: auto;
  margin-left: auto;
}

.mcx-blog-article-page .mcx-recognition-section {
  padding-top: 42px;
}

.mcx-recognition-inner h2 {
  margin: 0 0 12px;
  color: #17263c;
  font: 700 36px/1.2 Georgia, "Times New Roman", serif !important;
}

.mcx-recognition-inner > p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #657083;
  font: 400 17px/1.55 Arial, Helvetica, sans-serif !important;
  text-wrap: balance;
}

.mcx-recognition-badges {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  min-height: 210px;
  padding: 38px 46px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(23, 38, 60, 0.08);
}

.mcx-recognition-badges img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

/* One canonical footer used on every page. */
.mcx-global-footer {
  box-sizing: border-box;
  width: 100%;
  margin: 0 !important;
  padding: 66px 54px 0;
  color: #f2f2f2;
  background: #111;
  font-family: Arial, Helvetica, sans-serif !important;
}

.mcx-global-footer *,
.mcx-global-footer *::before,
.mcx-global-footer *::after {
  box-sizing: border-box;
}

.mcx-global-footer__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}

.mcx-global-footer__block h2 {
  margin: 0 0 22px;
  color: #dfa129;
  font: 400 36px/1.2 Georgia, "Times New Roman", serif !important;
  letter-spacing: .02em;
}

.mcx-global-footer__block:first-child h2 {
  color: #f3f3f3;
}

.mcx-global-footer__block p {
  margin: 0;
  color: #f2f2f2;
  font: 400 23px/1.55 Arial, Helvetica, sans-serif !important;
}

.mcx-global-footer__description {
  max-width: 1550px;
  text-align: left;
}

.mcx-global-footer__links {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  width: max-content;
  max-width: 100%;
}

.mcx-global-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 26px;
  border-right: 1px solid #777;
  color: #f2f2f2 !important;
  font: 400 23px/1.25 Arial, Helvetica, sans-serif !important;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
}

.mcx-global-footer__links a:first-child {
  padding-left: 0;
}

.mcx-global-footer__links a:last-child {
  border-right: 0;
}

.mcx-global-footer__links a:hover,
.mcx-global-footer__links a:focus-visible,
.mcx-global-footer__contact a:hover,
.mcx-global-footer__contact a:focus-visible {
  color: #dfa129 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.mcx-global-footer__contact {
  display: grid;
  align-content: start;
  gap: 30px;
}

.mcx-global-footer__contact-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 35px;
  margin: 0 !important;
  padding: 0 !important;
}

.mcx-global-footer__contact-row span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: #dfa129;
}

.mcx-global-footer__contact-row svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.mcx-global-footer__contact-row a,
.mcx-global-footer__contact-row address {
  display: flex;
  align-items: center;
  min-height: 35px;
  margin: 0 !important;
  padding: 0 !important;
  color: #f2f2f2 !important;
  font: 400 23px/1.5 Arial, Helvetica, sans-serif !important;
  font-style: normal !important;
  text-decoration: none !important;
}

.mcx-global-footer__contact-row address {
  white-space: nowrap;
}

.mcx-global-footer__bottom {
  margin: 64px -54px 0;
  padding: 24px 54px;
  color: #555;
  background: #090909;
  font: 400 17px/1.4 Arial, Helvetica, sans-serif !important;
  text-align: left;
}

.mcx-back-to-top,
#ast-scroll-top {
  position: fixed !important;
  right: max(18px, env(safe-area-inset-right)) !important;
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  z-index: 10020 !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  color: #fff !important;
  background: var(--mcx-shell-black) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28) !important;
  font: 700 25px/1 Arial, Helvetica, sans-serif !important;
  text-decoration: none !important;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease,
    background-color 180ms ease;
}

.mcx-back-to-top svg {
  display: block;
  width: 24px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mcx-back-to-top.is-visible,
#ast-scroll-top.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.mcx-back-to-top:hover,
.mcx-back-to-top:focus-visible,
#ast-scroll-top:hover,
#ast-scroll-top:focus-visible {
  background: var(--mcx-shell-red) !important;
  outline: 3px solid rgba(239, 51, 47, 0.3);
  outline-offset: 3px;
}

@media (max-width: 860px) {
  .mcx-global-header__top {
    min-height: 72px;
    padding: 9px 18px;
  }

  .mcx-global-header__logo {
    flex-basis: 178px;
    min-width: 150px;
  }

  .mcx-global-header__logo img {
    width: 168px;
    max-height: 58px;
  }

  .mcx-global-header__contact {
    gap: 8px;
  }

  .mcx-global-header__contact a {
    min-height: 40px;
    padding: 8px 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
  }

  .mcx-global-nav {
    min-height: 58px;
    justify-content: flex-start;
    gap: 28px;
    padding: 0 20px;
  }

  .mcx-global-nav a::after {
    bottom: 11px;
  }

  .mcx-recognition-badges {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px;
  }

  .mcx-recognition-badges img {
    width: auto;
    max-width: 100%;
  }

  .mcx-global-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mcx-global-footer {
    padding: 48px 24px 0;
  }

  .mcx-global-footer__block h2 {
    font-size: 30px !important;
  }

  .mcx-global-footer__block p,
  .mcx-global-footer__links a,
  .mcx-global-footer__contact-row a,
  .mcx-global-footer__contact-row address {
    font-size: 18px !important;
  }

  .mcx-global-footer__links {
    flex-wrap: wrap !important;
    align-items: stretch;
    width: 100%;
  }

  .mcx-global-footer__links a {
    min-height: 42px;
    padding: 0 16px;
  }

  .mcx-global-footer__links a:first-child {
    padding-left: 0;
  }

  .mcx-global-footer__bottom {
    margin: 46px -24px 0;
    padding: 20px 24px;
    font-size: 14px !important;
  }

  .mcx-global-footer__contact-row address {
    white-space: normal;
  }
}

@media (max-width: 1240px) and (min-width: 861px) {
  .mcx-global-header__top {
    padding-right: 24px;
    padding-left: 24px;
    gap: 18px;
  }

  .mcx-global-header__logo {
    flex-basis: 260px;
  }

  .mcx-global-header__contact {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .mcx-global-header__contact a {
    min-height: 44px;
    padding: 9px 14px;
    font-size: 16px;
  }

  .mcx-global-footer__links a {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 18px !important;
  }

  .mcx-global-footer__links a:first-child {
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .mcx-blog-article-page main {
    max-width: calc(var(--mcx-shell-wide) + 32px) !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .mcx-blog-article-page main > article {
    padding: 28px 22px 24px !important;
    border-radius: 12px;
  }

  .mcx-blog-article-page main > article > * {
    max-width: 100%;
  }

  .mcx-blog-article-page .mcx-recognition-section {
    padding-top: 36px;
  }

  .mcx-global-header__top {
    gap: 10px;
  }

  .mcx-global-header__contact {
    flex-wrap: nowrap;
  }

  .mcx-global-header__contact a {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    font-size: 0;
  }

  .mcx-global-header__contact .mcx-global-header__icon {
    font-size: 20px;
  }

  .mcx-back-to-top,
  #ast-scroll-top {
    width: 46px !important;
    height: 46px !important;
    font-size: 22px !important;
  }

  .mcx-recognition-section {
    padding: 46px 16px 52px;
  }

  .mcx-recognition-inner h2 {
    font-size: 30px !important;
  }

  .mcx-recognition-inner > p {
    font-size: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mcx-back-to-top,
  #ast-scroll-top {
    transition: none;
  }
}

/* One shared consultation panel for every public page. */
.mcx-contact-panel {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 72px 24px 24px;
  background: #eef0f3;
  color: #162438;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.mcx-contact-panel *,
.mcx-contact-panel *::before,
.mcx-contact-panel *::after {
  box-sizing: border-box;
}

.mcx-contact-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: stretch;
  gap: 28px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.mcx-contact-panel__details,
.mcx-contact-panel__form-card {
  min-width: 0;
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(22, 36, 56, .12);
}

.mcx-contact-panel__details {
  display: flex;
  flex-direction: column;
  padding: 46px;
  background: linear-gradient(145deg, #101010, #172031);
  color: #fff;
}

.mcx-contact-panel__details h2,
.mcx-contact-panel__form-card h2 {
  margin: 0 0 12px !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.mcx-contact-panel__details h2 {
  color: #d99b36 !important;
  font-family: Georgia, "Times New Roman", serif !important;
}

.mcx-contact-panel__details > p {
  margin: 0 0 30px;
  color: #d7dbe2;
  font-size: 18px;
}

.mcx-contact-panel__list {
  display: grid;
  gap: 22px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.mcx-contact-panel__list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0;
  padding: 0;
}

.mcx-contact-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #d99b36;
}

.mcx-contact-panel__icon svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mcx-contact-panel__list strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mcx-contact-panel__list a,
.mcx-contact-panel__list address {
  color: #fff !important;
  font-size: 18px;
  font-style: normal;
  text-decoration: none;
}

.mcx-contact-panel__list a:hover,
.mcx-contact-panel__list a:focus {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mcx-contact-panel__hours {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.mcx-contact-panel__hours h3 {
  margin: 0 0 12px;
  color: #d99b36;
  font-size: 18px;
}

.mcx-contact-panel__hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 6px 0;
  color: #f2f2f2;
}

.mcx-contact-panel__form-card {
  padding: 46px;
  background: #fff;
}

.mcx-contact-panel__form-card h2 {
  color: #162438 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

.mcx-contact-panel__intro {
  margin: 0 0 28px;
  color: #687791;
  font-size: 18px;
}

.mcx-contact-panel__field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mcx-contact-panel__field {
  margin-bottom: 20px;
}

.mcx-contact-panel__field label {
  display: block;
  margin-bottom: 7px;
  color: #30343a;
  font-weight: 700;
}

.mcx-contact-panel__field input,
.mcx-contact-panel__field select,
.mcx-contact-panel__field textarea {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid #d3d6db;
  border-radius: 7px;
  background: #fff;
  color: #222;
  font: inherit;
  padding: 13px 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.mcx-contact-panel__field input,
.mcx-contact-panel__field select {
  min-height: 52px;
}

.mcx-contact-panel__field textarea {
  min-height: 138px;
  resize: vertical;
}

.mcx-contact-panel__field input:focus,
.mcx-contact-panel__field select:focus,
.mcx-contact-panel__field textarea:focus {
  border-color: #d99b36;
  outline: 3px solid rgba(217, 155, 54, .2);
}

.mcx-contact-panel__consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  margin: 4px 0 24px;
  color: #373737;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.mcx-contact-panel__consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
}

.mcx-contact-panel__status {
  display: none;
  margin: 0 0 16px;
  padding: 11px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.mcx-contact-panel__status.is-error {
  display: block;
  border: 1px solid #f1b9b5;
  background: #fff0ef;
  color: #9e241f;
}

.mcx-contact-panel__status.is-success {
  display: block;
  border: 1px solid #b9d9bd;
  background: #eff8f0;
  color: #256430;
}

.mcx-contact-panel__submit {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: #101010;
  color: #fff;
  cursor: pointer;
  font: 700 18px/1 Arial, Helvetica, sans-serif;
  padding: 18px 24px;
  transition: background .18s ease, transform .18s ease;
}

.mcx-contact-panel__submit:hover,
.mcx-contact-panel__submit:focus {
  background: #2d2d2d;
  transform: translateY(-1px);
}

.mcx-contact-panel__submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.mcx-contact-panel__deadline,
.mcx-contact-panel__noscript {
  margin: 18px 0 0;
  color: #68707b;
  font-size: 13px;
}

.mcx-contact-panel__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 820px) {
  .mcx-contact-panel {
    padding: 48px 18px 18px;
  }

  .mcx-contact-panel__inner {
    grid-template-columns: 1fr;
  }

  .mcx-contact-panel__details,
  .mcx-contact-panel__form-card {
    padding: 34px 26px;
  }

  .mcx-contact-panel__field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .mcx-contact-panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mcx-contact-panel__details,
  .mcx-contact-panel__form-card {
    padding: 28px 20px;
  }

  .mcx-contact-panel__hours p {
    display: block;
  }

  .mcx-contact-panel__hours p span {
    display: block;
  }
}

/*
 * Unified hero language
 * Contact Us is the visual reference: bold Georgia display type, centered
 * supporting copy, a navy-to-plum field, and a restrained gold/red rule.
 */
.home .elementor-49 .elementor-element.elementor-element-b33e9ac {
  position: relative !important;
}

.home .elementor-49 .elementor-element.elementor-element-a83eb52 {
  position: relative !important;
  padding: 84px 24px 90px !important;
  background: linear-gradient(125deg, rgba(16, 16, 23, .94) 0%, rgba(22, 19, 38, .92) 70%, rgba(35, 21, 49, .92) 100%) !important;
  color: #fff !important;
  text-align: center !important;
}

.home .elementor-49 .elementor-element.elementor-element-a83eb52::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d99b36, #ef3934, transparent);
}

.home .elementor-49 .elementor-element.elementor-element-afc7a16 h1 {
  margin: 0 0 18px !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(40px, 4.4vw, 58px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
  text-align: center !important;
}

.home .elementor-49 .elementor-element.elementor-element-4f1df67 {
  max-width: 830px !important;
  margin: 0 auto !important;
  color: #e8e8ee !important;
  font-size: clamp(18px, 2vw, 23px) !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

.mcx-service-refresh .mcx-service-hero {
  background: linear-gradient(125deg, #101017 0%, #161326 70%, #231531 100%) !important;
}

.mcx-service-refresh .mcx-service-hero-copy {
  position: relative !important;
  align-items: center !important;
  padding: 84px 42px 90px !important;
  text-align: center !important;
}

.mcx-service-refresh .mcx-service-hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d99b36, #ef3934, transparent);
}

.mcx-service-refresh .mcx-service-eyebrow {
  margin: 0 0 18px !important;
  color: #d99b36 !important;
  text-align: center !important;
}

.mcx-service-refresh .mcx-service-hero-copy h1 {
  margin: 0 0 18px !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(40px, 4.4vw, 58px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
  text-align: center !important;
}

.mcx-service-refresh .mcx-service-lede {
  max-width: 830px !important;
  margin: 0 auto !important;
  color: #e8e8ee !important;
  font-size: clamp(18px, 2vw, 23px) !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

/* Canonical display size for every non-article page hero. */
body .contact-hero h1,
body .mcx-blog-hero h1,
body .mcx-notices .mcx-notices-hero h1,
body .elementor-381 .elementor-element.elementor-element-fe572a8 h1,
body .elementor-593 .elementor-element.elementor-element-2988c10 h1,
body.home .elementor-49 .elementor-element.elementor-element-afc7a16 h1,
body .mcx-service-refresh .mcx-service-hero-copy h1 {
  font-size: clamp(40px, 4.4vw, 58px) !important;
}

@media (max-width: 850px) {
  .home .elementor-49 .elementor-element.elementor-element-a83eb52,
  .mcx-service-refresh .mcx-service-hero-copy {
    padding: 64px 20px 68px !important;
  }
}

/* Partner cards and attorney biographies. */
.about-partners {
  padding: clamp(72px, 8vw, 112px) 24px;
  background: #f4f1eb;
}

.about-partners__inner,
.attorney-profile__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-partners__header {
  max-width: 760px;
  margin-bottom: 42px;
}

.about-partners__eyebrow,
.attorney-profile__eyebrow {
  margin: 0 0 12px;
  color: #9a6418;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.about-partners__header h2,
.attorney-profile-page h1,
.attorney-profile-page h2,
.attorney-profile-page h3,
.about-partner-card h3 {
  font-family: Georgia, "Times New Roman", serif !important;
  letter-spacing: -.02em;
}

.about-partners__header h2 {
  margin: 0 0 16px;
  color: #171717;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.08;
}

.about-partners__intro {
  margin: 0;
  color: #343434;
  font-size: 19px;
  line-height: 1.7;
}

.about-partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-partner-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #ded8cd;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(24, 24, 24, .08);
}

.about-partner-card__portrait-link {
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  background: #e9e5de;
}

.about-partner-card__portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  transition: transform .3s ease;
}

.about-partner-card__portrait-link:hover .about-partner-card__portrait,
.about-partner-card__portrait-link:focus .about-partner-card__portrait {
  transform: scale(1.018);
}

.about-partner-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
}

.about-partner-card__role {
  margin: 0 0 8px;
  color: #9a6418;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-partner-card h3 {
  margin: 0 0 16px;
  color: #171717;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
}

.about-partner-card__copy {
  margin: 0 0 22px;
  color: #2b2b2b;
  font-size: 17px;
  line-height: 1.72;
}

.about-partner-card__focus,
.attorney-profile__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.about-partner-card__focus a,
.attorney-profile__focus a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid #c9bda8;
  border-radius: 999px;
  color: #272727;
  background: #faf8f4;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
}

.about-partner-card__focus a:hover,
.about-partner-card__focus a:focus,
.attorney-profile__focus a:hover,
.attorney-profile__focus a:focus {
  border-color: #9a6418;
  color: #111;
  background: #fff;
}

.about-partner-card__link {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 4px;
  color: #fff !important;
  background: #111;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
}

.about-partner-card__link:hover,
.about-partner-card__link:focus {
  color: #111 !important;
  background: #d99b36;
}

.attorney-profile-page {
  color: #282828;
  background: #f5f3ef;
}

.attorney-profile-page + * {
  margin-top: 0;
}

.attorney-profile-hero {
  padding: clamp(54px, 7vw, 92px) 24px;
  background: linear-gradient(125deg, #101017 0%, #181522 72%, #261827 100%);
}

.attorney-profile-hero__grid {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1.14fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.attorney-profile__portrait-wrap {
  position: relative;
}

.attorney-profile__portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  border: 1px solid rgba(217, 155, 54, .68);
  border-radius: 18px;
}

.attorney-profile__portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

.attorney-profile-page h1 {
  margin: 0 0 8px;
  color: #fff !important;
  font-size: clamp(44px, 5.4vw, 72px) !important;
  line-height: 1.02 !important;
}

.attorney-profile__role {
  margin: 0 0 22px;
  color: #d99b36;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.attorney-profile__lede {
  max-width: 700px;
  margin: 0 0 28px;
  color: #f0eef3;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.attorney-profile__focus a {
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.attorney-profile__focus a:hover,
.attorney-profile__focus a:focus {
  border-color: #d99b36;
  color: #fff;
  background: rgba(217, 155, 54, .14);
}

.attorney-profile-content {
  padding: clamp(64px, 8vw, 108px) 24px;
}

.attorney-profile-content__grid {
  display: grid;
  grid-template-columns: minmax(250px, .36fr) minmax(0, .64fr);
  grid-template-areas: "facts narrative";
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.attorney-profile__facts {
  grid-area: facts;
  padding: 28px;
  border-top: 4px solid #d99b36;
  background: #fff;
  box-shadow: 0 15px 42px rgba(24, 24, 24, .08);
}

.attorney-profile__facts h2 {
  margin: 0 0 20px;
  color: #1d1d1d;
  font-size: 28px;
}

.attorney-profile__fact-list {
  margin: 0;
}

.attorney-profile__fact-list div {
  padding: 16px 0;
  border-top: 1px solid #e2ded7;
}

.attorney-profile__fact-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.attorney-profile__fact-list dt {
  margin-bottom: 5px;
  color: #7a4e13;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.attorney-profile__fact-list dd {
  margin: 0;
  color: #2c2c2c;
  font-size: 15px;
  line-height: 1.55;
}

.attorney-profile__narrative {
  grid-area: narrative;
}

.attorney-profile__narrative section + section {
  margin-top: 44px;
  padding-top: 42px;
  border-top: 1px solid #d8d2c8;
}

.attorney-profile__narrative h2 {
  margin: 0 0 18px;
  color: #202531;
  font-size: clamp(31px, 3.8vw, 46px);
  line-height: 1.15;
}

.attorney-profile__narrative p {
  margin: 0 0 18px;
  color: #282828;
  font-size: 18px;
  line-height: 1.82;
}

.attorney-profile__cta {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(56px, 8vw, 92px);
  padding: clamp(28px, 5vw, 48px);
  background: #15151a;
}

.attorney-profile__cta h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 42px);
}

.attorney-profile__cta p {
  margin: 0;
  color: #e6e3e8;
  font-size: 16px;
}

.attorney-profile__cta a {
  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  padding: 13px 20px;
  color: #171717 !important;
  background: #d99b36;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
}

.attorney-profile__cta a:hover,
.attorney-profile__cta a:focus {
  color: #111 !important;
  background: #f0b755;
}

@media (max-width: 850px) {
  .about-partners__grid,
  .attorney-profile-hero__grid,
  .attorney-profile-content__grid {
    grid-template-columns: 1fr;
  }

  .attorney-profile-content__grid {
    grid-template-areas: "facts" "narrative";
  }

  .attorney-profile__portrait-wrap {
    width: min(620px, calc(100% - 18px));
  }

  .attorney-profile__cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .about-partners,
  .attorney-profile-hero,
  .attorney-profile-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-partner-card__body,
  .attorney-profile__facts {
    padding: 24px;
  }

  .attorney-profile__portrait-wrap::after {
    inset: 10px -10px -10px 10px;
  }
}

/* Shared mobile system: compact masthead, touch-safe controls, and fluid content. */
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
iframe,
embed,
object {
  max-width: 100%;
}

img,
video {
  height: auto;
}

main,
article,
section,
aside,
.site,
.site-content,
.ast-container,
.elementor,
.e-con,
.e-con-inner {
  min-width: 0;
}

a,
button,
input,
select,
textarea {
  touch-action: manipulation;
}

.mcx-global-header__menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--mcx-shell-black);
  box-shadow: none;
  cursor: pointer;
}

.mcx-global-header__menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mcx-global-header__menu-toggle:focus-visible {
  outline: 3px solid rgba(239, 51, 47, .38);
  outline-offset: 3px;
}

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

  .mcx-global-header__top {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    min-height: 70px;
    gap: 8px;
    padding: 8px 12px;
  }

  .mcx-global-header__menu-toggle {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
  }

  .mcx-global-header__logo {
    grid-column: 2;
    min-width: 0;
    max-width: 100%;
    flex-basis: auto;
    justify-content: center;
    justify-self: center;
    overflow: hidden;
  }

  .mcx-global-header__logo img {
    width: min(158px, 100%);
    max-height: 54px;
    object-position: center;
  }

  .mcx-global-header__logo-text {
    font-size: clamp(20px, 5.7vw, 27px) !important;
    line-height: 1.05 !important;
    text-align: center;
    white-space: nowrap;
  }

  .mcx-global-header__contact {
    display: flex;
    grid-column: 3;
    min-width: 0;
    flex: none;
    justify-content: flex-end;
  }

  .mcx-global-header__contact a {
    display: none;
  }

  .mcx-global-header__contact a:first-child {
    display: inline-flex;
    width: 46px;
    height: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    font-size: 0 !important;
  }

  .mcx-global-header__contact .mcx-global-header__icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .mcx-global-nav {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: 0;
    gap: 0;
    padding: 0 16px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height .24s ease, padding .24s ease, opacity .18s ease, visibility 0s linear .24s;
  }

  .mcx-global-header.is-menu-open .mcx-global-nav {
    max-height: 330px;
    padding: 7px 16px 15px;
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .mcx-global-nav a {
    width: 100%;
    min-height: 50px;
    justify-content: flex-start;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-size: 15px;
    letter-spacing: .035em;
  }

  .mcx-global-nav a:last-child {
    border-bottom: 0;
  }

  .mcx-global-nav a::after {
    right: auto;
    bottom: 7px;
    left: 12px;
    width: 34px;
  }

  .mcx-global-header.is-menu-open .mcx-global-header__menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mcx-global-header.is-menu-open .mcx-global-header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mcx-global-header.is-menu-open .mcx-global-header__menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .about-story__inner,
  .about-expectations__inner,
  .mcx-practice-grid__inner,
  .mcx-practice-guidance__inner,
  .mcx-service-hero,
  .mcx-service-block,
  .mcx-service-boundaries__inner {
    max-width: 100%;
  }

  .mcx-service-hero {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .mcx-service-hero > * {
    width: 100%;
    min-width: 0;
  }

  .mcx-blog-article-page main > article {
    overflow-wrap: anywhere;
  }

  .mcx-contact-panel__field input,
  .mcx-contact-panel__field select,
  .mcx-contact-panel__field textarea,
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  .elementor-button,
  .wp-element-button {
    min-height: 44px;
  }
}

@media (max-width: 560px) {
  .mcx-global-header__top {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .mcx-global-header__logo img {
    width: min(142px, 100%);
  }

  .mcx-contact-panel__details h2,
  .mcx-contact-panel__form-card h2 {
    font-size: clamp(28px, 8vw, 34px) !important;
  }

  .mcx-contact-panel__details > p,
  .mcx-contact-panel__intro,
  .mcx-contact-panel__list a,
  .mcx-contact-panel__list address {
    font-size: 16px;
  }

  .about-partner-card__link,
  .attorney-profile__cta a,
  .mcx-contact-panel__submit {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mcx-global-nav,
  .mcx-global-header__menu-toggle span {
    transition: none;
  }
}
