:root {
  --ink: #1a1a1a;
  --muted-ink: #5a5a5a;
  --line: #eaeaea;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --gold: #b1976b;
  --gold-dark: #977f55;
  --white: #ffffff;
  --shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  --radius: 0;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --heading-1: 3.25rem;
  --heading-2: 2.25rem;
  --heading-3: 1.5rem;
  --heading-4: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Duru Sans", sans-serif;
  font-size: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s linear, background 0.2s linear, border-color 0.2s linear, transform 0.2s linear;
}

p {
  margin: 0 0 1.35em;
  color: var(--muted-ink);
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  font-family: "Duru Sans", sans-serif;
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  font-size: var(--heading-1);
}

h2 {
  font-size: var(--heading-2);
}

h3 {
  font-size: var(--heading-3);
}

h4 {
  font-size: var(--heading-4);
}

h5 {
  font-size: 1.075rem;
}

h6 {
  font-size: 1rem;
}

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

.site-breadcrumb {
  position: relative;
  z-index: 12;
  border-bottom: 1px solid #e5e1d8;
  background: #f7f6f3;
  color: var(--muted-ink);
  font-size: 0.8125rem;
}

.site-breadcrumb-inner {
  display: flex;
  align-items: center;
  min-height: 46px;
}

.site-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 9px 0;
  list-style: none;
}

.site-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
}

.site-breadcrumb li + li::before {
  content: "/";
  color: #aaa397;
}

.site-breadcrumb a {
  color: #75684f;
  font-weight: 600;
  text-decoration: none;
}

.site-breadcrumb a:hover {
  color: var(--gold);
}

.site-breadcrumb [aria-current="page"] {
  color: var(--ink);
}

.header-variant-transparent .site-breadcrumb {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(16, 24, 39, 0.48);
  color: rgba(255, 255, 255, 0.78);
}

.header-variant-transparent .site-breadcrumb a,
.header-variant-transparent .site-breadcrumb [aria-current="page"] {
  color: #fff;
}

.header-variant-transparent .site-breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.5);
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
}

.header-variant-transparent .site-header,
.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
}

.nav-wrap {
  display: grid;
  grid-template-columns: 87px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 20px;
  min-height: 119px;
}

.header-variant-transparent .nav-wrap,
.home-page .nav-wrap {
  min-height: 100px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
}

.site-header .brand {
  width: 87px;
  height: 87px;
  justify-content: center;
  padding: 10px;
  background: #101827;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-header .brand img {
  width: 67px;
  height: 67px;
}

.brand span {
  white-space: nowrap;
  color: var(--ink);
}

.site-header .brand span {
  display: none;
}

.header-variant-transparent .site-header .brand,
.home-page .site-header .brand {
  visibility: hidden;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  justify-self: end;
  margin-left: 0;
}

.header-layout-centered .site-nav {
  justify-self: center;
}

.header-layout-compact .nav-wrap {
  min-height: 76px;
}

.header-layout-compact .site-nav > a,
.header-layout-compact .nav-item > a {
  min-height: 76px;
}

.site-nav > a,
.nav-item > a {
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: 0 16px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-variant-transparent .site-nav > a,
.header-variant-transparent .nav-item > a,
.home-page .site-nav > a,
.home-page .nav-item > a {
  color: var(--white);
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-item:hover > a,
.nav-item > a.active {
  color: var(--gold);
}

.header-variant-transparent .site-nav > a:hover,
.header-variant-transparent .site-nav > a.active,
.header-variant-transparent .nav-item:hover > a,
.header-variant-transparent .nav-item > a.active,
.home-page .site-nav > a:hover,
.home-page .site-nav > a.active,
.home-page .nav-item:hover > a,
.home-page .nav-item > a.active {
  border-radius: 6px;
  background: rgba(201, 169, 118, 0.25);
  color: var(--gold);
}

.nav-item {
  position: relative;
}

.nav-item > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 310px;
  max-height: 50vh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s linear, transform 0.2s linear, visibility 0.2s linear;
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown,
.dropdown-item:hover > .nested-dropdown,
.dropdown-item:focus-within > .nested-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  position: relative;
}

.dropdown-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dropdown-item.has-dropdown-child > a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
}

