:root {
  --jr-color-obsidian: #131313;
  --jr-color-charcoal: #222222;
  --jr-color-ivory: #f7f4ee;
  --jr-color-sand: #ebe4d6;
  --jr-color-red: #d71920;
  --jr-color-brass: #b3924b;
  --jr-color-steel: #6a6a6a;
  --jr-color-white: #ffffff;
  --jr-color-border: rgba(19, 19, 19, 0.12);
  --jr-shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.08);
  --jr-content-max: 1280px;
  --jr-shell-gutter: 32px;
  --jr-shell: calc(var(--jr-content-max) + (var(--jr-shell-gutter) * 2));
  --jr-shell-wide: calc(1440px + (var(--jr-shell-gutter) * 2));
  --jr-radius-card: 1.25rem;
  --jr-radius-pill: 999px;
  --jr-font-primary: "Proxima Nova", "Helvetica Neue", Arial, sans-serif;
  --jr-font-secondary: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--jr-color-ivory);
  color: var(--jr-color-obsidian);
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  line-height: 1.65;
}

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

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

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

.screen-reader-text:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  background: var(--jr-color-white);
  color: var(--jr-color-obsidian);
  z-index: 9999;
}

.shell {
  width: min(100%, var(--jr-shell));
  padding-right: var(--jr-shell-gutter);
  padding-left: var(--jr-shell-gutter);
  margin-right: auto;
  margin-left: auto;
}

.shell--narrow {
  width: min(100%, calc(1120px + (var(--jr-shell-gutter) * 2)));
  padding-right: var(--jr-shell-gutter);
  padding-left: var(--jr-shell-gutter);
}

.site-frame {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 48%, rgba(235, 228, 214, 0.65) 100%),
  var(--jr-color-ivory);
}

.site-main {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__utility {
  background: #272727;
  color: var(--jr-color-white);
  border-bottom: 0;
}

.site-header__utility-inner,
.site-header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__utility-inner {
  min-height: 2.8125rem;
  justify-content: flex-end;
  font-size: 0.75rem;
}

.site-header__utility-copy {
  display: none;
}

.site-header__main {
  background: #141414;
  color: var(--jr-color-white);
  border-bottom: 0;
}

.site-header__main-inner {
  position: relative;
  min-height: 5rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-branding__logo-link {
  display: inline-flex;
  align-items: center;
}

.site-branding__logo-link img,
.site-branding__fallback-logo,
.site-branding__logo img,
.custom-logo {
  width: auto;
  height: 3rem;
  max-height: none;
}

.site-branding__title {
  display: block;
  color: var(--jr-color-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-branding__tagline {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.utility-nav,
.primary-menu,
.sub-menu,
.footer-nav,
.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.utility-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.utility-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--jr-color-white);
  font-family: var(--jr-font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.utility-nav li:last-child a {
  min-height: 1.8125rem;
  padding: 0 1rem;
  border: 1px solid rgba(243, 243, 243, 0.9);
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.utility-nav a[href^="tel:"]::before {
  content: "\260E";
  font-size: 0.72rem;
}

.primary-navigation {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: clamp(1.5rem, 3vw, 3rem);
  margin-right: auto;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.nav-item {
  position: relative;
}

.primary-menu > .nav-item--has-children {
  position: static;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1.75rem 0;
}

.nav-link--depth-0 {
  color: var(--jr-color-white);
  font-family: var(--jr-font-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.nav-link--depth-0 .nav-link__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.nav-item--depth-0.nav-item--has-children > .nav-item__top > .nav-link--depth-0::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.35rem;
  border-right: 2px solid rgba(255, 255, 255, 0.96);
  border-bottom: 2px solid rgba(255, 255, 255, 0.96);
  transform: rotate(45deg) translateY(-0.12rem);
}

.nav-link--depth-1 {
  align-items: flex-start;
  width: 100%;
  gap: 1.0625rem;
  padding: 6px 10px 6px 0;
  border-radius: 0.25rem;
  color: var(--jr-color-obsidian);
  font-family: var(--jr-font-primary);
  transition: background-color 0.2s ease;
}

.nav-link--depth-1:hover,
.nav-link--depth-1:focus-visible {
  background: rgba(20, 20, 20, 0.03);
}

.nav-link__body {
  display: grid;
  gap: 0;
  min-width: 0;
}

.nav-link__external-icon {
  display: inline-flex;
  width: 0.625rem;
  height: 0.625rem;
  flex: 0 0 0.625rem;
  background-color: currentColor;
  opacity: 0.92;
  transform: translateY(-0.08rem);
  -webkit-mask: url("../images/nav-external-link.svg") center / contain no-repeat;
  mask: url("../images/nav-external-link.svg") center / contain no-repeat;
}

.nav-item__top {
  display: contents;
}

.nav-link__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25rem;
}

.nav-link__subheadline {
  color: rgba(20, 20, 20, 0.78);
  font-size: 12px;
  line-height: 1.25rem;
  white-space: nowrap;
}

.nav-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
  border-radius: 0.2rem;
  background: #ca000a;
  color: var(--jr-color-white);
  font-size: 1rem;
}

.nav-link__icon img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.nav-link__icon > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  min-height: 1.5rem;
}

.nav-sub-menu {
  display: none;
}

.nav-item--desktop-open > .nav-sub-menu {
  display: grid;
}

.nav-mega-panel {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 20;
  width: 100%;
  border-top: 1px solid rgba(20, 20, 20, 0.06);
  background: #ffffff;
  box-shadow:
    0 12px 16px -4px rgba(10, 13, 18, 0.08),
    0 4px 6px -2px rgba(10, 13, 18, 0.03),
    0 2px 2px -1px rgba(10, 13, 18, 0.04);
  transform: none;
}

.nav-mega-panel::before {
  content: "";
  position: absolute;
  top: -0.875rem;
  left: 0;
  width: 100%;
  height: 0.875rem;
}

.primary-menu > .nav-item--desktop-open > .nav-mega-panel {
  display: flex;
  justify-content: center;
}

.nav-mega-panel__content {
  display: flex;
  flex: 1 1 auto;
  gap: 2rem;
  align-items: flex-start;
  min-width: 0;
  max-width: 49.25rem;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  overflow: clip;
}

.nav-sub-menu--mega {
  display: grid;
  flex: 1 1 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.75rem;
  row-gap: 0.75rem;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.nav-sub-menu--mega .nav-item {
  margin: 0;
}

.nav-sub-menu--mega .nav-link {
  min-height: 3.125rem;
  gap: 1.0625rem;
  align-items: center;
  padding: 0.375rem 0;
}

.nav-sub-menu--mega .nav-link__label {
  font-size: 14px;
  line-height: 20px;
}

.nav-sub-menu--mega .nav-link__subheadline {
  font-size: 12px;
  line-height: 20px;
}

.nav-mega-panel__aside {
  display: flex;
  width: 26.75rem;
  min-height: 23.625rem;
  padding: 1.5rem;
  background: #fafafa;
}

.nav-callout {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid #e4e4e4;
  border-radius: 0.25rem;
  background: #f5f5f5;
  color: var(--jr-color-obsidian);
  box-shadow: none;
}

.nav-callout__media {
  overflow: hidden;
  aspect-ratio: 381 / 190;
  width: 100%;
  border-radius: 0;
}

.nav-callout__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-callout__content {
  display: grid;
  gap: 0.625rem;
  width: 100%;
  padding: 1.25rem 1rem 1rem;
}

.nav-callout__headline {
  margin-bottom: 0;
  color: var(--jr-color-obsidian);
  font-family: var(--jr-font-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.nav-callout__copy {
  margin: 0;
  color: rgba(20, 20, 20, 0.78);
  font-family: var(--jr-font-primary);
  font-size: 12px;
  line-height: 20px;
}

.nav-callout__link,
.button--header {
  white-space: nowrap;
}

.nav-callout__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 0.25rem;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--jr-color-obsidian);
  font-family: var(--jr-font-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
}

.nav-callout__link:hover,
.nav-callout__link:focus-visible {
  color: var(--jr-color-obsidian);
  text-decoration: none;
}

.nav-callout__link::after {
  content: "›";
  color: #ca000a;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.nav-callout__link:hover::after,
.nav-callout__link:focus-visible::after {
  transform: translateX(0.12rem);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.25rem;
  background: transparent;
  color: var(--jr-color-white);
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25rem;
  text-transform: none;
}

.mobile-nav-toggle,
.primary-navigation__mobile-cta {
  display: none;
}

.mobile-nav-toggle {
  appearance: none;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 2.75rem;
  min-width: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #181d27;
}

.mobile-nav-toggle::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.12rem);
  transition: transform 0.2s ease;
}

.nav-item--mobile-open > .nav-item__top .mobile-nav-toggle::before {
  transform: rotate(-135deg) translateX(-0.08rem) translateY(0.08rem);
}

.site-header__cta .button,
.button--header {
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 0.25rem;
  background: #c8000b;
  color: var(--jr-color-white);
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  box-shadow:
    inset 0 0 0 1px rgba(10, 13, 18, 0.18),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05);
}

.site-header__cta {
  flex: 0 0 auto;
  margin-left: clamp(1rem, 2.5vw, 2rem);
}

.site-header__cta .button:hover,
.site-header__cta .button:focus-visible,
.button--header:hover,
.button--header:focus-visible {
  transform: none;
  background: #b70009;
  border-color: transparent;
}

.mobile-call-bubble {
  display: none;
}

.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section--hero {
  padding-top: clamp(3rem, 7vw, 6rem);
  background:
    linear-gradient(135deg, rgba(19, 19, 19, 0.02) 0%, rgba(19, 19, 19, 0.08) 100%),
    radial-gradient(circle at top right, rgba(183, 146, 75, 0.18), transparent 28%),
    var(--jr-color-ivory);
}

.section--surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(235, 228, 214, 0.3));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--jr-color-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--jr-color-red);
}

.archive-hero {
  max-width: 52rem;
}

.archive-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
}

.archive-hero__copy {
  max-width: 42rem;
  color: rgba(19, 19, 19, 0.72);
  font-size: 1.125rem;
}

.single-hero {
  max-width: 58rem;
}

.single-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.75rem, 7vw, 5rem);
}

.single-hero__lead {
  max-width: 46rem;
  color: rgba(19, 19, 19, 0.72);
  font-size: 1.125rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.875rem 1.375rem;
  border: 1px solid var(--jr-color-red);
  border-radius: var(--jr-radius-pill);
  background: var(--jr-color-red);
  color: var(--jr-color-white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: #bd1016;
  border-color: #bd1016;
}

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

.content-card {
  min-width: 0;
}

.content-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--jr-color-border);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--jr-shadow-soft);
}

.content-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(19, 19, 19, 0.08), rgba(19, 19, 19, 0.18));
}

.content-card__media img,
.entry-media__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card__placeholder,
.entry-media__placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background:
    linear-gradient(130deg, rgba(19, 19, 19, 0.08), rgba(19, 19, 19, 0.16)),
    linear-gradient(180deg, rgba(183, 146, 75, 0.22), rgba(183, 146, 75, 0));
}

