@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("../fonts/fira-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("../fonts/fira-sans-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("../fonts/fira-sans-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ergo-orange: #e85f1b;
  --ergo-orange-dark: #bf4309;
  --ergo-charcoal: #242833;
  --ergo-graphite: #4b515b;
  --ergo-paper: #f4f5f3;
  --ergo-soft-orange: #f8e5da;
  --ergo-white: #fff;
  --ergo-line: #d9dcde;
  --ergo-content: 760px;
  --ergo-wide: 1240px;
  --ergo-header: 92px;
  --ergo-radius: 18px;
  --ergo-shadow: 0 18px 60px rgba(36, 40, 51, 0.1);
  --ergo-transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ergo-charcoal);
  background: var(--ergo-white);
  font-family: "Fira Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--ergo-orange-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ergo-charcoal);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ergo-orange);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75em;
  color: var(--ergo-charcoal);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

p {
  margin: 0 0 1.15em;
}

.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 {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--ergo-charcoal);
  background: var(--ergo-white);
  white-space: normal;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--ergo-header);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow var(--ergo-transition), border-color var(--ergo-transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--ergo-line);
  box-shadow: 0 10px 34px rgba(36, 40, 51, 0.08);
}

.site-header__inner {
  display: flex;
  width: min(calc(100% - 48px), var(--ergo-wide));
  min-height: var(--ergo-header);
  margin: 0 auto;
  align-items: center;
  justify-content: flex-start;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--ergo-charcoal);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.site-brand__mark {
  display: block;
  flex: 0 0 auto;
}

.site-brand__mark img {
  width: clamp(154px, 15vw, 202px);
  max-height: 64px;
  object-fit: contain;
}

.site-brand__name {
  display: block;
  max-width: 22ch;
  min-height: 38px;
  padding: 8px 0 8px clamp(20px, 2.1vw, 30px);
  margin-left: clamp(20px, 2.1vw, 30px);
  border-left: 2px solid var(--ergo-orange);
  color: var(--ergo-charcoal);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 720;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.site-brand:hover .site-brand__name {
  color: var(--ergo-orange-dark);
}

.site-brand.is-text-only .site-brand__name {
  padding-left: 0;
  margin-left: 0;
  border-left: 0;
}

.site-header__controls {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-navigation ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  display: block;
  padding: 10px 0 10px 17px;
  color: var(--ergo-charcoal);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-navigation a::after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 26px;
  background: var(--ergo-orange);
  content: "";
  transform: translateY(-50%) scaleY(0.45);
  transform-origin: center;
  transition: transform var(--ergo-transition);
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after {
  transform: translateY(-50%) scaleY(1);
}

.language-switcher {
  display: flex;
  padding: 4px;
  border: 1px solid var(--ergo-line);
  border-radius: 999px;
  gap: 2px;
}

.language-switcher a {
  min-width: 38px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--ergo-graphite);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  color: var(--ergo-white);
  background: var(--ergo-orange-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--ergo-line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ergo-charcoal);
  transition: transform var(--ergo-transition);
}

.site-main {
  min-height: 60vh;
}

.content-entry,
.content-entry--archive {
  width: min(calc(100% - 48px), var(--ergo-wide));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) 0;
}

.content-entry > .entry-header {
  max-width: 920px;
  margin-bottom: clamp(42px, 6vw, 80px);
}

.entry-header h1 {
  font-size: clamp(2.5rem, 2rem + 3vw, 5.5rem);
}

.entry-content > :where(p, ul, ol, blockquote, h2, h3, h4, form) {
  max-width: var(--ergo-content);
  margin-right: auto;
  margin-left: auto;
}

.ergohr-section {
  position: relative;
  width: 100%;
  padding: clamp(56px, 7vw, 100px) 0;
  overflow: clip;
  background: var(--ergo-white);
  isolation: isolate;
}

.ergohr-section:nth-of-type(even) {
  background: var(--ergo-paper);
}

.ergohr-section.has-source-background {
  background-image: var(--ergo-source-bg);
  background-position: center;
  background-size: cover;
}

.ergohr-section.has-source-background::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(244, 245, 243, 0.91);
  content: "";
}

.ergohr-section__inner {
  position: relative;
  width: min(calc(100% - 48px), var(--ergo-wide));
  margin: 0 auto;
}

.ergohr-column {
  min-width: 0;
}

.ergohr-inner-row {
  display: grid;
  margin-top: clamp(26px, 3.5vw, 48px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px);
}

.ergohr-source-heading {
  max-width: 1000px;
  margin-right: auto;
  margin-bottom: clamp(24px, 3vw, 40px);
  margin-left: auto;
  color: var(--ergo-orange-dark);
  font-size: clamp(2rem, 1.5rem + 2vw, 4rem);
  text-align: center;
}

.home .entry-content > .ergohr-section:first-of-type {
  display: grid;
  min-height: min(720px, calc(100svh - var(--ergo-header)));
  padding: clamp(68px, 8vw, 106px) 0;
  align-items: center;
  color: var(--ergo-charcoal);
  background-position: center 48%;
}