.nested-dropdown {
  top: -9px;
  left: calc(100% - 1px);
  transform: translateX(8px);
}

.dropdown-item:hover > .nested-dropdown,
.dropdown-item:focus-within > .nested-dropdown {
  transform: translateX(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 16px;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.35;
  white-space: normal;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown a:hover {
  color: var(--gold);
  background: #fbfbfb;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.nav-cta {
  min-height: 46px;
  padding: 0 32px;
  border-color: var(--gold);
  background: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-cta:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  transform: none;
}

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
}

.button.gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

.button.ghost:hover {
  background: var(--gold);
  color: var(--white);
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
}

.button.ghost-light:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding: 170px 0 86px;
  background:
    linear-gradient(rgba(26, 26, 26, 0.82), rgba(26, 26, 26, 0.82)),
    url("/assets/img/law-hero.jpg") center center / cover no-repeat;
}

.hero-stack {
  display: block;
}

.hero-copy {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  color: var(--white);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.strip-grid > div {
  min-height: 145px;
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.strip-grid > div:last-child {
  border-right: 0;
}

.strip-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.strip-grid strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.section {
  padding: 96px 0;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.principle-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.profile-card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 44px -24px -24px 44px;
  z-index: -1;
  background: var(--soft);
}

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

.principle-copy {
  max-width: 650px;
}

.icon-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.icon-trio div {
  display: grid;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}

.icon-trio img {
  width: 30px;
  height: 30px;
}

.info-card,
.service-card,
.article-card,
.contact-panel,
.contact-form,
.contact-intro-card,
.contact-card,
.contact-form-panel,
.faq-help-card,
.article-row,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head a,
.service-card a,
.article-card a,
.article-row a,
.article-row .badge {
  color: var(--gold);
  font-weight: 700;
}

.section-head a:hover,
.service-card a:hover {
  color: var(--gold-dark);
}

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

.card-grid.three {
  gap: 18px;
}

.service-card,
.info-card {
  padding: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  box-shadow: none;
  transition: box-shadow 0.2s linear, transform 0.2s linear, border-color 0.2s linear;
}

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

.service-card h2 {
  display: -webkit-box;
  min-height: 3.1em;
  overflow: hidden;
  font-size: 1.45rem;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.service-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  margin: -30px -30px 22px;
  background: var(--soft);
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s linear;
}

.service-card:hover .service-card-image img {
  transform: scale(1.03);
}

.service-card:hover {
  z-index: 1;
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: "Duru Sans", sans-serif;
  font-size: 1.4rem;
}

.service-card p,
.info-card p {
  min-height: 78px;
}

.service-card.large p {
  display: -webkit-box;
  min-height: 92px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-ink);
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "•";
}

.service-card > a {
  margin-top: auto;
  align-self: flex-start;
}

.service-detail-hero p {
  max-width: 760px;
}

.service-detail-section {
  background: var(--soft);
}

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

.service-detail-content,
.service-side-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.service-detail-content {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
}

.service-detail-content > h2 {
  font-size: 2rem;
}

.service-prose {
  overflow-wrap: anywhere;
}

.service-prose > *:first-child {
  margin-top: 0;
}

.service-prose .wp-block-columns,
.service-prose .wp-block-group,
.service-prose .wp-block-uagb-container {
  max-width: 100%;
}

.service-detail-sidebar {
  display: grid;
  gap: 18px;
}

.service-side-card {
  padding: 24px;
}

.service-side-card h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.service-side-card p {
  margin-bottom: 18px;
}

.service-side-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-side-card li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.service-side-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-side-card a:not(.button) {
  color: var(--muted-ink);
}

.service-side-card a:not(.button):hover {
  color: var(--gold);
}

.service-faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 38px;
  align-items: start;
}

.service-section-heading {
  position: sticky;
  top: 112px;
}