.content-card__body {
  display: grid;
  gap: 0.5rem;
  padding: 1.5rem;
}

.content-card__title {
  font-size: 1.45rem;
}

.content-card__title-link {
  color: inherit;
  text-decoration: none;
}

.content-card__title-link:hover,
.content-card__title-link:focus-visible {
  color: var(--jr-color-red);
}

.content-card__excerpt {
  color: rgba(19, 19, 19, 0.72);
}

.content-card__meta {
  margin-bottom: 0;
  color: rgba(19, 19, 19, 0.56);
  font-size: 0.85rem;
}

.content-card__details {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-card__details li {
  display: grid;
  gap: 0.2rem;
}

.content-card__details strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card__details span {
  color: rgba(19, 19, 19, 0.72);
}

.content-card__details a,
.detail-list a {
  color: var(--jr-color-red);
  text-decoration: none;
}

.content-card__details a:hover,
.content-card__details a:focus-visible,
.detail-list a:hover,
.detail-list a:focus-visible {
  text-decoration: underline;
}

.content-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--jr-color-red);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.content-card__link:hover,
.content-card__link:focus-visible {
  text-decoration: underline;
}

.entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.entry-layout__main {
  min-width: 0;
}

.entry-layout__aside {
  min-width: 0;
}

.entry-media {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.entry-media__featured {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  background: rgba(19, 19, 19, 0.08);
}

.entry-media__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.entry-media__thumb {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 1rem;
}

.entry-media__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-shell {
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--jr-color-border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--jr-shadow-soft);
}

.detail-card,
.faq-set-card {
  padding: 1.5rem;
  border: 1px solid var(--jr-color-border);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--jr-shadow-soft);
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  gap: 0.2rem;
}

.detail-list strong,
.fact-chip strong {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-list span,
.fact-chip span {
  color: rgba(19, 19, 19, 0.72);
}

.detail-card__map {
  overflow: hidden;
  margin-top: 1.5rem;
  border-radius: 1rem;
}

.detail-card__map iframe {
  display: block;
  width: 100%;
  min-height: 18rem;
  border: 0;
}

.facts-grid,
.benefits-grid,
.faq-set-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.facts-grid {
  margin-top: 1.5rem;
}

.fact-chip {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(19, 19, 19, 0.04);
}

.section--embedded {
  padding: 0 0 2rem;
}

.section-panel--dark {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(19, 19, 19, 0.97), rgba(34, 34, 34, 0.97)),
    var(--jr-color-charcoal);
  color: var(--jr-color-white);
}

.section-panel--dark h2 {
  color: var(--jr-color-white);
}

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

.benefit-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
}

.section--dark {
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.98), rgba(34, 34, 34, 0.98));
  color: var(--jr-color-white);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3rem);
}

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

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

.testimonial-card {
  display: grid;
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
}

.testimonial-card__media {
  aspect-ratio: 4 / 3;
}

.testimonial-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.testimonial-card__meta {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

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

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1.5rem;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 1) 0%, rgba(189, 16, 22, 1) 50%, rgba(160, 13, 18, 1) 100%);
  color: var(--jr-color-white);
}

.eyebrow--light,
.eyebrow--footer {
  color: var(--jr-color-white);
}

.eyebrow--light::before,
.eyebrow--footer::before {
  background: var(--jr-color-white);
}

.button--inverse {
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--jr-color-white);
  color: var(--jr-color-red);
}

.site-footer {
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.98), rgba(10, 10, 10, 0.98));
  color: rgba(255, 255, 255, 0.84);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.7fr) minmax(15rem, 0.6fr);
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--jr-color-white);
}

.footer-nav,
.footer-contact-list {
  display: grid;
  gap: 0.75rem;
}

.site-footer__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.home-page .section {
  position: relative;
}

.home-hero {
  position: relative;
  padding: 2rem 0 0;
  background:
    linear-gradient(180deg, rgba(19, 19, 19, 0.96), rgba(34, 34, 34, 0.96)),
    var(--jr-color-charcoal);
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero::before {
  background:
    linear-gradient(135deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 35% 36%, transparent 36% 100%),
    linear-gradient(45deg, transparent 0 52%, rgba(255, 255, 255, 0.06) 52% 53%, transparent 53% 100%);
  opacity: 0.7;
}

.home-hero__inner {
  position: relative;
  display: grid;
  justify-items: center;
  padding-top: 1.5rem;
}

.home-hero__headline {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin-bottom: -1rem;
  padding: 1.15rem 1.5rem;
  background: var(--jr-color-red);
  text-align: center;
  box-shadow: var(--jr-shadow-soft);
}

.home-hero__headline h1 {
  margin-bottom: 0;
  color: var(--jr-color-white);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.home-hero__tagline {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--jr-font-secondary);
  font-style: italic;
  text-align: center;
}

.home-hero__media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 78rem;
  aspect-ratio: 16 / 8.3;
  overflow: hidden;
  margin-bottom: -4.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.home-hero__media img,
.home-proof__media img,
.home-standard__media img,
.home-feature-row__media img,
.home-closing-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media-placeholder,
.home-proof__media-placeholder,
.home-standard__placeholder,
.home-feature-row__placeholder,
.home-service-area__map-placeholder,
.home-closing-cta__placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(120deg, rgba(183, 146, 75, 0.2), rgba(183, 146, 75, 0));
}

.home-intro {
  padding-top: 7rem;
}

.home-intro__copy {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.home-intro__copy h2,
.home-proof__content h2,
.home-standard__heading h2,
.home-service-area__heading h2,
.home-closing-cta__content h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.home-intro__copy h2 em,
.home-proof__content h2 em,
.home-service-area__heading h2 em,
.home-feature-row__content h2 em {
  display: inline-block;
  font-family: var(--jr-font-secondary);
  font-style: italic;
  font-weight: 600;
}

.home-intro__body {
  max-width: 40rem;
  color: rgba(19, 19, 19, 0.8);
}

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

.home-promo-card {
  overflow: hidden;
  border: 1px solid rgba(179, 146, 75, 0.6);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(19, 19, 19, 0.96));
  color: var(--jr-color-white);
}

.home-promo-card__media {
  aspect-ratio: 16 / 9;
}

.home-promo-card__placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(183, 146, 75, 0.24), rgba(183, 146, 75, 0.05));
}

.home-promo-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.home-promo-card__body h3 {
  color: var(--jr-color-white);
  font-size: 1.35rem;
}

.home-promo-card__body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.home-promo-card__body a {
  color: var(--jr-color-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
  gap: 2rem;
  align-items: center;
}

.home-proof__content p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.76);
}

.home-proof-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.home-proof-point {
  max-width: 28rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.home-proof-point:first-child {
  border-left-color: var(--jr-color-red);
}

.home-proof-point h3,
.home-feature-row__content h2,
.home-closing-cta__content h2 {
  color: var(--jr-color-white);
}

.home-proof-point p,
.home-feature-row__content p,
.home-closing-cta__content p {
  color: rgba(255, 255, 255, 0.74);
}

.home-proof__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.home-standard {
  background:
    linear-gradient(175deg, transparent 0 55%, rgba(19, 19, 19, 0.08) 55% 57%, transparent 57% 100%),
    var(--jr-color-ivory);
}

.home-standard__heading,
.home-testimonials__heading,
.home-service-area__heading {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.home-standard__heading p,
.home-testimonials__heading p,
.home-service-area__heading p {
  color: rgba(19, 19, 19, 0.72);
}

.home-standard__media {
  overflow: hidden;
  aspect-ratio: 16 / 8.8;
  box-shadow: var(--jr-shadow-soft);
}

.home-quote-card {
  max-width: 52rem;
  margin: 0 auto 2rem;
  padding: 0.5rem;
}

.home-quote-card__inner {
  padding: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0.98), rgba(19, 19, 19, 0.98));
  color: var(--jr-color-white);
}

.home-quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.home-quote-card__meta {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.home-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-logo-wall__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 1rem;
  border-radius: 0.35rem;
  background: rgba(19, 19, 19, 0.08);
}

.home-logo-wall__item span {
  color: var(--jr-color-red);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-feature-rows {
  padding-top: 4rem;
}

.home-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 23rem);
  gap: 2rem;
  align-items: center;
}

.home-feature-row + .home-feature-row {
  margin-top: 2rem;
}

.home-feature-row--reverse {
  grid-template-columns: minmax(18rem, 23rem) minmax(0, 0.9fr);
}

.home-feature-row--reverse .home-feature-row__content {
  order: 2;
}

.home-feature-row--reverse .home-feature-row__media {
  order: 1;
}

.home-feature-row__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.home-service-area__map {
  max-width: 52rem;
  margin: 0 auto 2rem;
}

.home-service-area__locations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.home-service-area__locations a {
  color: rgba(19, 19, 19, 0.72);
  font-size: 0.88rem;
}

.home-closing-cta {
  padding-top: 1rem;
}

.home-closing-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(16rem, 0.9fr);
  overflow: hidden;
  background: var(--jr-color-red);
}

.home-closing-cta__content {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(215, 25, 32, 1), rgba(194, 16, 21, 1));
}

.home-closing-cta__media {
  min-height: 100%;
}

.empty-state {
  padding: 3rem;
  border: 1px solid var(--jr-color-border);
  border-radius: var(--jr-radius-card);
  background: rgba(255, 255, 255, 0.78);
}

.wp-block-post-content > *:last-child,
.entry-content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .site-header__main-inner,
  .site-footer__grid,
  .entry-layout,
  .cta-band,
  .home-proof__grid,
  .home-feature-row,
  .home-feature-row--reverse,
  .home-closing-cta__grid,
  .faq-set-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    display: grid;
  }

  .site-header__cta {
    display: none;
  }

  .nav-mega-panel__aside {
    width: 22rem;
  }

  .home-promo-grid,
  .home-logo-wall,
  .home-service-area__locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-feature-row--reverse .home-feature-row__content,
  .home-feature-row--reverse .home-feature-row__media {
    order: initial;
  }

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