.home .entry-content > .ergohr-section:first-of-type::before {
  background: linear-gradient(
    90deg,
    rgba(248, 249, 249, 0.98) 0%,
    rgba(248, 249, 249, 0.94) 44%,
    rgba(248, 249, 249, 0.42) 68%,
    rgba(248, 249, 249, 0.08) 100%
  );
}

.home .entry-content > .ergohr-section:first-of-type::after {
  content: none;
}

.home .entry-content > .ergohr-section:first-of-type .ergohr-column {
  width: min(610px, 53%);
  margin-right: auto;
  padding: clamp(18px, 3vw, 38px) 0 clamp(18px, 3vw, 38px) clamp(28px, 3.5vw, 46px);
  border-left: 4px solid var(--ergo-orange);
}

.home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading {
  max-width: 12ch;
  margin: 0 0 26px;
  color: var(--ergo-orange-dark);
  font-size: clamp(2.7rem, 2rem + 3vw, 4.9rem);
  line-height: 1.01;
  text-align: left;
}

.ergohr-hero-copy {
  max-width: 52ch;
  color: var(--ergo-graphite);
  font-size: clamp(1.03rem, 0.96rem + 0.28vw, 1.23rem);
  line-height: 1.58;
}

.ergohr-hero-copy p:first-child {
  color: var(--ergo-charcoal);
  font-weight: 600;
}

.ergohr-hero-copy p:last-child {
  margin-bottom: 0;
}

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

.ergohr-info-item {
  position: relative;
  padding: 22px 24px 21px 52px;
  border: 1px solid rgba(36, 40, 51, 0.12);
  border-radius: var(--ergo-radius);
  background: rgba(255, 255, 255, 0.82);
  transition: border-color var(--ergo-transition), transform var(--ergo-transition);
}

.ergohr-info-item:hover {
  border-color: rgba(232, 95, 27, 0.5);
  transform: translateY(-3px);
}

.ergohr-info-item__mark {
  position: absolute;
  top: 27px;
  left: 25px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ergo-orange);
  border-radius: 50%;
}

.ergohr-info-item h3,
.ergohr-timeline__item h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.35rem);
  letter-spacing: -0.02em;
}

.ergohr-info-item p:last-child,
.ergohr-timeline__item p:last-child {
  margin-bottom: 0;
}

.ergohr-timeline {
  position: relative;
  padding-left: 42px;
}

.ergohr-timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 9px;
  width: 2px;
  background: var(--ergo-orange);
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 900ms ease;
}

.ergohr-timeline.is-visible::before {
  transform: scaleY(1);
}

.ergohr-timeline__item {
  position: relative;
  padding: 0 0 27px;
}

.ergohr-timeline__node {
  position: absolute;
  top: 7px;
  left: -41px;
  width: 20px;
  height: 20px;
  border: 5px solid var(--ergo-paper);
  border-radius: 50%;
  background: var(--ergo-orange);
  box-shadow: 0 0 0 1px var(--ergo-orange);
}