.service-section-heading h2,
.service-related-heading h2 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.25;
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.narrative {
  max-width: 900px;
}

.narrative p {
  font-size: 1.05rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-list article {
  padding-top: 8px;
}

.why-list h3 {
  font-family: "Duru Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.cta-band {
  position: relative;
  padding: 96px 0;
  background:
    linear-gradient(rgba(26, 26, 26, 0.84), rgba(26, 26, 26, 0.84)),
    url("/assets/img/pillar.jpg") center center / cover no-repeat;
  color: var(--white);
}

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

.cta-stack,
.cta-grid {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.cta-stack h2,
.cta-grid h2 {
  max-width: 780px;
  color: var(--white);
}

.page-hero {
  padding: 148px 0 72px;
  background:
    linear-gradient(rgba(26, 26, 26, 0.78), rgba(26, 26, 26, 0.78)),
    url("/assets/img/law-hero.jpg") center center / cover no-repeat;
  color: var(--white);
}

.page-hero.service-detail-hero {
  background:
    linear-gradient(rgba(26, 26, 26, 0.78), rgba(26, 26, 26, 0.78)),
    var(--service-hero-image, url("/assets/img/law-hero.jpg")) center center / cover no-repeat;
}

.page-hero.compact {
  padding: 148px 0 72px;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.0625rem;
}

.page-hero h1 {
  max-width: 920px;
  font-size: 3.25rem;
  color: var(--white);
}

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

.page-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-hero-card {
  position: relative;
  margin: 0;
}

.page-hero .about-hero-card img {
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.08);
}

.about-hero-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  background: rgba(26, 26, 26, 0.86);
  color: var(--white);
}

.about-hero-card strong {
  font-family: "Duru Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.about-hero-card span {
  color: #ded6c8;
  font-size: 0.92rem;
}

.about-highlight-section {
  background: var(--soft);
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-highlight-card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.2s linear, box-shadow 0.2s linear, transform 0.2s linear;
}

.about-highlight-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.about-highlight-card img {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
}

.about-highlight-card h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.about-highlight-card p {
  margin-bottom: 0;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: center;
}

.about-profile-image {
  background: var(--white);
}

.about-profile-copy {
  max-width: 690px;
}

.about-profile-copy blockquote {
  margin: 30px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  color: var(--ink);
  font-family: "Duru Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

.about-credentials > div:first-child p {
  max-width: 310px;
}

.about-credential-list article {
  position: relative;
  padding: 0 0 24px 30px;
}

.about-credential-list article::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -6px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  background: var(--white);
}

.about-credential-list h3 {
  margin-bottom: 8px;
}

.about-credential-list p {
  margin-bottom: 0;
}

.about-cta-section {
  padding: 80px 0;
  background:
    linear-gradient(rgba(26, 26, 26, 0.86), rgba(26, 26, 26, 0.86)),
    url("/assets/img/pillar.jpg") center center / cover no-repeat;
  color: var(--white);
}

.about-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: start;
  text-align: left;
}

.about-cta h2 {
  color: var(--white);
}

.about-cta .cta-stack {
  justify-items: stretch;
}

.prose blockquote {
  margin: 28px 0;
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  color: var(--ink);
  font-family: "Duru Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
}

.content-page {
  max-width: 920px;
}

.content-page .prose {
  font-size: 1.0625rem;
}

.content-featured-image {
  width: 100%;
  max-height: 460px;
  margin-bottom: 32px;
  object-fit: cover;
}

.dynamic-page-prose .wp-block-uagb-container,
.dynamic-page-prose .wp-block-uagb-info-box,
.dynamic-page-prose .uagb-infobox__content-wrap {
  max-width: 100%;
}

.dynamic-page-prose .uagb-infobox__content-wrap {
  margin: 22px 0;
}

.dynamic-page-prose .uagb-ifb-icon-wrap,
.dynamic-page-prose .uagb-ss__source-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--gold-dark);
}

.dynamic-page-prose .uagb-ifb-icon-wrap svg,
.dynamic-page-prose .uagb-ss__source-icon svg {
  display: block;
  width: 26px;
  height: 26px;
  max-width: 26px;
  max-height: 26px;
  fill: currentColor;
}