@media (max-width: 782px) {
  .shell {
    width: 100%;
  }

  .section {
    padding: 3rem 0;
  }

  .site-header {
    position: relative;
  }

  .site-header__main-inner {
    flex-wrap: wrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-navigation {
    display: none;
    width: 100%;
    margin: 1rem 0 0;
    padding: 0 1.25rem 1.25rem;
    border-radius: 0.75rem;
    background: #fff;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-menu {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .primary-menu > .nav-item {
    width: 100%;
  }

  .primary-menu > .nav-item + .nav-item {
    border-top: 1px solid #e9eaeb;
  }

  .nav-item__top {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    justify-content: space-between;
    width: 100%;
  }

  .nav-item--depth-0.nav-item--has-children > .nav-item__top > .nav-link--depth-0 {
    flex: 1 1 auto;
    min-width: 0;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .nav-link--depth-0 {
    width: 100%;
    padding: 1rem 0;
    color: #181d27;
  }

  .nav-link--depth-0 .nav-link__label {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .nav-item--depth-0.nav-item--has-children > .nav-item__top > .nav-link--depth-0::after {
    display: none;
  }

  .nav-mega-panel {
    position: static;
    display: none;
    width: 100%;
    border-top: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-item--mobile-open > .nav-mega-panel {
    display: block;
  }

  .nav-mega-panel__content {
    display: block;
    max-width: none;
    padding: 0.25rem 0 0;
  }

  .nav-sub-menu--mega {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 0.75rem;
  }

  .nav-sub-menu--mega .nav-link {
    width: 100%;
    padding: 0.75rem 0;
  }

  .nav-sub-menu--mega .nav-link__subheadline {
    white-space: normal;
  }

  .nav-mega-panel__aside {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0.5rem 0 0;
    background: transparent;
  }

  .nav-callout {
    background: #f7f4ee;
  }

  .primary-navigation__mobile-cta {
    display: block;
    margin-top: 1rem;
  }

  .primary-navigation__mobile-cta .button {
    display: flex;
    width: 100%;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.5rem 1rem;
    border: 0;
    border-radius: 0.25rem;
    background: #c8000b;
    color: var(--jr-color-white);
    font-family: var(--jr-font-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    box-shadow:
      inset 0 0 0 1px rgba(10, 13, 18, 0.18),
      inset 0 -2px 0 rgba(10, 13, 18, 0.05);
  }

  .primary-navigation__mobile-cta .button:hover,
  .primary-navigation__mobile-cta .button:focus-visible {
    transform: none;
    background: #b70009;
    border-color: transparent;
  }

  .mobile-call-bubble {
    position: fixed;
    right: 0;
    top: 30px;
    left: 0;
    z-index: 90;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-call-bubble.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-call-bubble__inner {
    padding: 12px 20px;
  }

  .mobile-call-bubble__link {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 0.625rem;
    min-height: 3.25rem;
    border-radius: 999px;
    box-shadow:
      0 14px 28px rgba(10, 13, 18, 0.18),
      inset 0 0 0 1px rgba(10, 13, 18, 0.18),
      inset 0 -2px 0 rgba(10, 13, 18, 0.05);
    pointer-events: auto;
  }

  .mobile-call-bubble__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    line-height: 1;
    font-variation-settings:
      "FILL" 0,
      "wght" 400,
      "GRAD" 0,
      "opsz" 24;
  }

  .mobile-call-bubble__label {
    line-height: 1;
  }

  .site-branding__tagline,
  .site-header__utility {
    display: none;
  }

  .entry-media__gallery,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero__headline {
    margin-bottom: 0;
    padding: 1rem 1.1rem;
  }

  .home-hero__tagline {
    margin-top: 1rem;
  }

  .home-hero__media {
    margin-bottom: -2rem;
  }

  .home-intro {
    padding-top: 4rem;
  }

  .home-promo-grid,
  .home-logo-wall,
  .home-service-area__locations,
  .benefits-grid,
  .entry-media__gallery {
    grid-template-columns: 1fr;
  }

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

/* Visual parity refinement pass */
:root {
  --jr-color-obsidian: #171717;
  --jr-color-charcoal: #262626;
  --jr-color-ivory: #f4f1ea;
  --jr-color-sand: #d6c7a2;
  --jr-color-red: #d71920;
  --jr-color-brass: #b3924b;
  --jr-color-border: rgba(23, 23, 23, 0.1);
  --jr-color-border-strong: rgba(179, 146, 75, 0.5);
  --jr-shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.09);
  --jr-shell: min(1320px, calc(100vw - 3rem));
  --jr-shell-wide: min(1440px, calc(100vw - 3rem));
  --jr-shell-narrow: min(1140px, calc(100vw - 3rem));
  --jr-radius-card: 1rem;
}

body {
  background: var(--jr-color-ivory);
  color: var(--jr-color-obsidian);
  font-family: var(--jr-font-primary);
  line-height: 1.58;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.045em;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.section--hero {
  padding-top: clamp(2.75rem, 5vw, 4.75rem);
}

.section--surface {
  background: transparent;
}

.eyebrow {
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 0;
}

.button,
.wp-element-button,
.wp-block-button__link {
  min-height: 3.25rem;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header {
  backdrop-filter: blur(14px);
}

.archive-hero,
.single-hero {
  max-width: 49rem;
}

.archive-hero h1,
.single-hero h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6.25vw, 5.25rem);
  line-height: 0.94;
}

.archive-hero__copy,
.single-hero__lead,
.single-post__meta {
  max-width: 38rem;
}

.archive-hero__copy,
.single-hero__lead {
  color: rgba(23, 23, 23, 0.72);
  font-size: 1.02rem;
}

.single-post__meta {
  margin-bottom: 0.85rem;
  color: rgba(23, 23, 23, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-grid {
  gap: 1.15rem;
}

.content-card__inner {
  border-color: var(--jr-color-border-strong);
  border-radius: 0;
  background: linear-gradient(180deg, #242424 0%, #1b1b1b 100%);
  color: var(--jr-color-white);
  box-shadow: none;
}

.content-card__media {
  aspect-ratio: 1.55 / 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.content-card__placeholder,
.entry-media__placeholder {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    linear-gradient(120deg, rgba(179, 146, 75, 0.3), rgba(179, 146, 75, 0.06));
}

.content-card__body {
  gap: 0.65rem;
  padding: 1rem 1rem 1.15rem;
}

.content-card .eyebrow {
  color: var(--jr-color-brass);
}

.content-card .eyebrow::before {
  background: var(--jr-color-brass);
}

.content-card__title,
.content-card--post .content-card__title {
  margin-bottom: 0;
  color: var(--jr-color-white);
  font-size: 1.45rem;
  line-height: 1.02;
}

.content-card__excerpt {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.content-card__meta {
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-card__link {
  margin-top: auto;
  color: var(--jr-color-white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.content-card__link::after {
  content: "›";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--jr-color-red);
  font-size: 1rem;
  line-height: 1;
}

.entry-shell,
.detail-card,
.faq-set-card {
  border-color: rgba(179, 146, 75, 0.28);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.entry-shell {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.entry-shell--post {
  max-width: 58rem;
  margin: 0 auto;
}

.entry-content {
  font-size: 1.02rem;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content > h2,
.entry-content > h3 {
  margin-top: 2.2rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.2rem;
}

.entry-layout {
  grid-template-columns: minmax(0, 1.5fr) minmax(19rem, 25rem);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.entry-media__featured {
  border-radius: 0.95rem;
}

.section-panel--dark,
.section--dark {
  background: #262626;
}

.section-panel--dark {
  border-radius: 1rem;
}

.benefit-card,
.fact-chip,
.testimonial-card,
.jr-faq-item {
  border-radius: 0.9rem;
}

.faq-set-grid,
.testimonial-grid,
.benefits-grid {
  gap: 1.15rem;
}

.cta-band {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0.25rem 0 0 0.25rem;
  background: #111;
  overflow: hidden;
  box-shadow: none;
}

.cta-band__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  gap: 1.5rem;
  padding: clamp(2.25rem, 3.2vw, 3.5rem);
  background: #d0020d;
}

.cta-band__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9375rem;
  height: 3.9375rem;
  flex: 0 0 3.9375rem;
}

.cta-band__icon img,
.cta-band__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-band__content h2 {
  margin: 0;
  max-width: 18.5ch;
  color: #fff;
  font-family: var(--jr-font-primary);
  font-size: clamp(2.25rem, 3vw, 2.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 2.75rem;
  letter-spacing: -0.045rem;
}

.cta-band__copy {
  max-width: 31rem;
  margin: 0;
  color: #fff;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25rem;
}

.cta-band__actions {
  display: flex;
  justify-content: flex-start;
}

.cta-band__media {
  flex: 0 0 clamp(17rem, 33vw, 27rem);
  width: clamp(17rem, 33vw, 27rem);
  min-height: 22rem;
  min-width: 0;
  background: #111;
  line-height: 0;
  overflow: hidden;
}

.cta-band__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.button--inverse {
  min-height: 3rem;
  padding: 0.8125rem 1rem;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  background: #141414;
  color: #fff;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.button--inverse:hover,
.button--inverse:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.16);
  background: #0d0d0d;
}

.site-footer {
  position: relative;
  margin-top: 8.75rem;
  overflow: visible;
  background: #fff;
  color: #a4a7ae;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 8.75rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: #141414;
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.site-footer > * {
  position: relative;
  z-index: 2;
}

.site-footer__cta-wrap {
  position: relative;
  z-index: 2;
  margin-top: -8.75rem;
  margin-bottom: 3.25rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
  gap: 3rem 4rem;
  align-items: start;
  padding-top: 0;
  padding-bottom: 3rem;
}

.site-footer--without-cta {
  margin-top: 0;
  background: #141414;
}

.site-footer--without-cta::before {
  top: 0;
  background: #141414;
  clip-path: none;
}

.site-footer--without-cta .site-footer__top {
  padding-top: 3.25rem;
}

.site-footer__brand {
  display: grid;
  gap: 1.25rem;
}

.site-footer__logo {
  width: auto;
  height: 3.0625rem;
  max-width: min(100%, 8.4375rem);
}

.site-footer__logo-link--custom .custom-logo {
  height: 3.0625rem;
  max-height: 3.0625rem;
  width: auto;
}

.site-footer__address {
  margin: 0;
  color: #a4a7ae;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}

.site-footer__contact {
  display: grid;
  gap: 0.125rem;
  margin-top: 1rem;
}

.site-footer__contact p {
  margin: 0;
  color: #a4a7ae;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}

.site-footer__contact a {
  color: inherit;
  text-decoration: none;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  text-decoration: underline;
}

.footer-nav--static {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 2rem 3.875rem;
}

.site-footer__nav h3 {
  margin: 0 0 1.125rem;
  color: #a4a7ae;
  font-family: var(--jr-font-primary);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem;
}

.site-footer__nav h3 a {
  color: inherit;
}

.footer-nav a,
.footer-nav--static li {
  color: #a4a7ae;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
}

.footer-nav,
.footer-nav--static {
  display: grid;
  gap: 1rem;
}

.site-footer__claims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  justify-items: center;
  padding-bottom: 3rem;
}

.site-footer__claim {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  text-align: center;
}

.site-footer__claim-badge img {
  width: auto;
  height: auto;
  max-width: 12rem;
  max-height: 4.75rem;
}

.site-footer__claim-heading,
.site-footer__claim-copy {
  margin: 0;
  font-family: var(--jr-font-primary);
}

.site-footer__claim-heading {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem;
}

.site-footer__claim-copy {
  color: #a4a7ae;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1rem;
}

.site-footer__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

.site-footer__meta p {
  margin: 0;
  justify-self: start;
  color: #8d919c;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}

.site-footer__meta-claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  justify-self: center;
  text-align: center;
  color: #8d919c;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
}

.site-footer__meta-claim img {
  width: auto;
  height: 1rem;
}

.site-footer__meta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  margin-left: 0;
}

.site-footer__meta-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.site-footer__meta-links a {
  color: #a4a7ae;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.site-footer__social-link img {
  width: auto;
  height: 1.5rem;
  display: block;
}

.home-hero {
  padding-top: 0.75rem;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(40, 40, 40, 0.98)),
    var(--jr-color-charcoal);
}

.home-hero__inner {
  padding-top: 0.2rem;
}

.home-hero__headline {
  max-width: 42rem;
  margin-bottom: -1.4rem;
  padding: 0.95rem 1.25rem;
}

.home-hero__headline h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 0.94;
}

.home-hero__tagline {
  margin-top: 1.8rem;
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}

.home-hero__media {
  max-width: 68rem;
  aspect-ratio: 16 / 7.9;
  margin-bottom: -3.6rem;
  border: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.home-intro {
  padding-top: 6rem;
}

.home-intro__copy {
  max-width: 48rem;
}

.home-intro__copy h2,
.home-proof__content h2,
.home-standard__heading h2,
.home-testimonials__heading h2,
.home-service-area__heading h2,
.home-closing-cta__content h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.home-intro__body,
.home-proof__content p,
.home-standard__heading p,
.home-testimonials__heading p,
.home-service-area__heading p {
  font-size: 0.95rem;
}

.home-promo-grid {
  gap: 0.85rem;
}

.home-promo-card {
  border: 1px solid rgba(179, 146, 75, 0.68);
  border-radius: 0;
  box-shadow: none;
}

.home-promo-card__media {
  aspect-ratio: 16 / 8.6;
}

.home-promo-card__body {
  gap: 0.55rem;
  min-height: 14rem;
  padding: 1rem 1rem 1.15rem;
}

.home-promo-card__body h3 {
  font-size: 1.28rem;
}

.home-promo-card__body a {
  margin-top: auto;
}

.home-proof {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.home-proof__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 23rem);
  gap: 3rem;
}

.home-proof__media {
  justify-self: end;
  max-width: 22rem;
}

.home-standard__heading,
.home-testimonials__heading,
.home-service-area__heading {
  margin-bottom: 1.75rem;
}

.home-standard__media {
  max-width: 72rem;
  margin: 0 auto;
}

.home-quote-card {
  max-width: 55rem;
}

.home-quote-card__inner {
  border-radius: 0.5rem;
  background: #2b2b2b;
  color: var(--jr-color-white);
}

.home-logo-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-logo-wall__item {
  min-height: 6rem;
  border-radius: 0.5rem;
  background: #ece7de;
  box-shadow: none;
}

.home-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 29rem);
  gap: 2.25rem;
  align-items: center;
}

.home-feature-row + .home-feature-row {
  margin-top: 2rem;
}

.home-feature-row--reverse {
  grid-template-columns: minmax(18rem, 29rem) minmax(0, 1fr);
}

.home-feature-row--reverse .home-feature-row__content {
  order: 2;
}

.home-feature-row--reverse .home-feature-row__media {
  order: 1;
}

.home-feature-row__media {
  overflow: hidden;
  aspect-ratio: 1 / 0.9;
}

.home-service-area__map {
  max-width: 68rem;
  margin: 0 auto 1.5rem;
}

.home-service-area__locations {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.home-service-area__locations p {
  margin-bottom: 0;
  font-size: 0.74rem;
  line-height: 1.55;
}

.curated-page__content > *:not(.jr-page-block) {
  width: min(100%, var(--jr-shell));
  padding-right: var(--jr-shell-gutter);
  padding-left: var(--jr-shell-gutter);
  margin-right: auto;
  margin-left: auto;
}

.curated-page__content > .jr-page-block {
  width: 100%;
  max-width: none;
}

.jr-marketing-hero__grid,
.jr-program-hero__grid,
.jr-page-split {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 31rem);
}

.jr-marketing-hero__content h1,
.jr-program-hero__content h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  line-height: 0.95;
}

.jr-marketing-hero__media,
.jr-program-hero__media,
.jr-page-split__media {
  border-radius: 0.85rem;
  box-shadow: none;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
textarea,
select,
.gform_wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.gform_wrapper textarea,
.gform_wrapper select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--jr-color-obsidian);
  font: inherit;
}

label,
.gform_wrapper .gfield_label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-header__main-inner {
    min-height: 4.2rem;
  }

  .site-footer__top,
  .site-footer__claims,
  .home-proof__grid,
  .home-feature-row,
  .home-feature-row--reverse,
  .entry-layout {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    border-radius: 0.25rem;
  }

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

  .cta-band__media {
    display: none;
  }

  .home-proof__media,
  .home-feature-row__media {
    max-width: none;
    justify-self: stretch;
  }

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

@media (max-width: 780px) {
  :root {
    --jr-shell: min(1320px, calc(100vw - 1.5rem));
  }

  .section {
    padding: 3.5rem 0;
  }

  .home-hero__headline,
  .cta-band {
    border-radius: 0.75rem;
  }

  .site-footer__columns,
  .home-logo-wall,
  .home-service-area__locations {
    grid-template-columns: 1fr;
  }

  .home-intro__copy h2,
  .home-proof__content h2,
  .home-standard__heading h2,
  .home-testimonials__heading h2,
  .home-service-area__heading h2,
  .archive-hero h1,
  .single-hero h1,
  .jr-marketing-hero__content h1,
  .jr-program-hero__content h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .cta-band__content {
    padding: 1.75rem;
  }

  .site-footer {
    margin-top: 5.5rem;
  }

  .site-footer--without-cta {
    margin-top: 0;
  }

  .site-footer__cta-wrap {
    margin-top: -5.5rem;
  }

  .site-footer__meta,
  .site-footer__meta-group {
    align-items: center;
    margin-left: 0;
  }

  .site-footer__meta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer__meta p {
    justify-self: center;
    text-align: center;
  }

  .site-footer__meta-group {
    justify-content: center;
    justify-self: center;
  }

  .site-footer__social {
    justify-content: center;
  }
}

@media (max-width: 395px) {
  .button,
  .wp-element-button,
  .wp-block-button__link {
    width: 100%;
  }

  .home-logo-wall,
  .home-service-area__locations {
    grid-template-columns: 1fr;
  }

  .content-card__body,
  .home-promo-card__body,
  .entry-shell,
  .detail-card,
  .faq-set-card {
    padding-inline: 0.9rem;
  }

  .cta-band__content {
    padding-inline: 0.9rem;
  }
}

.single-service .section--hero {
  padding: 0;
  background: transparent;
}

.single-project .section--hero {
  padding: 0;
  background: transparent;
}

.single-location .section--hero {
  padding: 0;
  background: transparent;
}

.single-hero--location-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.432fr) minmax(0, 0.568fr);
  min-height: clamp(24rem, 30vw, 26.3125rem);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  background: #141414;
  color: var(--jr-color-white);
  overflow: hidden;
}

.single-hero--location-detail:not(.has-map) {
  grid-template-columns: minmax(0, 1fr);
}

.single-hero--location-detail .single-hero__panel {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-right: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: 2rem;
  padding-left: max(calc(var(--jr-shell-gutter) + 2rem), calc(((100vw - var(--jr-content-max)) / 2) + 2rem));
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(20, 20, 20, 0.98)),
    #141414;
}

.single-hero--location-detail .single-hero__panel-inner {
  display: grid;
  gap: 1rem;
  width: min(100%, 27.1875rem);
}

.single-hero--location-detail .single-hero__location-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.single-hero--location-detail .single-hero__location-icon {
  display: inline-flex;
  flex: 0 0 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  margin-top: 0.25rem;
  color: #c8000b;
}

.single-hero--location-detail .single-hero__location-icon svg,
.single-hero--location-detail .single-hero__action-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.single-hero--location-detail h1 {
  max-width: none;
  margin: 0;
  color: var(--jr-color-white);
  font-size: clamp(2.35rem, 1.5vw + 1.65rem, 3rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.single-hero--location-detail .single-hero__location-meta,
.single-hero--location-detail .single-hero__lead,
.single-hero--location-detail .single-hero__actions {
  margin: 0;
}

.single-hero--location-detail .single-hero__location-meta {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.35;
}

.single-hero--location-detail .single-hero__location-meta br {
  content: "";
}

.single-hero--location-detail .single-hero__lead {
  max-width: 27rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.single-hero--location-detail .single-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem 1rem;
}

.single-hero--location-detail .single-hero__action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--jr-color-white);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.single-hero--location-detail .single-hero__action-link:hover,
.single-hero--location-detail .single-hero__action-link:focus-visible {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.single-hero--location-detail .single-hero__action-icon {
  display: inline-flex;
  flex: 0 0 0.625rem;
  width: 0.625rem;
  height: 0.6875rem;
  color: #c8000b;
}

.single-hero--location-detail .single-hero__phone-button {
  min-height: 2.5rem;
  padding: 0.625rem 1rem;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 0.25rem;
  background: #c8000b;
  color: var(--jr-color-white);
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.single-hero--location-detail .single-hero__phone-button:hover,
.single-hero--location-detail .single-hero__phone-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.12);
  background: #b80009;
  color: var(--jr-color-white);
}

.single-hero--location-detail .single-hero__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #d9dee5;
}

.single-hero--location-detail .single-hero__map,
.single-hero--location-detail .single-hero__map > * {
  width: 100%;
  height: 100%;
}

.single-hero--location-detail .single-hero__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}

.single-service .site-main > .section:not(.section--hero) {
  padding: 0;
}

.single-service .site-main > .jr-page-block {
  margin: 0;
}

.single-project .project-features,
.single-project .project-gallery,
.single-project .project-inline-cta,
.single-location .location-services,
.single-location .location-communities,
.single-location .location-inline-cta {
  padding: 0;
}

.single-hero--service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  min-height: clamp(32rem, 58vw, 45.375rem);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  background: #171717;
  color: var(--jr-color-white);
  overflow: hidden;
}

.single-hero--service-detail:not(.has-image) {
  grid-template-columns: minmax(0, 1fr);
}

.single-hero--service-detail .single-hero__panel {
  display: flex;
  align-items: center;
  padding-top: 1.25rem;
  padding-right: clamp(2rem, 5vw, 4.75rem);
  padding-bottom: 3.75rem;
  padding-left: max(var(--jr-shell-gutter), calc((100vw - var(--jr-content-max)) / 2));
  background: #171717;
}

.single-hero--service-detail .single-hero__panel-inner {
  display: grid;
  gap: 3.375rem;
  width: min(100%, 33rem);
}

.single-hero--service-detail .single-hero__copy {
  display: grid;
  gap: 1.125rem;
}

.single-hero--service-detail h1 {
  max-width: none;
  margin-bottom: 0;
  color: var(--Base-White, #FFF);
  font-family: "Proxima Nova";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 37px;
  letter-spacing: -0.72px;
}

.single-hero--service-detail .single-hero__lead {
  max-width: 30rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.45;
}

.single-hero--service-detail .single-hero__actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.single-hero--service-detail .button {
  min-height: 2.5rem;
  padding: 0.625rem 1rem;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 0.25rem;
  background: #c8000b;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18);
  color: var(--jr-color-white);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.single-hero--service-detail .button:hover,
.single-hero--service-detail .button:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.12);
  background: #b80009;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18);
}

.single-hero--service-detail .button.button--inverse {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  box-shadow: none;
  color: var(--jr-color-white);
}

.single-hero--service-detail .button.button--inverse:hover,
.single-hero--service-detail .button.button--inverse:focus-visible {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: var(--jr-color-white);
}

.single-hero--service-detail .single-hero__media {
  position: relative;
  min-height: 100%;
  background: #1d1d1d;
  overflow: hidden;
}

.single-hero--service-detail .single-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero--project-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.432fr) minmax(0, 0.568fr);
  min-height: clamp(32rem, 48vw, 38.75rem);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  background: #141414;
  color: var(--jr-color-white);
  overflow: hidden;
}

.single-hero--project-detail:not(.has-image) {
  grid-template-columns: minmax(0, 1fr);
}

.single-hero--project-detail .single-hero__panel {
  display: flex;
  align-items: center;
  padding-top: 1.25rem;
  padding-right: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 3.75rem;
  padding-left: max(calc(var(--jr-shell-gutter) + 2rem), calc(((100vw - var(--jr-content-max)) / 2) + 2rem));
  background: #141414;
}

.single-hero--project-detail .single-hero__panel-inner {
  display: grid;
  gap: 3.375rem;
  width: min(100%, 27.1875rem);
}

.single-hero--project-detail .single-hero__copy {
  display: grid;
  gap: 1.125rem;
}

.single-hero--project-detail h1 {
  max-width: none;
  margin: 0;
  color: var(--jr-color-white);
  font-size: clamp(2.25rem, 1.2vw + 1.7rem, 2.75rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.single-hero--project-detail .single-hero__lead {
  max-width: 27.1875rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.45;
}

.single-hero--project-detail .single-hero__actions {
  margin: 0;
}

.single-hero--project-detail .button {
  min-height: 2.5rem;
  padding: 0.625rem 1rem;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 0.25rem;
  background: #c8000b;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18);
  color: var(--jr-color-white);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.single-hero--project-detail .button:hover,
.single-hero--project-detail .button:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.12);
  background: #b80009;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18);
}

.single-hero--project-detail .single-hero__media {
  position: relative;
  min-height: 100%;
  background: #1d1d1d;
  overflow: hidden;
}

.single-hero--project-detail .single-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post .section--hero {
  padding: 0;
  background: transparent;
}

.single-post .section--surface.blog-article-section,
.blog-index__listing-section,
.blog-related {
  background: #fff;
}

.single-hero--blog-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.432fr) minmax(0, 0.568fr);
  min-height: clamp(32rem, 48vw, 45.375rem);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  background: #141414;
  color: var(--jr-color-white);
  overflow: hidden;
}

.single-hero--blog-detail:not(.has-image) {
  grid-template-columns: minmax(0, 1fr);
}

.single-hero--blog-detail .single-hero__panel {
  display: flex;
  align-items: center;
  padding-top: 1.25rem;
  padding-right: clamp(2rem, 4vw, 4.25rem);
  padding-bottom: 3.75rem;
  padding-left: max(calc(var(--jr-shell-gutter) + 2rem), calc(((100vw - var(--jr-content-max)) / 2) + 2rem));
  background: #141414;
}

.single-hero--blog-detail .single-hero__panel-inner {
  display: grid;
  gap: 2.75rem;
  width: min(100%, 27.1875rem);
}

.single-hero--blog-detail .single-hero__copy {
  display: grid;
  gap: 1.125rem;
}

.single-hero--blog-detail h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--jr-color-white);
  font-size: clamp(2.25rem, 1.4vw + 1.75rem, 3rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.single-hero--blog-detail .single-hero__lead {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.45;
}

.single-hero--blog-detail .single-hero__author {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.single-hero--blog-detail .single-hero__author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.single-hero--blog-detail .single-hero__author-avatar .avatar,
.single-hero--blog-detail .single-hero__author-avatar-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.single-hero--blog-detail .single-hero__author-meta {
  display: grid;
  gap: 0.15rem;
}

.single-hero--blog-detail .single-hero__author-name,
.single-hero--blog-detail .single-hero__author-date {
  margin: 0;
  color: var(--jr-color-white);
  font-family: var(--jr-font-primary);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.single-hero--blog-detail .single-hero__author-name {
  font-weight: 600;
}

.single-hero--blog-detail .single-hero__author-date {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.single-hero--blog-detail .single-hero__media {
  position: relative;
  min-height: 100%;
  background: #1d1d1d;
  overflow: hidden;
}

.single-hero--blog-detail .single-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-section {
  padding-top: clamp(4.5rem, 7vw, 6rem);
  padding-bottom: clamp(5rem, 8vw, 6rem);
}

.blog-article {
  width: min(100%, 45rem);
  margin: 0 auto;
}

.blog-article__content {
  color: #535862;
}

.blog-article__content::after {
  content: "";
  display: table;
  clear: both;
}

.blog-article__content > * {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.blog-article__content > *:last-child {
  margin-bottom: 0;
}

.blog-article__content p,
.blog-article__content li {
  color: #535862;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}

.blog-article__content strong,
.blog-article__content b {
  color: #181d27;
  font-weight: 700;
}

.blog-article__content a {
  color: #414651;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.blog-article__content a:hover,
.blog-article__content a:focus-visible {
  color: #181d27;
}

.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #181d27;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.blog-article__content h5,
.blog-article__content h6 {
  margin-top: 2rem;
  margin-bottom: 0.875rem;
  color: #181d27;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

.blog-article__content li + li {
  margin-top: 0.75rem;
}

.blog-article__content hr {
  margin: 2rem 0 2.5rem;
  border: 0;
  border-top: 1px solid #e9eaeb;
}

.blog-article__content figure,
.blog-article__content .wp-caption {
  width: 100%;
  max-width: 100%;
  margin: 3rem 0;
}

.blog-article__content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.blog-article__content figcaption,
.blog-article__content .wp-element-caption,
.blog-article__content .wp-caption-text {
  margin-top: 1rem;
  color: #535862;
  font-family: var(--jr-font-primary);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.blog-article__content blockquote {
  margin: 3rem 0;
  padding: 0;
  border: 0;
}

.blog-article__content blockquote p {
  margin: 0;
  color: #181d27;
  font-family: var(--jr-font-primary);
  font-size: clamp(1.35rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.3333333333;
}

.blog-article__content blockquote cite,
.blog-article__content blockquote footer {
  display: block;
  margin-top: 1rem;
  color: #535862;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid #e9eaeb;
}

.blog-share__label {
  margin: 0;
  color: #535862;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.blog-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-share__button {
  position: relative;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid #d5d7da;
  border-radius: 0.5rem;
  background: #fff;
  color: #414651;
  cursor: pointer;
  font: inherit;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.blog-share__button:hover,
.blog-share__button:focus-visible {
  color: #181d27;
  border-color: #c8ccd1;
  background: #fafafa;
  transform: translateY(-1px);
}

.blog-share__button.is-copied {
  background: #fafafa;
  color: #181d27;
}

.blog-share__button--copy {
  padding-right: 1rem;
  padding-left: 0.8125rem;
}

.blog-share__button--icon {
  width: 2.5rem;
  padding: 0.625rem;
}

.blog-share__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}

.blog-share__button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-share__button-text {
  font-family: var(--jr-font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4285714286;
}

.blog-related .jr-action-cards__surface {
  padding-top: clamp(4.5rem, 8vw, 6rem);
  padding-bottom: 6rem;
  background: #fff;
}

.blog-related .jr-action-cards__intro {
  max-width: 48rem;
}

.blog-related .jr-action-cards__headline {
  max-width: 40rem;
}

.blog-related .jr-action-cards__summary {
  max-width: 45rem;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

.blog-related .jr-action-cards__card {
  border-color: #e4e1d8;
  background: #fbfaf8;
}

.blog-related .jr-action-cards__card-media {
  min-height: 14rem;
}

.blog-related .jr-action-cards__card-body {
  gap: 0.75rem;
}

.blog-related .jr-action-cards__card-title {
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  line-height: 1.12;
}

.blog-related .jr-action-cards__card-summary {
  color: #fff;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.blog-related .jr-action-cards__card-cta {
  color: #fff;
}

.blog-related .jr-action-cards__card-cta:hover,
.blog-related .jr-action-cards__card-cta:focus-visible {
  color: #fff;
}

.blog-index__header {
  padding: 6rem 0;
  background: #fff;
}

.blog-index__hero {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
  width: 100%;
  max-width: 48rem;
}

.blog-index__hero h1 {
  margin: 0;
  color: #181d27;
  font-size: clamp(3rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.blog-index__hero h1 .jr-iowan-italic {
  display: block;
  font-family: var(--jr-font-secondary);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.blog-index__hero-copy {
  margin: 0;
  max-width: 42rem;
  color: #535862;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.blog-index__listing-section {
  padding-top: 0;
  padding-bottom: 6rem;
}

.blog-index__layout {
  display: grid;
  grid-template-columns: minmax(13rem, 17.5rem) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.blog-index__layout--no-sidebar {
  grid-template-columns: 1fr;
}

.blog-index__sidebar {
  position: sticky;
  top: 2rem;
}

.blog-index__sidebar-group {
  display: grid;
  gap: 1.25rem;
}

.blog-index__sidebar-label {
  margin: 0;
  color: #c8000b;
  font-family: var(--jr-font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4285714286;
}

.blog-index__category-list {
  display: grid;
  gap: 0.25rem;
}

.blog-index__category-link {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  color: #717680;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-index__category-link:hover,
.blog-index__category-link:focus-visible,
.blog-index__category-link.is-active {
  background: #fafafa;
  color: #414651;
}

.blog-index__content {
  min-width: 0;
}

.blog-featured-post {
  margin-bottom: 3rem;
}

.blog-featured-post__link {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 17.5rem);
  gap: 2rem;
  align-items: start;
  color: inherit;
  text-decoration: none;
}

.blog-featured-post__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 1.8;
  background: #f1ede4;
}

.blog-featured-post__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-post__image--placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.02)),
    linear-gradient(180deg, rgba(214, 199, 162, 0.45), rgba(214, 199, 162, 0));
}

.blog-featured-post__body {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.blog-featured-post__copy {
  display: grid;
  gap: 0.75rem;
}

.blog-featured-post__title {
  margin: 0;
  color: #181d27;
  font-size: clamp(2rem, 2vw + 1.15rem, 2.25rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.blog-featured-post__excerpt {
  margin: 0;
  color: #535862;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.45;
}

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

.blog-post-author {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-post-author__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(207, 203, 220, 0.55);
}

.blog-post-author__avatar .avatar,
.blog-post-author__avatar-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.blog-post-author__meta {
  display: grid;
  gap: 0.1rem;
}

.blog-post-author__name,
.blog-post-author__date {
  margin: 0;
  font-family: var(--jr-font-primary);
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.blog-post-author__name {
  color: #181d27;
  font-weight: 600;
}

.blog-post-author__date {
  color: #535862;
  font-weight: 400;
}

.blog-index .content-card--post .content-card__inner {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #181d27;
  box-shadow: none;
  transition: opacity 0.2s ease;
}

.blog-index .content-card--post .content-card__inner:hover,
.blog-index .content-card--post .content-card__inner:focus-visible {
  opacity: 0.88;
  transform: none;
}

.blog-index .content-card--post .content-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 2.14;
  border-bottom: 0;
  background: #f1ede4;
}

.blog-index .content-card--post .content-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-index .content-card--post .content-card__placeholder {
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.02)),
    linear-gradient(180deg, rgba(214, 199, 162, 0.45), rgba(214, 199, 162, 0));
}

.blog-index .content-card--post .content-card__body {
  display: grid;
  gap: 1.5rem;
  padding: 1.25rem 0 0;
}

.blog-index .content-card--post .content-card__copy {
  display: grid;
  gap: 0.5rem;
}

.blog-index .content-card--post .content-card__title {
  color: #181d27;
  font-size: clamp(1.9rem, 2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.blog-index .content-card--post .content-card__excerpt {
  margin: 0;
  color: #535862;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.45;
}

.blog-index__pagination {
  margin-top: clamp(2.75rem, 4vw, 3.5rem);
}

.blog-index .navigation.pagination {
  padding-top: 1.25rem;
  border-top: 1px solid #e9eaeb;
}

.blog-index .navigation.pagination .nav-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.blog-index .jr-pagination__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

.blog-index .navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #535862;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.blog-index .navigation.pagination a.page-numbers:hover,
.blog-index .navigation.pagination a.page-numbers:focus-visible {
  background: #fafafa;
  color: #252b37;
  transform: translateY(-1px);
}

.blog-index .navigation.pagination .page-numbers.current {
  background: #fafafa;
  color: #252b37;
}

.blog-index .navigation.pagination .page-numbers.is-disabled {
  color: #868c98;
  cursor: default;
}

.blog-index .navigation.pagination .page-numbers.prev.is-disabled,
.blog-index .navigation.pagination .page-numbers.next.is-disabled {
  border-color: #e9eaeb;
  box-shadow: none;
}

.blog-index .navigation.pagination .page-numbers.dots {
  pointer-events: none;
}

.blog-index .navigation.pagination .page-numbers.prev,
.blog-index .navigation.pagination .page-numbers.next {
  gap: 0.25rem;
  width: auto;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d5d7da;
  background: #fff;
  color: #414651;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05);
}

.blog-index .navigation.pagination a.page-numbers.prev:hover,
.blog-index .navigation.pagination a.page-numbers.prev:focus-visible,
.blog-index .navigation.pagination a.page-numbers.next:hover,
.blog-index .navigation.pagination a.page-numbers.next:focus-visible {
  background: #fff;
  border-color: #c8ccd1;
  color: #252b37;
}

.blog-index .navigation.pagination .page-numbers.prev {
  justify-self: start;
}

.blog-index .navigation.pagination .page-numbers.next {
  justify-self: end;
}

.blog-index .navigation.pagination .page-numbers.prev::before,
.blog-index .navigation.pagination .page-numbers.next::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 1rem 1rem;
  mask-size: 1rem 1rem;
}

.blog-index .navigation.pagination .page-numbers.prev::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M15.8327 10H4.16602M4.16602 10L9.16602 5M4.16602 10L9.16602 15' stroke='%23000000' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M15.8327 10H4.16602M4.16602 10L9.16602 5M4.16602 10L9.16602 15' stroke='%23000000' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.blog-index .navigation.pagination .page-numbers.next::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4.16602 10H15.8327M15.8327 10L10.8327 5M15.8327 10L10.8327 15' stroke='%23000000' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4.16602 10H15.8327M15.8327 10L10.8327 5M15.8327 10L10.8327 15' stroke='%23000000' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.service-features {
  background: #fff;
}

.location-services {
  padding: 0;
}

.location-communities {
  background: #fff;
}

.location-communities .shell {
  display: grid;
  gap: clamp(3rem, 5vw, 4.0625rem);
  padding-top: clamp(4rem, 7vw, 4.0625rem);
  padding-bottom: clamp(4rem, 7vw, 4.0625rem);
}

.location-communities__header {
  display: flex;
  justify-content: flex-start;
}

.location-communities__headline {
  max-width: 76rem;
  margin: 0;
  color: #181d27;
  font-family: var(--jr-font-primary);
  font-size: clamp(2.35rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: left;
}

.location-communities__headline .jr-iowan-italic {
  font-family: var(--jr-font-secondary);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.location-communities__headline .jr-iowan-italic,
.service-features__headline .jr-iowan-italic,
.project-features__headline .jr-iowan-italic {
  display: inline-block;
  padding-bottom: 0.08em;
}

.location-communities__content {
  display: grid;
  grid-template-columns: minmax(0, 33.3125rem) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.location-communities__content--no-image {
  grid-template-columns: minmax(0, 1fr);
}

.location-communities__media {
  overflow: hidden;
  border-radius: 0.25rem;
}

.location-communities__image {
  display: block;
  width: 100%;
  aspect-ratio: 533 / 356;
  object-fit: cover;
}

.location-communities__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2rem;
  align-items: start;
  padding-top: 0.125rem;
}

.location-communities__column {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-communities__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 1.5rem;
}

.location-communities__item-icon {
  display: inline-flex;
  flex: 0 0 1rem;
  width: 1rem;
  height: 1.25rem;
  color: #c8000b;
}

.location-communities__item-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.location-communities__item-label {
  color: #181d27;
  font-family: var(--jr-font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.section.location-services .shell {
  padding-top: clamp(3.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 4.5rem);
}

.service-features .shell {
  display: grid;
  gap: clamp(3rem, 5vw, 4rem);
  padding-top: clamp(4.5rem, 8vw, 6rem);
  padding-bottom: clamp(4.5rem, 8vw, 6rem);
}

.service-features__header {
  max-width: 80rem;
}

.service-features__headline {
  margin: 0;
  padding-bottom: 0.08em;
  color: #181d27;
  font-family: var(--jr-font-primary);
  font-size: clamp(3rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.service-features__headline .jr-iowan-italic {
  font-family: var(--jr-font-secondary);
  font-style: italic;
  font-weight: 700;
  padding-bottom: 0;
  letter-spacing: -0.03em;
}

.service-features__content {
  display: grid;
  grid-template-columns: minmax(16rem, 22.5rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.service-features__content--intro-only {
  grid-template-columns: minmax(0, 1fr);
}

.service-features__intro {
  display: grid;
  gap: 1.25rem;
  max-width: 22.5rem;
}

.service-features__intro-heading,
.service-features__item-title {
  margin: 0;
  color: #181d27;
  font-family: var(--jr-font-primary);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.service-features__intro-copy,
.service-features__item-copy {
  margin: 0;
  color: #535862;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.service-features__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 4rem;
}

.service-features__item {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.service-features__item-title {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.project-features {
  background: #fff;
}

.project-features .shell {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(3.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 4.5rem);
}

.project-features__header {
  display: grid;
  gap: 1rem;
  max-width: 80rem;
}

.project-features__headline {
  margin: 0;
  color: #181d27;
  font-family: var(--jr-font-primary);
  font-size: clamp(3rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.project-features__headline .jr-iowan-italic {
  font-family: var(--jr-font-secondary);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.project-features__summary {
  max-width: 44rem;
  margin: 0;
  color: #535862;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.project-features__content {
  display: grid;
  grid-template-columns: minmax(16rem, 22.5rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.project-features__content--details-only,
.project-features__content--items-only {
  grid-template-columns: minmax(0, 1fr);
}

.project-features__details {
  display: grid;
  gap: 1.25rem;
  max-width: 22.5rem;
}

.project-features__details-heading {
  margin: 0;
  color: #181d27;
  font-family: var(--jr-font-primary);
  font-size: clamp(2rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.project-features__location {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
}

.project-features__location-icon {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
}

.project-features__location-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.project-features__location-text {
  color: #141414;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
}

.project-features__detail-list {
  display: grid;
  gap: 1rem;
}

.project-features__detail {
  display: grid;
  gap: 0.125rem;
}

.project-features__detail-label {
  margin: 0;
  color: #535862;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.project-features__detail-value {
  margin: 0;
  color: #535862;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
}

.project-features__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 4rem;
}

.project-features__item {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  max-width: 30rem;
}

.project-features__item-title {
  margin: 0;
  color: #181d27;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.project-features__item-copy {
  margin: 0;
  color: #535862;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.service-gallery {
  background: #fff;
}

.service-gallery .shell {
  padding-top: clamp(2rem, 4vw, 2.25rem);
  padding-bottom: clamp(2rem, 4vw, 2.25rem);
}

.service-gallery__carousel {
  display: grid;
  gap: 2.25rem;
}

.service-gallery__viewport {
  position: relative;
  aspect-ratio: 1126 / 844;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  border-radius: 0.25rem;
  background: #f5f5f5;
}

.service-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.service-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.service-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-gallery__overlay-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #77787b;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.service-gallery__overlay-control:hover,
.service-gallery__overlay-control:focus-visible {
  background: #fff;
  color: #181d27;
}

.service-gallery__overlay-control:focus-visible,
.service-gallery__nav-button:focus-visible,
.service-gallery__indicator:focus-visible {
  outline: 2px solid #181d27;
  outline-offset: 3px;
}

.service-gallery__overlay-control--prev {
  left: 0.95rem;
}

.service-gallery__overlay-control--next {
  right: 0.95rem;
}

.service-gallery__overlay-control span {
  font-size: 1.8rem;
  line-height: 1;
}

.service-gallery__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.service-gallery__nav-button,
.service-gallery__indicators {
  min-height: 1.8125rem;
  border: 1px solid #77787b;
  border-radius: 0.25rem;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18);
}

.service-gallery__nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  color: #77787b;
  font-family: var(--jr-font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.service-gallery__nav-button:hover,
.service-gallery__nav-button:focus-visible {
  color: #181d27;
}

.service-gallery__nav-arrow {
  font-size: 0.9rem;
  line-height: 1;
}

.service-gallery__indicators {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
}

.service-gallery__indicator {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #a7a9ac;
  cursor: pointer;
}

.service-gallery__indicator.is-active {
  background: #c8000b;
}

.service-inline-cta {
  background: #fff;
}

.service-inline-cta .shell {
  padding-top: clamp(2.5rem, 5vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3rem);
}

.service-inline-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid #e4e4e4;
  border-radius: 0.25rem;
  background: #c8000b;
  box-shadow: 0 1px 1px rgba(10, 13, 18, 0.05);
}

.service-inline-cta__content {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  min-width: 0;
}

.service-inline-cta__icon {
  flex: 0 0 3.875rem;
  width: 3.875rem;
  height: 3.875rem;
}

.service-inline-cta__icon img,
.service-inline-cta__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-inline-cta__copy {
  min-width: 0;
  max-width: 43rem;
}

.service-inline-cta__copy h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: var(--jr-font-primary);
  font-size: clamp(2rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.service-inline-cta__copy p {
  margin: 0;
  max-width: 39rem;
  color: #fff;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.45;
}

.service-inline-cta__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
}

.service-inline-cta__button.button--inverse {
  min-height: 2.5rem;
  padding: 0.625rem 1rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: #141414;
  color: #fff;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18);
}

.service-inline-cta__button.button--inverse:hover,
.service-inline-cta__button.button--inverse:focus-visible {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0f0f0f;
  color: #fff;
}

.project-inline-cta .shell {
  padding-top: clamp(3.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 4.5rem);
}

.location-inline-cta .shell {
  padding-top: clamp(3.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 4.5rem);
}

.project-inline-cta .service-inline-cta__copy {
  max-width: 38.75rem;
}

.location-inline-cta .service-inline-cta__copy {
  max-width: 38.75rem;
}

.project-testimonials .jr-testimonial__surface {
  padding-top: clamp(3.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 6rem);
}

.project-testimonials .jr-testimonial__intro {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.project-testimonials .jr-testimonial__stack {
  gap: 2rem;
}

.project-testimonials .jr-testimonial__card {
  overflow: hidden;
}

.project-testimonials .jr-testimonial__card-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  min-height: clamp(16rem, 22vw, 19.5rem);
  padding: clamp(2rem, 5vw, 4rem);
}

.project-testimonials .jr-testimonial__quote p {
  max-width: 60rem;
  font-size: clamp(1.6rem, 2vw, 1.9375rem);
  line-height: 1.18;
}

.project-testimonials .jr-testimonial__attribution {
  margin-top: 0;
}

.service-faq {
  background: #fff;
}

.service-faq .shell {
  padding-top: clamp(4.5rem, 8vw, 6rem);
  padding-bottom: clamp(4.5rem, 8vw, 6rem);
}

.single-project .service-faq .shell {
  padding-top: clamp(3.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 4.5rem);
}

.service-faq__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.service-faq__intro {
  display: grid;
  gap: 1.25rem;
  max-width: 30rem;
}

.service-faq__headline {
  margin: 0;
  color: #181d27;
  font-family: var(--jr-font-primary);
  font-size: clamp(2.2rem, 2vw + 1.35rem, 2.25rem);
  font-weight: 600;
  line-height: 1.2222222222;
  letter-spacing: -0.02em;
}

.service-faq__summary {
  margin: 0;
  color: #535862;
  font-family: var(--jr-font-primary);
  font-size: 1.125rem;
  line-height: 1.5555555556;
}

.service-faq__items {
  display: grid;
  gap: 2rem;
}

.service-faq__item {
  padding-bottom: 0;
}

.service-faq__item > summary {
  list-style: none;
}

.service-faq__item > summary::-webkit-details-marker {
  display: none;
}

.service-faq__question {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  justify-content: space-between;
  cursor: pointer;
}

.service-faq__question-text {
  flex: 1 1 auto;
  color: #181d27;
  font-family: var(--jr-font-primary);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
}

.service-faq__icon {
  position: relative;
  flex: 0 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
  border: 1px solid #a4a7ae;
  border-radius: 999px;
}

.service-faq__icon::before,
.service-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #a4a7ae;
  transform: translate(-50%, -50%);
}

.service-faq__icon::before {
  width: 0.625rem;
  height: 1px;
}

.service-faq__icon::after {
  width: 1px;
  height: 0.625rem;
}

.service-faq__item[open] .service-faq__icon::after {
  display: none;
}

.service-faq__answer {
  max-width: 42rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  color: #535862;
  font-family: var(--jr-font-primary);
  font-size: 1rem;
  line-height: 1.5;
}

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

.service-faq__answer > :last-child {
  margin-bottom: 0;
}

.service-related,
.project-related,
.location-related {
  background: #fff;
}

.service-related .jr-action-cards__surface,
.project-related .jr-action-cards__surface,
.location-related .jr-action-cards__surface {
  padding-top: clamp(4.5rem, 8vw, 6rem);
  padding-bottom: 6rem;
  background: #fff;
}

.service-related .jr-action-cards__intro,
.project-related .jr-action-cards__intro,
.location-related .jr-action-cards__intro {
  max-width: 48rem;
}

.service-related .jr-action-cards__headline,
.project-related .jr-action-cards__headline,
.location-related .jr-action-cards__headline {
  max-width: 42rem;
}

.service-related .jr-action-cards__summary,
.project-related .jr-action-cards__summary,
.location-related .jr-action-cards__summary {
  max-width: 47rem;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.875;
}

.service-related .jr-action-cards__card-media,
.project-related .jr-action-cards__card-media,
.location-related .jr-action-cards__card-media {
  min-height: 14.875rem;
}

.service-related .jr-action-cards__card-body,
.project-related .jr-action-cards__card-body,
.location-related .jr-action-cards__card-body {
  gap: 0.625rem;
}

.service-related .jr-action-cards__card-title,
.project-related .jr-action-cards__card-title,
.location-related .jr-action-cards__card-title {
  font-size: clamp(2rem, 3vw, 2.25rem);
}

.service-related .jr-action-cards__card-summary,
.project-related .jr-action-cards__card-summary,
.location-related .jr-action-cards__card-summary {
  line-height: 1.1875;
}

@media (max-width: 1100px) {
  .project-features__content {
    grid-template-columns: 1fr;
  }

  .project-features__details {
    max-width: 36rem;
  }

  .project-features__items {
    gap: 2rem 2.5rem;
  }

  .project-inline-cta .service-inline-cta__card {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-inline-cta .service-inline-cta__actions {
    justify-content: flex-start;
  }

  .project-testimonials .jr-testimonial__card-inner {
    min-height: 0;
    padding: 2.5rem;
  }

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

  .service-features__intro {
    max-width: 36rem;
  }

  .service-gallery__carousel {
    gap: 1.75rem;
  }

  .service-inline-cta__card {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-inline-cta__actions {
    justify-content: flex-start;
  }

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

  .service-faq__intro {
    max-width: 42rem;
  }
}

@media (max-width: 1100px) {
  .location-communities__content {
    grid-template-columns: 1fr;
  }

  .location-communities__media {
    max-width: 40rem;
  }

  .location-communities__lists {
    gap: 1.5rem 2rem;
  }

  .single-hero--location-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .single-hero--location-detail .single-hero__panel {
    padding: 2.5rem max(var(--jr-shell-gutter), calc((100vw - var(--jr-content-max)) / 2));
  }

  .single-hero--location-detail .single-hero__panel-inner {
    width: min(100%, 32rem);
  }

  .single-hero--location-detail .single-hero__media {
    min-height: 24rem;
  }

  .single-hero--project-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .single-hero--project-detail .single-hero__panel {
    padding: 2.5rem max(var(--jr-shell-gutter), calc((100vw - var(--jr-content-max)) / 2));
  }

  .single-hero--project-detail .single-hero__panel-inner {
    width: min(100%, 32rem);
  }

  .single-hero--project-detail .single-hero__media {
    min-height: 24rem;
  }

  .single-hero--service-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .single-hero--service-detail .single-hero__panel {
    padding: 2.5rem max(var(--jr-shell-gutter), calc((100vw - var(--jr-content-max)) / 2));
  }

  .single-hero--service-detail .single-hero__media {
    min-height: 24rem;
  }

  .single-hero--blog-detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .single-hero--blog-detail .single-hero__panel {
    padding: 2.5rem max(var(--jr-shell-gutter), calc((100vw - var(--jr-content-max)) / 2));
  }

  .single-hero--blog-detail .single-hero__panel-inner {
    width: min(100%, 32rem);
  }

  .single-hero--blog-detail .single-hero__media {
    min-height: 24rem;
  }

  .blog-index__layout {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .blog-index__sidebar {
    position: static;
  }

  .blog-index__category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .blog-index__category-link {
    width: auto;
  }

  .blog-featured-post__link {
    grid-template-columns: 1fr;
  }

  .blog-index__grid {
    gap: 2rem 1.5rem;
  }

  .service-features__items {
    gap: 2rem 2.5rem;
  }
}

@media (max-width: 780px) {
  .location-communities .shell {
    gap: 2rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .location-communities__headline {
    font-size: clamp(2.1rem, 8vw, 2.75rem);
  }

  .location-communities__lists {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .location-communities__item-label {
    font-size: 1rem;
  }

  .single-hero--location-detail .single-hero__panel {
    padding: 2rem 1.5rem;
  }

  .single-hero--location-detail .single-hero__panel-inner {
    gap: 0.875rem;
    width: min(100%, 100%);
  }

  .single-hero--location-detail .single-hero__location-heading {
    gap: 0.875rem;
  }

  .single-hero--location-detail .single-hero__location-icon {
    flex-basis: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.2rem;
  }

  .single-hero--location-detail h1 {
    font-size: clamp(2.15rem, 8vw, 2.75rem);
    line-height: 1.02;
  }

  .single-hero--location-detail .single-hero__location-meta,
  .single-hero--location-detail .single-hero__lead,
  .single-hero--location-detail .single-hero__action-link {
    font-size: 1rem;
  }

  .single-hero--location-detail .single-hero__media {
    min-height: 18rem;
  }

  .project-features .shell {
    gap: 2rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .project-features__headline {
    font-size: clamp(2.35rem, 9vw, 3.2rem);
    line-height: 1.04;
  }

  .project-features__details-heading {
    font-size: 2rem;
    line-height: 1.18;
  }

  .project-features__summary,
  .project-features__detail-label,
  .project-features__detail-value,
  .project-features__item-copy {
    font-size: 1rem;
  }

  .project-features__items {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .project-features__item-title {
    font-size: 1.1875rem;
  }

  .project-inline-cta .shell {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .project-testimonials .jr-testimonial__surface {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .project-testimonials .jr-testimonial__card-inner {
    padding: 1.75rem;
  }

  .project-testimonials .jr-testimonial__quote p {
    font-size: 1.35rem;
    line-height: 1.3;
  }

  .single-hero--project-detail .single-hero__panel {
    padding: 2rem 1.5rem;
  }

  .single-hero--project-detail .single-hero__panel-inner {
    gap: 2rem;
    width: min(100%, 100%);
  }

  .single-hero--project-detail h1 {
    font-size: clamp(2.15rem, 8vw, 2.75rem);
    line-height: 1.02;
  }

  .single-hero--project-detail .single-hero__lead,
  .single-hero--project-detail .button {
    font-size: 1rem;
  }

  .single-hero--project-detail .single-hero__media {
    min-height: 18rem;
  }

  .single-hero--service-detail .single-hero__panel {
    padding: 2rem 1.5rem;
  }

  .single-hero--service-detail .single-hero__panel-inner {
    gap: 2rem;
  }

  .single-hero--service-detail h1 {
    font-size: 36px;
    line-height: 37px;
    letter-spacing: -0.72px;
  }

  .single-hero--service-detail .single-hero__lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .single-hero--service-detail .button {
    font-size: 1rem;
  }

  .single-hero--service-detail .single-hero__media {
    min-height: 18rem;
  }

  .single-hero--blog-detail .single-hero__panel {
    padding: 2rem 1.5rem;
  }

  .single-hero--blog-detail .single-hero__panel-inner {
    gap: 2rem;
    width: min(100%, 100%);
  }

  .single-hero--blog-detail h1 {
    font-size: clamp(2.15rem, 8vw, 2.75rem);
    line-height: 1.02;
  }

  .single-hero--blog-detail .single-hero__lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .single-hero--blog-detail .single-hero__media {
    min-height: 18rem;
  }

  .blog-article-section {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .blog-article__content p,
  .blog-article__content li {
    font-size: 1rem;
  }

  .blog-article__content h2,
  .blog-article__content h3,
  .blog-article__content h4 {
    font-size: 1.125rem;
  }

  .blog-article__content blockquote p {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .blog-share {
    align-items: flex-start;
  }

  .blog-share__actions {
    width: 100%;
  }

  .blog-share__button--copy {
    flex: 1 1 auto;
  }

  .blog-index__layout {
    gap: 2rem;
  }

  .blog-index__category-list {
    display: grid;
    gap: 0.25rem;
  }

  .blog-index__category-link {
    width: 100%;
  }

  .blog-featured-post {
    margin-bottom: 2.5rem;
  }

  .blog-featured-post__link {
    gap: 1.5rem;
  }

  .blog-featured-post__title,
  .blog-index .content-card--post .content-card__title {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
  }

  .blog-featured-post__excerpt,
  .blog-index .content-card--post .content-card__excerpt {
    font-size: 1rem;
    line-height: 1.5;
  }

  .blog-index__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .blog-index__header {
    padding: 4.5rem 0 4rem;
  }

  .blog-index__hero {
    width: 100%;
    gap: 1rem;
  }

  .blog-index__hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .blog-index__hero-copy {
    font-size: 1rem;
  }

  .blog-index .navigation.pagination .nav-links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .blog-index .jr-pagination__numbers {
    order: 1;
    flex-wrap: wrap;
  }

  .blog-related .jr-action-cards__surface {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .blog-related .jr-action-cards__card-title {
    font-size: 1.375rem;
  }

  .service-features .shell {
    gap: 2rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section.location-services .shell {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .service-features__headline {
    font-size: clamp(2.35rem, 9vw, 3.2rem);
    line-height: 1.06;
  }

  .service-features__intro-heading {
    font-size: 2rem;
    line-height: 1.18;
  }

  .service-features__items {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .service-gallery .shell {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .service-gallery__carousel {
    gap: 1.25rem;
  }

  .service-gallery__overlay-control {
    width: 2rem;
    height: 2rem;
  }

  .service-gallery__overlay-control--prev {
    left: 0.65rem;
  }

  .service-gallery__overlay-control--next {
    right: 0.65rem;
  }

  .service-gallery__nav {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .service-gallery__nav-button {
    padding-inline: 0.8rem;
  }

  .service-gallery__indicators {
    order: -1;
    width: 100%;
  }

  .service-inline-cta .shell {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .service-inline-cta__card {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .service-inline-cta__content {
    gap: 1rem;
  }

  .service-inline-cta__icon {
    flex-basis: 3rem;
    width: 3rem;
    height: 3rem;
  }

  .service-inline-cta__copy h2 {
    font-size: clamp(1.9rem, 7vw, 2.35rem);
  }

  .service-inline-cta__copy p,
  .service-inline-cta__button.button--inverse {
    font-size: 1rem;
  }

  .service-faq .shell {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .single-project .service-faq .shell {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .service-faq__headline {
    margin-bottom: 0;
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .service-faq__summary {
    font-size: 1rem;
  }

  .service-faq__items {
    gap: 1.25rem;
  }

  .service-faq__question {
    gap: 1rem;
  }

  .service-faq__icon {
    margin-top: 0.2rem;
  }

  .service-faq__answer {
    padding-right: 0;
    font-size: 0.98rem;
  }

  .service-related .jr-action-cards__surface,
  .project-related .jr-action-cards__surface,
  .location-related .jr-action-cards__surface {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 395px) {
  .single-hero--service-detail .button {
    width: auto;
  }
}

/* Archive grid refinement */
.archive-listing--location .section--surface {
  padding: 0;
  background: #fff;
}

.archive-location-index .jr-locations-grid__surface {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.archive-location-index .jr-locations-grid__intro {
  margin-bottom: 4rem;
}

.archive-location-index .archive-location-index__media-wrap {
  margin-bottom: 4rem;
}

.archive-location-index .jr-locations-grid__secondary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 1100px) {
  .archive-location-index .jr-locations-grid__secondary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .archive-location-index .jr-locations-grid__surface {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .archive-location-index .jr-locations-grid__intro,
  .archive-location-index .archive-location-index__media-wrap {
    margin-bottom: 3.5rem;
  }

  .archive-location-index .jr-locations-grid__secondary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .archive-location-index .jr-locations-grid__surface {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .archive-location-index .jr-locations-grid__intro {
    margin-bottom: 2.5rem;
  }

  .archive-location-index .archive-location-index__media-wrap {
    margin-bottom: 2.75rem;
  }

  .archive-location-index .jr-locations-grid__secondary-grid {
    grid-template-columns: 1fr;
    gap: 1rem 1.5rem;
  }
}

.archive-listing--feature-grid .section--hero {
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
}

.archive-listing--feature-grid .section--surface {
  padding-top: 0;
  background: #fff;
}

.archive-listing--feature-grid .archive-hero {
  max-width: 76rem;
}

.archive-listing--feature-grid .archive-hero h1 {
  max-width: 16ch;
  margin-bottom: 0;
  color: #181d27;
  font-size: clamp(3rem, 5.5vw, 4.875rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.archive-listing--feature-grid .archive-hero h1 .jr-iowan-italic {
  display: block;
  padding-bottom: 0.08em;
  font-family: var(--jr-font-secondary);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.archive-listing--feature-grid .post-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 2rem;
}

.project-archive__progress {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  margin-top: clamp(2rem, 3vw, 3rem);
}

.project-archive__status {
  margin: 0;
  color: #535862;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.project-archive__sentinel {
  width: 100%;
  height: 1px;
}

.archive-listing--feature-grid .content-card {
  min-height: 100%;
}

.archive-listing--feature-grid .content-card__inner {
  border: 1px solid #e4e1d8;
  border-radius: 0.25rem;
  background: #fbfaf8;
  color: #181d27;
  box-shadow: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.archive-listing--feature-grid .content-card__inner:hover,
.archive-listing--feature-grid .content-card__inner:focus-visible {
  border-color: rgba(24, 29, 39, 0.22);
  transform: translateY(-2px);
}

.archive-listing--feature-grid .content-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 12 / 5;
  border-bottom: 1px solid #ece9e2;
}

.archive-listing--feature-grid .content-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-listing--feature-grid .content-card__placeholder {
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.08), rgba(20, 20, 20, 0.02)),
    linear-gradient(180deg, rgba(214, 199, 162, 0.45), rgba(214, 199, 162, 0));
}

.archive-listing--feature-grid .content-card__body {
  grid-template-rows: auto minmax(3.05rem, auto) minmax(4.6rem, auto) auto;
  align-content: start;
  gap: 0.75rem;
  padding: 1.35rem 1.25rem 1.25rem;
}

.archive-listing--feature-grid .content-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: #181d27;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.archive-listing--feature-grid .content-card__excerpt {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #414651;
  font-size: 1rem;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.archive-listing--feature-grid .content-card__link {
  align-self: start;
  color: #181d27;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.archive-listing--feature-grid .content-card__link::after {
  color: currentColor;
  font-size: 1.15rem;
}

.archive-listing--feature-grid .jr-pagination {
  margin-top: clamp(2.75rem, 4vw, 3.5rem);
}

.archive-listing--feature-grid .navigation.pagination {
  padding-top: 1.25rem;
  border-top: 1px solid #e9eaeb;
}

.archive-listing--feature-grid .navigation.pagination .nav-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.archive-listing--feature-grid .jr-pagination__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

.archive-listing--feature-grid .navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #535862;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.archive-listing--feature-grid .navigation.pagination a.page-numbers:hover,
.archive-listing--feature-grid .navigation.pagination a.page-numbers:focus-visible {
  background: #fafafa;
  color: #252b37;
  transform: translateY(-1px);
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.current {
  background: #fafafa;
  color: #252b37;
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.is-disabled {
  color: #868c98;
  cursor: default;
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.prev.is-disabled,
.archive-listing--feature-grid .navigation.pagination .page-numbers.next.is-disabled {
  border-color: #e9eaeb;
  box-shadow: none;
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.dots {
  pointer-events: none;
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.prev,
.archive-listing--feature-grid .navigation.pagination .page-numbers.next {
  gap: 0.25rem;
  width: auto;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d5d7da;
  background: #ffffff;
  color: #414651;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05);
}

.archive-listing--feature-grid .navigation.pagination a.page-numbers.prev:hover,
.archive-listing--feature-grid .navigation.pagination a.page-numbers.prev:focus-visible,
.archive-listing--feature-grid .navigation.pagination a.page-numbers.next:hover,
.archive-listing--feature-grid .navigation.pagination a.page-numbers.next:focus-visible {
  background: #ffffff;
  border-color: #c8ccd1;
  color: #252b37;
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.prev {
  justify-self: start;
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.next {
  justify-self: end;
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.prev::before,
.archive-listing--feature-grid .navigation.pagination .page-numbers.next::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 1rem 1rem;
  mask-size: 1rem 1rem;
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.prev::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M15.8327 10H4.16602M4.16602 10L9.16602 5M4.16602 10L9.16602 15' stroke='%23000000' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M15.8327 10H4.16602M4.16602 10L9.16602 5M4.16602 10L9.16602 15' stroke='%23000000' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.archive-listing--feature-grid .navigation.pagination .page-numbers.next::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4.16602 10H15.8327M15.8327 10L10.8327 5M15.8327 10L10.8327 15' stroke='%23000000' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4.16602 10H15.8327M15.8327 10L10.8327 5M15.8327 10L10.8327 15' stroke='%23000000' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  .archive-listing--feature-grid .post-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .archive-listing--feature-grid .archive-hero h1 {
    max-width: 12ch;
  }

  .archive-listing--feature-grid .navigation.pagination .nav-links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .archive-listing--feature-grid .jr-pagination__numbers {
    order: 1;
    flex-wrap: wrap;
  }

  .archive-listing--feature-grid .navigation.pagination .page-numbers.prev,
  .archive-listing--feature-grid .navigation.pagination .page-numbers.next {
    order: 2;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .archive-listing--feature-grid .navigation.pagination .page-numbers.prev,
  .archive-listing--feature-grid .navigation.pagination .page-numbers.next {
    justify-content: center;
  }
}