.ergohr-timeline__item.is-featured h3 {
  color: var(--ergo-orange-dark);
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column {
  display: grid;
  grid-template-areas:
    "intro-heading intro-heading"
    "intro-list intro-list"
    "left-heading right-heading"
    "left-content right-content";
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  column-gap: clamp(42px, 5vw, 70px);
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-source-heading {
  grid-area: intro-heading;
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list {
  grid-area: intro-list;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.home .entry-content > .ergohr-section:nth-of-type(2) .ergohr-inner-row {
  display: contents;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-heading-row > .ergohr-column:first-child {
  grid-area: left-heading;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-heading-row > .ergohr-column:last-child {
  grid-area: right-heading;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:first-child {
  grid-area: left-content;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child {
  grid-area: right-content;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-heading-row > .ergohr-column {
  align-self: end;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-heading-row .ergohr-source-heading {
  max-width: 13ch;
  margin: 0 0 24px;
  font-size: clamp(2rem, 1.55rem + 1.7vw, 3.25rem);
  text-align: left;
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
}

.ergohr-cta {
  position: relative;
  padding: clamp(28px, 3.4vw, 46px);
  border-top: 4px solid var(--ergo-orange);
  background: var(--ergo-paper);
}

.ergohr-cta:nth-child(2) {
  color: var(--ergo-white);
  background: var(--ergo-charcoal);
}

.ergohr-cta:nth-child(2) h2 {
  color: var(--ergo-white);
}

.ergohr-cta:nth-child(3) {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
  column-gap: clamp(36px, 6vw, 88px);
}

.ergohr-cta:nth-child(3) h2 {
  margin-bottom: 0;
}

.ergohr-cta h2 {
  color: var(--ergo-orange-dark);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.45rem);
}

.ergohr-cta__lead {
  font-size: 1.08rem;
  font-weight: 600;
}

.ergohr-cta__body p:last-child {
  margin-bottom: 0;
}

.ergohr-source-image {
  margin: 24px 0;
}

.ergohr-source-image img {
  width: 100%;
  border-radius: var(--ergo-radius);
}

.ergohr-source-image figcaption {
  margin-top: 8px;
  color: var(--ergo-graphite);
  font-size: 0.85rem;
}

.ergohr-accordion {
  display: grid;
  gap: 12px;
}

.ergohr-accordion__item {
  border: 1px solid var(--ergo-line);
  border-radius: 12px;
  background: var(--ergo-white);
}

.ergohr-accordion__item summary {
  padding: 20px 56px 20px 24px;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 650;
  cursor: pointer;
}

.ergohr-accordion__body {
  padding: 0 24px 22px;
}

.ergohr-source-carousel,
.ergohr-post-view,
.post-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ergohr-content-box,
.ergohr-team-card,
.ergohr-post-view article,
.post-card {
  padding: 24px;
  border: 1px solid var(--ergo-line);
  border-radius: var(--ergo-radius);
  background: var(--ergo-white);
}

.ergohr-team-card img,
.ergohr-post-view img,
.post-card img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ergohr-team-card h3,
.ergohr-post-view h3,
.post-card h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.post-card > a,
.ergohr-post-view article > a {
  color: inherit;
  text-decoration: none;
}

.ergohr-progress-list {
  display: grid;
  gap: 18px;
}

.ergohr-progress > div {
  display: flex;
  margin-bottom: 7px;
  justify-content: space-between;
  gap: 20px;
}

.ergohr-progress__track {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--ergo-line);
}

.ergohr-progress__track > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--ergo-orange);
}

.ergohr-counter {
  display: grid;
  padding: 30px;
  border-left: 5px solid var(--ergo-orange);
  background: var(--ergo-paper);
  gap: 5px;
}

.ergohr-counter strong {
  color: var(--ergo-charcoal);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(2.2rem, 1.7rem + 2vw, 4rem);
  line-height: 1;
}

.ergohr-chart ul {
  display: grid;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.ergohr-chart li {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--ergo-line);
  justify-content: space-between;
  gap: 24px;
}

.ergohr-button,
.wp-element-button,
input[type="submit"] {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--ergo-white);
  background: var(--ergo-orange-dark);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--ergo-transition), transform var(--ergo-transition);
}

.ergohr-button:hover,
.wp-element-button:hover,
input[type="submit"]:hover {
  color: var(--ergo-white);
  background: var(--ergo-charcoal);
  transform: translateY(-2px);
}

.ergohr-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--ergo-radius);
}

.ergohr-source-carousel.ergohr-source-slider {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(80%, 1fr);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.ergohr-source-slide {
  position: relative;
  z-index: 0;
  display: grid;
  min-height: 400px;
  padding: 40px;
  align-content: end;
  overflow: hidden;
  color: var(--ergo-white);
  background-image: var(--ergo-slide-bg);
  background-position: center;
  background-size: cover;
  isolation: isolate;
  scroll-snap-align: start;
}

.ergohr-source-slide::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(36, 40, 51, 0.88));
  content: "";
}

.ergohr-source-slide h2,
.ergohr-source-slide p {
  max-width: 760px;
  color: inherit;
}

.ergohr-source-slide h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 4.5rem);
}

.ergohr-source-slide p {
  margin-bottom: 4px;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.8rem);
}

.entry-featured-image {
  max-width: 1040px;
  margin: 0 auto clamp(36px, 6vw, 76px);
}

.entry-featured-image img {
  width: 100%;
  border-radius: var(--ergo-radius);
}

.wpcf7 {
  max-width: var(--ergo-content);
  margin: 48px auto 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--ergo-line);
  background: var(--ergo-paper);
}

.wpcf7 label {
  display: block;
  margin-bottom: 18px;
  font-weight: 600;
}

.wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #b9bdc1;
  border-radius: 6px;
  color: var(--ergo-charcoal);
  background: var(--ergo-white);
  font: inherit;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--ergo-charcoal);
}

.site-footer__inner {
  display: grid;
  width: min(calc(100% - 48px), var(--ergo-wide));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 64px) 0 0;
  grid-template-areas:
    "brand contact"
    "brand social"
    "copyright copyright";
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  column-gap: clamp(48px, 8vw, 116px);
  row-gap: 14px;
}

.site-footer__widgets {
  display: contents;
}

.site-footer__widgets > .footer-widget:first-child {
  grid-area: brand;
}

.site-footer__widgets > .footer-widget:last-child {
  grid-area: contact;
  width: min(100%, 420px);
  justify-self: end;
}

.footer-widget__title {
  margin-bottom: 12px;
  color: var(--ergo-white);
  font-size: 1.25rem;
}

.site-footer__widgets > .footer-widget:last-child .textwidget {
  line-height: 1.7;
}

.footer-widget__break {
  display: block;
  height: 10px;
}

.footer-widget img {
  max-width: 176px !important;
  margin-bottom: 0 !important;
}

.site-footer a {
  color: var(--ergo-white);
}

.site-footer__links {
  grid-area: social;
  display: flex;
  width: min(100%, 420px);
  margin: 0;
  align-items: start;
  gap: 24px;
  justify-self: end;
}