.dynamic-page-prose .uagb-infobox-icon-left {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

.dynamic-page-prose .uagb-infobox-icon-left .uagb-ifb-content {
  min-width: 0;
}

.dynamic-page-prose .uagb-ifb-title,
.dynamic-page-prose .uagb-ifb-desc {
  margin-top: 0;
}

.dynamic-page-prose details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.dynamic-page-prose summary {
  padding: 17px 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.dynamic-page-prose details > :not(summary) {
  margin-right: 18px;
  margin-left: 18px;
}

.prose {
  color: var(--muted-ink);
  font-size: 1rem;
  line-height: 1.75;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  color: var(--ink);
}

.prose h1 {
  margin-top: 1.6em;
  font-size: 2.25rem;
}

.prose h2 {
  margin-top: 1.8em;
  margin-bottom: 0.7em;
  font-size: 2rem;
  line-height: 1.25;
}

.prose h3 {
  margin-top: 1.65em;
  margin-bottom: 0.65em;
  font-size: 1.5rem;
  line-height: 1.3;
}

.prose h4 {
  margin-top: 1.5em;
  margin-bottom: 0.6em;
  font-size: 1.25rem;
  line-height: 1.35;
}

.prose h5,
.prose h6 {
  margin-top: 1.4em;
  margin-bottom: 0.55em;
  line-height: 1.4;
}

.prose > :first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  line-height: 1.75;
}

.prose ul,
.prose ol {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}

.prose li + li {
  margin-top: 0.45em;
}

.prose a {
  color: var(--gold-dark);
  font-weight: 700;
}

.prose img {
  margin: 24px 0;
}

.prose figure.table,
.prose figure.wp-block-table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
  scrollbar-width: thin;
}

.prose table {
  width: 100%;
  min-width: 620px;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: var(--white);
  color: var(--muted-ink);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.prose > table {
  display: block;
  max-width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.prose th,
.prose td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  vertical-align: top;
  text-align: left;
}

.prose tr > :last-child {
  border-right: 0;
}

.prose tbody tr:last-child > * {
  border-bottom: 0;
}

.prose th,
.prose thead td {
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}

.prose tbody tr:nth-child(even) {
  background: #fbfbfb;
}

.prose caption {
  padding: 0 0 10px;
  color: var(--muted-ink);
  font-size: var(--text-small);
  text-align: left;
}

.article-detail-page {
  background: var(--soft);
}

.article-detail-page main {
  background: var(--soft);
}

.wp-detail-wrap {
  padding: 56px 0 64px;
}

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

.wp-detail-grid.has-toc {
  grid-template-columns: 200px minmax(0, 1fr) 280px;
  gap: 24px;
}

.wp-detail-grid.has-toc .wp-detail-article {
  padding: 48px;
}

.wp-detail-article,
.wp-widget {
  border: 1px solid var(--line);
  background: var(--white);
}

.wp-detail-article {
  min-width: 0;
  max-width: 100%;
  min-height: 360px;
  padding: clamp(34px, 5vw, 64px);
}

.wp-detail-primary,
.wp-entry-content {
  min-width: 0;
  max-width: 100%;
}

.wp-entry-header h1 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.25;
}

.wp-entry-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-bottom: 28px;
  color: var(--muted-ink);
  font-size: 0.88rem;
  line-height: 1.5;
}

.wp-entry-meta-item {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 5px;
}

.wp-entry-meta-item + .wp-entry-meta-item {
  margin-left: 14px;
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.wp-entry-meta-item strong {
  color: var(--ink);
}

.wp-entry-meta a {
  color: var(--gold-dark);
  font-weight: 700;
}

.wp-entry-meta a:hover {
  color: var(--gold);
}

.wp-entry-image {
  width: 100%;
  max-height: 430px;
  margin-bottom: 28px;
  object-fit: cover;
}

.wp-entry-content {
  min-height: 180px;
  font-size: 1.0625rem;
  overflow-wrap: anywhere;
}

.wp-entry-content h2[id] {
  scroll-margin-top: 24px;
}

.wp-entry-content figure {
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.wp-entry-content .wp-block-table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.wp-entry-content .wp-block-table table {
  min-width: 620px;
}

.wp-post-navigation {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.wp-post-navigation-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wp-post-navigation-link {
  display: flex;
  min-width: 0;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  padding: 18px 20px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s linear, color 0.2s linear, background-color 0.2s linear;
}

.wp-post-navigation-link.is-next {
  grid-column: 2;
  align-items: flex-end;
  text-align: right;
}

.wp-post-navigation-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wp-post-navigation-link strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: "Duru Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.wp-post-navigation-link:hover {
  border-color: var(--gold);
  background: var(--soft);
  color: var(--gold-dark);
}

.article-toc {
  min-width: 0;
  color: var(--muted-ink);
}

.article-toc--desktop {
  position: sticky;
  top: 24px;
  align-self: start;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-color: var(--gold) var(--soft);
  scrollbar-width: thin;
}

.article-toc--mobile {
  display: none;
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-toc-heading {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Duru Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 1px solid var(--line);
  list-style: none;
}

.article-toc--mobile ol {
  max-height: min(48vh, 360px);
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-color: var(--gold) var(--soft);
  scrollbar-width: thin;
}

.article-toc li {
  min-width: 0;
}

.article-toc a {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  padding: 9px 0;
  color: var(--muted-ink);
  font-size: 0.86rem;
  line-height: 1.4;
}

.article-toc a::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -15px;
  width: 2px;
  background: transparent;
}

.article-toc a:hover,
.article-toc a.is-active {
  color: var(--ink);
}

.article-toc a.is-active {
  font-weight: 700;
}

.article-toc a.is-active::before {
  background: var(--gold);
}

.article-toc a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.article-toc-index {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
}

.article-toc-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.wp-detail-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 24px;
  align-self: start;
  height: fit-content;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  scrollbar-color: var(--gold) var(--soft);
  scrollbar-width: thin;
}

.wp-widget {
  padding: 28px;
  color: var(--muted-ink);
}

.wp-widget h2,
.wp-search-form label {
  display: block;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Duru Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.wp-widget ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp-widget li {
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.wp-widget li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.wp-widget a {
  color: var(--muted-ink);
}

.wp-widget a:hover {
  color: var(--gold);
}

.wp-widget a.active {
  color: var(--gold-dark);
  font-weight: 700;
}

.wp-search-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.wp-search-form input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-right: 0;
  padding: 0 12px;
  font: inherit;
}

.wp-search-form button {
  min-height: 44px;
  border: 0;
  background: var(--gold);
  color: var(--white);
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.wp-search-form button:hover {
  background: var(--gold-dark);
}

.timeline {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 50px;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-list article {
  padding: 0 0 22px 26px;
  border-left: 2px solid var(--line);
}

.timeline-list span,
.article-row span,
.article-card-meta {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: start;
}

.article-archive-main {
  min-width: 0;
}

.article-list,
.faq-list {
  display: grid;
  gap: 16px;
}

.article-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.article-archive-main .article-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: box-shadow 0.2s linear, transform 0.2s linear, border-color 0.2s linear;
}

.article-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.article-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--soft);
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s linear;
}

.article-card:hover .article-card-image img {
  transform: scale(1.03);
}

.article-card-body {
  display: grid;
  gap: 12px;
  padding: 24px 24px 10px;
}

.article-card-meta {
  display: flex;
  min-width: 0;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 5px;
  line-height: 1.5;
}

.article-card-categories {
  min-width: 0;
  overflow-wrap: anywhere;
}

.article-card-meta a {
  color: inherit;
}

.article-card-meta a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-card h2 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.article-card p {
  margin-bottom: 0;
}

.article-card-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin: auto 24px 24px;
  border-bottom: 1px solid currentColor;
}

.article-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px;
  color: var(--muted-ink);
  text-align: center;
}