.site-footer__links a {
  display: inline-flex;
  border-bottom: 0;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__social-icon {
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(232, 95, 27, 0.66);
  color: var(--ergo-white);
  background: rgba(232, 95, 27, 0.08);
  place-items: center;
  transition: color var(--ergo-transition), background-color var(--ergo-transition);
}

.site-footer__social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-footer__links a:hover .site-footer__social-icon,
.site-footer__links a:focus-visible .site-footer__social-icon {
  color: var(--ergo-charcoal);
  background: var(--ergo-signal);
}

.site-footer__copyright {
  grid-area: copyright;
  margin: 22px 0 0;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.76rem;
  line-height: 1.6;
}

.site-footer__copyright p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  :root {
    --ergo-header: 80px;
  }

  .site-header__inner {
    display: flex;
    width: min(calc(100% - 32px), var(--ergo-wide));
    justify-content: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .site-header__controls {
    position: fixed;
    z-index: 999;
    top: var(--ergo-header);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 38px 24px;
    align-content: start;
    justify-items: start;
    background: var(--ergo-white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity var(--ergo-transition), transform var(--ergo-transition);
  }

  .menu-open .site-header__controls {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-navigation ul {
    display: grid;
    align-items: start;
  }

  .primary-navigation a {
    font-size: 1.15rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .home .entry-content > .ergohr-section:first-of-type .ergohr-column {
    width: min(620px, 66%);
  }

  .ergohr-info-list,
  .ergohr-source-carousel,
  .ergohr-post-view,
  .post-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column {
    grid-template-areas:
      "intro-heading"
      "intro-list"
      "left-heading"
      "left-content"
      "right-heading"
      "right-content";
    grid-template-columns: minmax(0, 1fr);
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:first-child {
    margin-bottom: clamp(38px, 8vw, 58px);
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) .is-heading-row .ergohr-source-heading {
    max-width: 18ch;
  }
}

@media (max-width: 700px) {
  .site-header__inner,
  .ergohr-section__inner,
  .content-entry,
  .content-entry--archive,
  .site-footer__inner {
    width: min(calc(100% - 32px), var(--ergo-wide));
  }

  .site-brand__mark img {
    width: 148px;
  }

  .site-brand__name {
    max-width: none;
    padding-left: 18px;
    margin-left: 18px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .ergohr-section {
    padding: clamp(48px, 14vw, 68px) 0;
  }

  .home .entry-content > .ergohr-section:first-of-type {
    min-height: 610px;
    padding: 62px 0;
    background-position: 64% center;
  }

  .home .entry-content > .ergohr-section:first-of-type::before {
    background: rgba(248, 249, 249, 0.95);
  }

  .home .entry-content > .ergohr-section:first-of-type .ergohr-column {
    width: 100%;
    padding: 8px 0 8px 24px;
    border-left-width: 3px;
  }

  .home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 10vw, 3.45rem);
  }

  .ergohr-inner-row,
  .ergohr-info-list,
  .home .entry-content > .ergohr-section:last-of-type .ergohr-column,
  .ergohr-source-carousel,
  .ergohr-post-view,
  .post-archive-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-areas:
      "brand"
      "contact"
      "social"
      "copyright";
    grid-template-columns: minmax(0, 1fr);
    row-gap: 18px;
  }

  .site-footer__widgets > .footer-widget:last-child,
  .site-footer__links {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer__copyright {
    margin-top: 10px;
  }

  .ergohr-source-heading {
    text-align: left;
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list {
    margin-bottom: 42px;
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) .is-heading-row .ergohr-source-heading {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .ergohr-info-item {
    padding-right: 22px;
  }

  .ergohr-cta:nth-child(3) {
    display: block;
    grid-column: auto;
  }

  .ergohr-cta:nth-child(3) h2 {
    margin-bottom: 0.75em;
  }

  .ergohr-source-carousel.ergohr-source-slider {
    grid-auto-columns: 100%;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    width: min(calc(100% - 28px), var(--ergo-wide));
  }

  .site-brand__mark img {
    width: 120px;
  }

  .site-brand__name {
    max-width: none;
    min-height: 34px;
    padding: 4px 0 4px 13px;
    margin-left: 13px;
    border-left-width: 1px;
    font-size: 0.78rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ergohr-timeline::before {
    transform: scaleY(1);
  }
}

/*
 * Version 1.2: light diagnostic editorial system.
 *
 * The orange datum line is the single recurring graphic device. Source
 * photography is contained and contextual instead of becoming wallpaper.
 * This layer intentionally supersedes the rejected dark/photo-led treatment.
 */

:root {
  --ergo-ink: #1d2129;
  --ergo-ink-soft: #343a45;
  --ergo-signal: #e85f1b;
  --ergo-signal-soft: #f4a477;
  --ergo-mist: #eef1ef;
  --ergo-canvas: #f7f8f6;
  --ergo-hairline: #cfd4d2;
  --ergo-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ergo-scroll-progress: 0;
}

body,
.site-main--front {
  background: var(--ergo-canvas);
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--ergo-signal);
  content: "";
  transform: scaleX(var(--ergo-scroll-progress));
  transform-origin: left center;
  will-change: transform;
}

.site-brand__mark,
.site-brand__name {
  transition: color 220ms ease, transform 320ms var(--ergo-ease-out);
}

.site-brand:hover .site-brand__mark,
.site-brand:hover .site-brand__name {
  transform: translateX(2px);
}

/* Hero: a light thesis with the source image held in a distinct evidence pane. */
.home .entry-content > .ergohr-section:first-of-type {
  --ergo-hero-shift: 0px;
  display: grid;
  min-height: min(720px, calc(100svh - var(--ergo-header)));
  padding: clamp(34px, 4vw, 56px) 0 clamp(40px, 4vw, 56px);
  align-items: start;
  color: var(--ergo-ink);
  background: var(--ergo-canvas) !important;
}

.home .entry-content > .ergohr-section:first-of-type::before {
  z-index: -1;
  top: clamp(34px, 4vw, 56px);
  right: max(24px, calc((100vw - var(--ergo-wide)) / 2));
  bottom: clamp(36px, 3.7vw, 52px);
  left: auto;
  display: block;
  width: min(53vw, 720px);
  border: 1px solid rgba(29, 33, 41, 0.12);
  background:
    linear-gradient(90deg, var(--ergo-canvas) 0%, rgba(247, 248, 246, 0.91) 13%, rgba(247, 248, 246, 0.24) 43%, rgba(247, 248, 246, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(29, 33, 41, 0.08)),
    url("../../../../uploads/2025/07/burn.jpg");
  background-position: center, center, center calc(72% + var(--ergo-hero-shift));
  background-size: auto, auto, auto 128%;
  content: "";
  filter: saturate(0.72) contrast(0.96);
}

.home .entry-content > .ergohr-section:first-of-type::after {
  z-index: 0;
  top: clamp(34px, 4vw, 56px);
  right: max(24px, calc((100vw - var(--ergo-wide)) / 2));
  bottom: auto;
  left: auto;
  width: min(53vw, 720px);
  height: 3px;
  background: linear-gradient(90deg, var(--ergo-signal) 0 24%, rgba(232, 95, 27, 0.18) 24% 100%);
  box-shadow: none;
  content: "";
  opacity: 1;
  transform: none;
  animation: none;
}

.home .entry-content > .ergohr-section:first-of-type .ergohr-section__inner {
  z-index: 2;
}

.home .entry-content > .ergohr-section:first-of-type .ergohr-column {
  width: min(680px, 57%);
  padding: clamp(10px, 2vw, 26px) clamp(22px, 3vw, 46px) clamp(10px, 2vw, 26px) clamp(34px, 4vw, 54px);
  border-left: 3px solid var(--ergo-signal);
  background: linear-gradient(90deg, rgba(247, 248, 246, 0.98), rgba(247, 248, 246, 0.91) 78%, rgba(247, 248, 246, 0));
}

.home .entry-content > .ergohr-section:first-of-type .ergohr-column::before,
.home .entry-content > .ergohr-section:first-of-type .ergohr-column::after {
  content: none;
}

.home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading {
  max-width: 11.5ch;
  margin: 0 0 clamp(28px, 3.5vw, 42px);
  color: var(--ergo-ink);
  font-size: clamp(3.25rem, 2.3rem + 3.7vw, 5.75rem);
  font-weight: 710;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-align: left;
}

.home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading::after {
  display: block;
  width: clamp(80px, 9vw, 132px);
  height: 5px;
  margin-top: clamp(22px, 2.7vw, 34px);
  background: var(--ergo-signal);
  content: "";
  transform-origin: left center;
}

.home .entry-content > .ergohr-section:first-of-type .ergohr-hero-copy {
  max-width: 52ch;
  color: #505762;
  font-size: clamp(1.03rem, 0.97rem + 0.25vw, 1.2rem);
  line-height: 1.62;
}

.home .entry-content > .ergohr-section:first-of-type .ergohr-hero-copy p:first-child {
  color: var(--ergo-ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.12rem, 1.02rem + 0.34vw, 1.34rem);
  font-weight: 700;
  line-height: 1.42;
}

.has-ergo-motion .home .entry-content > .ergohr-section:first-of-type::before {
  clip-path: inset(0 100% 0 0);
}

.has-ergo-motion.ergo-motion-started .home .entry-content > .ergohr-section:first-of-type::before {
  clip-path: inset(0);
  transition: clip-path 880ms var(--ergo-ease-out);
}

.has-ergo-motion .home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading,
.has-ergo-motion .home .entry-content > .ergohr-section:first-of-type .ergohr-hero-copy p {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.has-ergo-motion.ergo-motion-started .home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading,
.has-ergo-motion.ergo-motion-started .home .entry-content > .ergohr-section:first-of-type .ergohr-hero-copy p {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease-out, transform 620ms var(--ergo-ease-out);
}

.has-ergo-motion.ergo-motion-started .home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading {
  transition-delay: 90ms;
}

.has-ergo-motion.ergo-motion-started .home .entry-content > .ergohr-section:first-of-type .ergohr-hero-copy p:first-child {
  transition-delay: 160ms;
}

.has-ergo-motion.ergo-motion-started .home .entry-content > .ergohr-section:first-of-type .ergohr-hero-copy p:nth-child(2) {
  transition-delay: 220ms;
}

.has-ergo-motion.ergo-motion-started .home .entry-content > .ergohr-section:first-of-type .ergohr-hero-copy p:nth-child(3) {
  transition-delay: 280ms;
}

/* Service section: source photo removed from the surface; structure does the work. */
.home .entry-content > .ergohr-section:nth-of-type(2) {
  padding: clamp(48px, 4.5vw, 64px) 0 clamp(44px, 4vw, 58px);
  background:
    linear-gradient(90deg, transparent 0 calc(50% - 1px), rgba(29, 33, 41, 0.045) calc(50% - 1px) 50%, transparent 50%),
    var(--ergo-mist) !important;
}

.home .entry-content > .ergohr-section:nth-of-type(2)::before {
  display: none;
  content: none;
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  column-gap: clamp(56px, 6vw, 96px);
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-source-heading {
  max-width: 14ch;
  margin: 0 0 clamp(42px, 5vw, 68px);
  color: var(--ergo-ink);
  font-size: clamp(3rem, 2rem + 3vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-align: left;
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-source-heading::before {
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 25px;
  background: var(--ergo-signal);
  content: "";
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list {
  overflow: visible;
  margin-bottom: clamp(72px, 8vw, 112px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 18px;
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list .ergohr-info-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  min-height: 154px;
  padding: clamp(28px, 3vw, 40px);
  align-items: center;
  border: 1px solid var(--ergo-hairline);
  border-top: 3px solid var(--ergo-signal);
  border-radius: 3px;
  color: var(--ergo-ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  column-gap: clamp(18px, 2vw, 28px);
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list .ergohr-info-item + .ergohr-info-item {
  background: rgba(255, 255, 255, 0.82);
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list h3 {
  grid-column: 2;
  margin: 0;
  color: var(--ergo-ink);
  font-size: clamp(1.22rem, 1.03rem + 0.58vw, 1.62rem);
  line-height: 1.24;
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list .ergohr-info-item > div {
  grid-column: 2;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-heading-row .ergohr-source-heading {
  max-width: 13ch;
  margin-bottom: clamp(28px, 3vw, 42px);
  color: var(--ergo-ink);
  font-size: clamp(2.25rem, 1.65rem + 1.9vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-heading-row > .ergohr-column:last-child .ergohr-source-heading {
  color: var(--ergo-orange-dark);
}

.ergohr-info-item__mark {
  width: 15px;
  height: 3px;
  border: 0;
  border-radius: 0;
  background: var(--ergo-signal);
  box-shadow: none;
  transition: width 260ms var(--ergo-ease-out), background 180ms ease;
}

.ergohr-info-item:hover .ergohr-info-item__mark {
  width: 22px;
  background: var(--ergo-orange-dark);
  box-shadow: none;
  transform: none;
}

.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list .ergohr-info-item__mark,
.home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list .ergohr-info-item:hover .ergohr-info-item__mark {
  position: static;
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  transform: none;
}

.ergohr-timeline {
  padding-left: 38px;
}

.ergohr-timeline::before {
  top: 8px;
  bottom: 10px;
  left: 3px;
  width: 1px;
  background: var(--ergo-hairline);
  transition: transform 900ms var(--ergo-ease-out);
}

.ergohr-timeline__item {
  padding-bottom: clamp(32px, 3.5vw, 48px);
  border-bottom: 1px solid rgba(29, 33, 41, 0.09);
  margin-bottom: clamp(28px, 3vw, 40px);
  transition: opacity 420ms ease, transform 520ms var(--ergo-ease-out);
}

.ergohr-timeline__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.ergohr-timeline__item h3 {
  font-size: clamp(1.13rem, 1.02rem + 0.34vw, 1.34rem);
  line-height: 1.28;
}

.ergohr-timeline__node {
  top: 8px;
  left: -38px;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 0;
  background: var(--ergo-signal);
  box-shadow: 0 0 0 4px var(--ergo-mist);
  transition: transform 260ms var(--ergo-ease-out), background 180ms ease;
}

.ergohr-timeline__item:hover .ergohr-timeline__node,
.ergohr-timeline__item.is-revealed .ergohr-timeline__node {
  background: var(--ergo-orange-dark);
  box-shadow: 0 0 0 4px var(--ergo-mist);
  transform: rotate(45deg);
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-item {
  isolation: isolate;
  min-height: 220px;
  padding: 32px 28px 30px 52px;
  overflow: hidden;
  border: 1px solid var(--ergo-hairline);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  transition: border-color 220ms ease, background 220ms ease, transform 300ms var(--ergo-ease-out);
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-item::before {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 3px;
  background: var(--ergo-signal);
  content: "";
  transition: transform 300ms var(--ergo-ease-out);
  transform: translateX(3px);
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-item::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 95, 27, 0.055), transparent 54%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-item:hover {
  border-color: rgba(232, 95, 27, 0.48);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  transform: translateY(-3px);
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-item:hover::after {
  opacity: 1;
}

.home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-item .ergohr-info-item__mark {
  top: 42px;
  left: 28px;
}

.has-ergo-motion [data-ergo-reveal]:not(.is-revealed) {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.has-ergo-motion [data-ergo-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--ergo-reveal-order, 0) * 38ms);
}

/* Company and contact: one controlled dark anchor, everything else light. */
.home .entry-content > .ergohr-section:last-of-type {
  padding: clamp(44px, 4vw, 58px) 0 clamp(64px, 6vw, 88px);
  color: var(--ergo-ink);
  background: var(--ergo-canvas);
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-column {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-cta {
  min-height: 100%;
  padding: clamp(38px, 4.3vw, 64px);
  border: 1px solid var(--ergo-hairline);
  border-top: 4px solid var(--ergo-signal);
  border-radius: 3px;
  color: var(--ergo-ink);
  background: var(--ergo-white);
  box-shadow: none;
  transition: border-color 220ms ease, transform 300ms var(--ergo-ease-out);
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-cta:hover {
  border-color: rgba(232, 95, 27, 0.58);
  box-shadow: none;
  transform: translateY(-3px);
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-cta:nth-child(1) {
  color: var(--ergo-ink);
  background: #f2dfd4;
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-cta:nth-child(1) h2 {
  color: var(--ergo-ink);
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-cta:nth-child(2) {
  color: rgba(255, 255, 255, 0.82);
  background: var(--ergo-ink);
  border-color: var(--ergo-ink);
  border-top-color: var(--ergo-signal);
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-cta:nth-child(2) h2 {
  color: var(--ergo-white);
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-cta:nth-child(3) {
  margin-top: 0;
  border: 1px solid var(--ergo-hairline);
  border-top: 4px solid var(--ergo-signal);
  color: var(--ergo-ink);
  background: var(--ergo-white);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-cta:nth-child(3) h2,
.home .entry-content > .ergohr-section:last-of-type .ergohr-cta:nth-child(3) a {
  color: var(--ergo-orange-dark);
}

.home .entry-content > .ergohr-section:last-of-type .ergohr-cta h2 {
  font-size: clamp(1.9rem, 1.45rem + 1.35vw, 3.15rem);
  line-height: 1;
}

.site-footer {
  background: #11151b;
}

.site-footer::before {
  height: 3px;
  background: linear-gradient(90deg, var(--ergo-signal) 0 18%, rgba(232, 95, 27, 0.16) 18% 100%);
}

.site-footer__inner {
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: 0;
}

@media (max-width: 1100px) {
  .home .entry-content > .ergohr-section:first-of-type .ergohr-column {
    width: min(650px, 62%);
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .home .entry-content > .ergohr-section:first-of-type::before,
  .home .entry-content > .ergohr-section:first-of-type::after {
    right: 24px;
    width: 54vw;
  }

  .home .entry-content > .ergohr-section:first-of-type .ergohr-column {
    width: min(620px, 68%);
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) {
    background: var(--ergo-mist) !important;
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column {
    grid-template-areas:
      "intro-heading"
      "intro-list"
      "left-heading"
      "left-content"
      "right-heading"
      "right-content";
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:first-child {
    max-width: 720px;
    margin-bottom: clamp(68px, 10vw, 100px);
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home .entry-content > .ergohr-section:first-of-type {
    min-height: 720px;
    padding: 40px 0 230px;
    align-items: start;
  }

  .home .entry-content > .ergohr-section:first-of-type::before {
    top: auto;
    right: 16px;
    bottom: 20px;
    left: 16px;
    width: auto;
    height: 210px;
    background:
      linear-gradient(180deg, var(--ergo-canvas), rgba(247, 248, 246, 0.1) 35%),
      linear-gradient(90deg, rgba(247, 248, 246, 0.12), rgba(29, 33, 41, 0.08)),
      url("../../../../uploads/2025/07/burn.jpg");
    background-position: center, center, center calc(63% + var(--ergo-hero-shift));
    background-size: auto, auto, auto 132%;
  }

  .home .entry-content > .ergohr-section:first-of-type::after {
    top: auto;
    right: 16px;
    bottom: 228px;
    left: 16px;
    width: auto;
  }

  .home .entry-content > .ergohr-section:first-of-type .ergohr-column {
    width: 100%;
    padding: 6px 0 6px 22px;
    background: none;
  }

  .home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading {
    max-width: 10.5ch;
    margin-bottom: 26px;
    font-size: clamp(2.65rem, 12.5vw, 4.15rem);
  }

  .home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading::after {
    height: 4px;
    margin-top: 20px;
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) {
    padding: 58px 0 64px;
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-source-heading {
    margin-bottom: 34px;
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list,
  .home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-list {
    grid-template-columns: 1fr;
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) > .ergohr-section__inner > .ergohr-column > .ergohr-info-list .ergohr-info-item {
    min-height: 0;
    padding: 28px 24px;
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) .is-heading-row .ergohr-source-heading {
    max-width: 16ch;
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-item {
    min-height: 0;
    padding: 28px 24px 26px 50px;
  }

  .home .entry-content > .ergohr-section:nth-of-type(2) .is-content-row > .ergohr-column:last-child .ergohr-info-item .ergohr-info-item__mark {
    top: 38px;
    left: 24px;
  }

  .home .entry-content > .ergohr-section:last-of-type {
    padding: 56px 0 72px;
  }

  .home .entry-content > .ergohr-section:last-of-type .ergohr-column {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .entry-content > .ergohr-section:first-of-type::before {
    clip-path: inset(0);
    background-position: center, center, center 72%;
  }

  .has-ergo-motion [data-ergo-reveal]:not(.is-revealed),
  .has-ergo-motion .home .entry-content > .ergohr-section:first-of-type .ergohr-source-heading,
  .has-ergo-motion .home .entry-content > .ergohr-section:first-of-type .ergohr-hero-copy p {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) and (prefers-reduced-motion: reduce) {
  .home .entry-content > .ergohr-section:first-of-type::before {
    background-position: center, center, center 63%;
  }
}

/* Version 1.3: compact single-page section navigation. */
html {
  scroll-padding-top: calc(var(--ergo-header) + 22px);
}

#servicii,
#despre-noi,
#contact {
  scroll-margin-top: calc(var(--ergo-header) + 22px);
}

.site-header__inner {
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
}

.site-section-navigation {
  display: flex;
  flex: 0 0 auto;
  margin-left: auto;
}

.site-section-navigation__panel {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 38px);
}

.site-section-navigation > .menu-toggle {
  display: none;
}

.primary-navigation ul {
  gap: clamp(20px, 2.4vw, 36px);
}

.primary-navigation a {
  padding: 12px 0 11px 15px;
  color: var(--ergo-ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.105em;
  transition: color 180ms ease;
}

.primary-navigation a::after {
  height: 24px;
  background: var(--ergo-signal);
  transform: translateY(-50%) scaleY(0.28);
  transition: transform 240ms var(--ergo-ease-out);
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation a[aria-current="location"] {
  color: var(--ergo-ink);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a[aria-current="location"]::after {
  transform: translateY(-50%) scaleY(1);
}

.language-switcher {
  flex: 0 0 auto;
  border-color: rgba(29, 33, 41, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

.language-switcher ul {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 2px;
  list-style: none;
}

.language-switcher a {
  display: grid;
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--ergo-orange-dark);
  background: var(--ergo-sand);
}

.language-switcher a[aria-current="page"] {
  color: var(--ergo-white);
  background: var(--ergo-orange-dark);
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

@media (max-width: 960px) {
  .site-header__inner {
    gap: 16px;
  }

  .site-section-navigation {
    position: static;
    width: 44px;
  }

  .site-section-navigation > .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px 10px;
    border: 1px solid var(--ergo-hairline);
    border-radius: 3px;
    place-content: center;
    list-style: none;
  }

  .site-section-navigation > .menu-toggle::-webkit-details-marker {
    display: none;
  }

  .site-section-navigation > .menu-toggle > span:not(.screen-reader-text) {
    width: 20px;
    margin: 3px 0;
  }

  .site-section-navigation[open] > .menu-toggle > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .site-section-navigation[open] > .menu-toggle > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-section-navigation > .site-section-navigation__panel {
    position: absolute;
    z-index: 1001;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    padding: 12px max(16px, calc((100vw - var(--ergo-wide)) / 2)) 20px;
    border-top: 1px solid rgba(29, 33, 41, 0.08);
    border-bottom: 1px solid var(--ergo-hairline);
    background: var(--ergo-white);
    box-shadow: 0 18px 34px rgba(29, 33, 41, 0.09);
    gap: 10px;
  }

  .site-section-navigation:not([open]) > .site-section-navigation__panel {
    display: none;
  }

  .primary-navigation ul {
    display: grid;
    gap: 0;
  }

  .primary-navigation li + li {
    border-top: 1px solid rgba(29, 33, 41, 0.08);
  }

  .primary-navigation a {
    padding: 15px 24px 15px 18px;
    font-size: 1rem;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .primary-navigation a::after {
    height: 22px;
  }

  .language-switcher {
    display: flex;
    padding: 14px 0 0;
    border: 0;
    border-top: 1px solid rgba(29, 33, 41, 0.08);
    border-radius: 0;
    justify-content: flex-end;
    background: transparent;
  }

  .language-switcher a {
    min-width: 42px;
    min-height: 36px;
  }
}

@media (max-width: 700px) {
  .site-header__inner {
    width: min(calc(100% - 24px), var(--ergo-wide));
    gap: 10px;
  }

  .site-brand__mark img {
    width: clamp(108px, 31vw, 126px);
  }

  .site-brand__name {
    padding-left: 12px;
    margin-left: 12px;
    font-size: clamp(0.72rem, 3vw, 0.84rem);
  }
}