.site-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.site-pagination > span {
  color: var(--muted-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-pagination div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.site-pagination a,
.site-pagination div span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.site-pagination a:hover,
.site-pagination a.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.article-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.article-row:hover {
  box-shadow: var(--shadow);
}

.article-row h2 {
  font-size: 1.6rem;
}

.article-row .badge {
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--soft);
}

.faq-page-section,
.contact-page-section {
  background: var(--soft);
}

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

.faq-help-card {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.faq-help-card h2 {
  font-size: 1.75rem;
  line-height: 1.3;
}

.faq-list.enhanced {
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s linear, box-shadow 0.2s linear;
}

.faq-list details[open],
.faq-list details:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  display: inline-flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.faq-list summary:hover {
  color: var(--gold);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted-ink);
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  margin: 0 0 1em;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-admin-content {
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.contact-admin-content > :first-child {
  margin-top: 0;
}

.contact-admin-content > :last-child {
  margin-bottom: 0;
}

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

.contact-intro-card,
.contact-card,
.contact-form-panel {
  padding: 28px;
}

.contact-intro-card h2,
.contact-form-panel h2 {
  font-size: 2rem;
  line-height: 1.25;
}

.contact-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  transition: border-color 0.2s linear, box-shadow 0.2s linear, transform 0.2s linear;
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Duru Sans", sans-serif;
  font-weight: 700;
}

.contact-card h3 {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-card a {
  color: var(--gold);
  font-weight: 700;
}

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

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

.contact-form-feedback {
  padding: 13px 15px;
  border: 1px solid #bad8c5;
  border-left: 4px solid #2f6f4e;
  border-radius: var(--radius);
  background: #edf7f1;
  color: #24583e;
  font-weight: 700;
}

.contact-form-feedback.error {
  border-color: #e3b8b4;
  border-left-color: #a52a21;
  background: #fff1ef;
  color: #84251f;
}

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

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 1px solid var(--gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-map {
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  padding: 54px 0 22px;
  background: #161616;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 34px;
}

.footer-grid h2 {
  font-family: "Duru Sans", sans-serif;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: #e8dbc4;
}

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

.footer-grid p {
  color: #c8c0b3;
}

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

.footer-brand span {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9a196;
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .wp-detail-grid.has-toc {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
  }

  .article-toc--desktop {
    display: none;
  }

  .article-toc--mobile {
    display: block;
  }
}

@media (max-width: 1080px) {
  .site-nav > a,
  .nav-item > a {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 0.78rem;
  }

  .nav-cta {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 0.78rem;
  }
}

@media (max-width: 980px) {
  :root {
    --heading-1: 2.75rem;
    --heading-2: 2rem;
    --heading-3: 1.4rem;
  }

  .page-hero h1 {
    font-size: 2.75rem;
  }

  .nav-wrap {
    display: flex;
    flex-wrap: wrap;
    min-height: 182px;
  }

  .header-variant-transparent .nav-wrap,
  .home-page .nav-wrap {
    min-height: 100px;
  }

  .site-header .brand {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    padding: 20px;
  }

  .site-header .brand img {
    width: 110px;
    height: 110px;
  }

  .header-variant-transparent .site-header .brand,
  .home-page .site-header .brand {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    border-color: var(--gold);
    background: var(--gold);
  }

  .menu-toggle span {
    background: var(--white);
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding: 8px 0 18px;
    background: var(--white);
  }

  .site-nav.open {
    display: flex;
  }

  .home-page .site-nav > a,
  .home-page .nav-item > a,
  .header-variant-transparent .site-nav > a,
  .header-variant-transparent .nav-item > a,
  .site-nav > a,
  .nav-item > a {
    min-height: auto;
    color: var(--ink);
    padding: 13px 16px;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    max-height: 50vh;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 14px;
  }

  .nested-dropdown {
    padding-left: 18px;
  }

  .nav-item:hover > .dropdown,
  .nav-item:focus-within > .dropdown,
  .dropdown-item:hover > .nested-dropdown,
  .dropdown-item:focus-within > .nested-dropdown {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .split,
  .page-hero-grid,
  .timeline,
  .contact-grid,
  .contact-layout,
  .faq-shell,
  .about-hero-grid,
  .about-highlight-grid,
  .about-profile-grid,
  .about-cta,
  .principle-grid,
  .why-grid,
  .service-detail-grid,
  .service-faq-layout,
  .article-archive-layout,
  .wp-detail-grid,
  .wp-detail-grid.has-toc {
    grid-template-columns: 1fr;
  }

  .wp-detail-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }

  .article-archive-main .article-list {
    grid-template-columns: 1fr;
  }

  .service-section-heading {
    position: static;
  }

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

  .about-profile-grid {
    gap: 34px;
  }

  .about-cta {
    justify-items: center;
    text-align: center;
  }

  .faq-help-card {
    position: static;
  }

  .hero {
    min-height: 680px;
    padding-top: 140px;
  }

  .strip-grid,
  .card-grid,
  .article-list,
  .service-mosaic,
  .card-grid.three,
  .footer-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

  .strip-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 640px) {
  :root {
    --heading-1: 2.25rem;
    --heading-2: 1.75rem;
    --heading-3: 1.35rem;
    --heading-4: 1.15rem;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .service-related-grid {
    grid-template-columns: 1fr;
  }

  .site-breadcrumb {
    font-size: 0.75rem;
  }

  .site-breadcrumb-inner {
    min-height: 44px;
  }

  .site-breadcrumb ol,
  .site-breadcrumb li {
    gap: 5px;
  }

  .site-breadcrumb li:nth-child(n + 4):last-child {
    flex-basis: 100%;
  }

  .site-breadcrumb li:nth-child(n + 4):last-child::before {
    display: none;
  }

  .header-variant-transparent.has-site-breadcrumb .page-hero,
  .header-variant-transparent.has-site-breadcrumb .page-hero.compact {
    padding-top: 158px;
  }

  .site-header .nav-wrap {
    width: min(100% - 40px, 1200px);
  }

  .brand span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .header-variant-transparent .page-hero {
    padding-top: 96px;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .wp-entry-header h1 {
    font-size: 1.875rem;
  }

  .wp-entry-content,
  .content-page .prose {
    font-size: 1rem;
  }

  .prose h1 {
    font-size: 1.9rem;
  }

  .prose h2 {
    font-size: 1.65rem;
  }

  .prose h3 {
    font-size: 1.35rem;
  }

  .prose h4 {
    font-size: 1.15rem;
  }

  .home-page .site-header {
    position: absolute;
  }

  .hero {
    min-height: 720px;
    padding-top: 125px;
  }

  .hero-actions,
  .about-hero-actions,
  .cta-grid,
  .cta-stack,
  .section-head,
  .footer-bottom,
  .article-list,
  .article-row,
  .icon-trio {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .contact-panel,
  .contact-form,
  .contact-intro-card,
  .contact-card,
  .contact-form-panel,
  .faq-help-card,
  .about-highlight-card,
  .service-card,
  .info-card,
  .service-detail-content,
  .service-side-card,
  .wp-detail-article,
  .wp-widget,
  .article-row {
    padding: 20px;
  }

  .wp-detail-grid.has-toc .wp-detail-article {
    padding: 20px;
  }

  .article-row .badge {
    justify-self: start;
  }

  .site-pagination {
    display: grid;
    justify-items: start;
  }

  .about-hero-card figcaption {
    position: static;
  }

  .about-profile-copy blockquote {
    padding: 20px;
  }

  .profile-card::before {
    inset: 24px -8px -8px 24px;
  }

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

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

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wp-post-navigation-links {
    grid-template-columns: 1fr;
  }

  .wp-post-navigation-link.is-next {
    grid-column: 1;
  }

  .wp-entry-meta {
    display: grid;
    align-items: start;
    gap: 7px;
  }

  .wp-entry-meta-item + .wp-entry-meta-item {
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
  }

  .contact-map iframe {
    height: 340px;
  }

  .faq-list summary {
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}
