:root {
  --theme-primary: #0F4C81;
  --theme-primary-light: #1B6CB8;
  --theme-primary-dark: #0F4C81;
  --theme-secondary: #1B6CB8;
  --theme-brand-blue: #0081FF;
  --theme-fill-base: #0081FF;
  --theme-fill-overlay-start: #000000;
  --theme-fill-overlay-end: #000000;
  --theme-fill-angle: 135deg;
  --theme-brand-fill: linear-gradient(var(--theme-fill-angle), color-mix(in srgb, var(--theme-fill-overlay-start) 70%, transparent), color-mix(in srgb, var(--theme-fill-overlay-end) 40%, transparent)), var(--theme-fill-base);
  --theme-accent: var(--theme-secondary);
  --theme-white: #FFFFFF;
  --theme-light: #F7F7F7;
  --theme-gray: #CCCCCC;
  --theme-dark: #222222;
  --theme-heading-font: "Inter", sans-serif;
  --theme-body-font: "Inter", sans-serif;
  --theme-font-size-base: 1rem;
  --theme-h1-size: 4.5rem;
  --theme-h2-size: 3.25rem;
  --theme-h3-size: 2rem;
  --theme-h4-size: 1.5rem;
  --theme-h5-size: 1.125rem;
  --theme-h6-size: 0.875rem;
  --theme-h1-fluid: clamp(2.75rem, 6vw, var(--theme-h1-size));
  --theme-h2-fluid: clamp(2.25rem, 4.8vw, var(--theme-h2-size));
  --theme-h3-fluid: clamp(1.5rem, 3vw, var(--theme-h3-size));
  --theme-h4-fluid: clamp(1.25rem, 2.4vw, var(--theme-h4-size));
  --theme-h5-fluid: clamp(1rem, 2vw, var(--theme-h5-size));
  --theme-h6-fluid: clamp(0.875rem, 1.6vw, var(--theme-h6-size));
  --theme-heading-weight: 700;
  --theme-body-weight: 400;
  --theme-heading-style: normal;
  --theme-body-style: normal;
  --theme-container: 1200px;
  --theme-radius-sm: 6px;
  --theme-radius-md: 12px;
  --theme-radius-lg: 20px;
  --theme-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --theme-section-padding: 100px;
  --theme-gap: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: var(--theme-font-size-base, 1rem);
}

body {
  margin: 0;
  font-family: var(--theme-body-font, "Inter", sans-serif);
  font-size: 1rem;
  font-weight: var(--theme-body-weight, 400);
  font-style: var(--theme-body-style, normal);
  line-height: 1.5;
  color: var(--theme-dark);
  background: var(--theme-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-heading-font, "Inter", sans-serif);
  font-weight: var(--theme-heading-weight, 700);
  font-style: var(--theme-heading-style, normal);
  line-height: 1.05;
}

h1 {
  font-size: var(--theme-h1-fluid, 4.5rem);
}

h2 {
  font-size: var(--theme-h2-fluid, 3.25rem);
}

h3 {
  font-size: var(--theme-h3-fluid, 2rem);
}

h4 {
  font-size: var(--theme-h4-fluid, 1.5rem);
}

h5 {
  font-size: var(--theme-h5-fluid, 1.125rem);
}

h6 {
  font-size: var(--theme-h6-fluid, 0.875rem);
}

@media (max-width: 1024px) {
  :root {
    --theme-h1-fluid: clamp(2.4rem, 7vw, calc(var(--theme-h1-size) * 0.82));
    --theme-h2-fluid: clamp(2rem, 5.6vw, calc(var(--theme-h2-size) * 0.84));
    --theme-h3-fluid: clamp(1.4rem, 3.8vw, calc(var(--theme-h3-size) * 0.9));
    --theme-h4-fluid: clamp(1.15rem, 2.6vw, calc(var(--theme-h4-size) * 0.92));
    --theme-h5-fluid: clamp(0.98rem, 2vw, calc(var(--theme-h5-size) * 0.94));
    --theme-h6-fluid: clamp(0.82rem, 1.6vw, calc(var(--theme-h6-size) * 0.96));
  }
}

@media (max-width: 767px) {
  :root {
    --theme-h1-fluid: clamp(2rem, 10vw, calc(var(--theme-h1-size) * 0.62));
    --theme-h2-fluid: clamp(1.7rem, 8vw, calc(var(--theme-h2-size) * 0.68));
    --theme-h3-fluid: clamp(1.25rem, 5.8vw, calc(var(--theme-h3-size) * 0.74));
    --theme-h4-fluid: clamp(1.08rem, 4.6vw, calc(var(--theme-h4-size) * 0.82));
    --theme-h5-fluid: clamp(0.95rem, 3.8vw, calc(var(--theme-h5-size) * 0.9));
    --theme-h6-fluid: clamp(0.8rem, 3.2vw, calc(var(--theme-h6-size) * 0.94));
  }
}

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

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

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

button,
a,
input,
textarea,
select {
  outline-offset: 3px;
}

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

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

.site-main {
  overflow: clip;
}

.section {
  padding: var(--theme-section-padding) 0;
}

.flow-content > * + * {
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--theme-radius-md);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--theme-shadow);
}

.button--primary {
  color: var(--theme-white);
  background: var(--theme-primary);
}

.button--secondary {
  color: var(--theme-primary);
  background: rgba(15, 76, 129, 0.08);
}

.button--outline {
  color: var(--theme-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.button--link {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.28rem;
  box-shadow: none;
}

.button--link:hover,
.button--link:focus-visible {
  transform: none;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(10, 53, 90, 0.92);
  color: var(--theme-white);
}

.site-header--transparent {
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, rgba(10, 53, 90, 0.82), transparent);
}

.site-header--contacts-page {
  position: sticky;
  background: var(--theme-white);
  color: var(--theme-dark);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: none;
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.site-branding__name {
  font-size: 1.25rem;
  font-weight: 700;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-navigation__menu,
.site-footer__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--theme-header-inner-height, 108px));
  padding-top: var(--theme-header-inner-height, 108px);
  color: var(--theme-white);
  background-color: var(--theme-primary-dark);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero__video,
.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image img,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background: linear-gradient(130deg, rgba(10, 53, 90, 0.82), rgba(10, 53, 90, 0.38));
}

.hero--brand-fill .hero__media {
  background: var(--theme-brand-fill);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: inherit;
  display: grid;
  align-content: center;
  margin: 0 auto;
  padding-inline: 20px;
}

.hero__svg {
  width: min(32vw, 26rem);
  height: auto;
}

.hero__copy {
  max-width: min(100%, 980px);
  display: grid;
  justify-items: start;
}

.hero__subtitle {
  margin: 0 0 0.75rem;
  font-size: var(--theme-h6-fluid, 0.875rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__title,
.section-title__heading {
  margin: 0;
  font-family: var(--theme-heading-font, "Inter", sans-serif);
  font-size: var(--theme-h1-fluid, 4.5rem);
  font-weight: var(--theme-heading-weight, 700);
  font-style: var(--theme-heading-style, normal);
  line-height: 1.2;
}

.hero__title {
  max-width: min(100%, max-content);
}

.hero__description {
  max-width: 640px;
  margin-top: 1.2rem;
  margin-inline: 0;
  font-size: 1rem;
}

.hero__description p {
  margin: 0;
}

.hero__cta {
  position: absolute;
  bottom: clamp(24px, 5svh, 42px);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  white-space: nowrap;
}

.hero__cta--home {
  right: 5vw;
}

.hero__cta--contained {
  left: 5vw;
  bottom: 100px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.section-title {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-title__subtitle {
  margin: 0 0 0.65rem;
  color: var(--theme-primary);
  font-weight: 600;
}

.cards-grid,
.stats-grid,
.logo-grid,
.contacts-layout,
.project-layout,
.employee-layout,
.media-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.logo-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

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

.card,
.logo-item,
.project-panel,
.cta-card,
.faq-item {
  border-radius: var(--theme-radius-lg);
  background: var(--theme-white);
  box-shadow: var(--theme-shadow);
}

.card {
  overflow: hidden;
}

.card__link {
  display: block;
  height: 100%;
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--theme-light);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.card:hover .card__media img,
.card:focus-within .card__media img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.5rem;
}

.card__meta,
.card__badge {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--theme-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.card__badge {
  margin-left: 0.6rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
}

.card__title {
  margin: 0;
  font-family: var(--theme-heading-font, "Inter", sans-serif);
  font-size: var(--theme-h3-fluid, 2rem);
  font-weight: var(--theme-heading-weight, 700);
  font-style: var(--theme-heading-style, normal);
}

.card__description {
  margin: 0.85rem 0 0;
  color: rgba(34, 34, 34, 0.8);
}

.section--stats {
  background: var(--theme-primary-dark);
  color: var(--theme-white);
}

.stats-item {
  display: grid;
  gap: 0.4rem;
}

.stats-item__line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(34, 34, 34, 0.35);
}

.stats-item__number {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 1.5rem;
}

.logo-item img {
  max-height: 80px;
  object-fit: contain;
}

.logo-item__placeholder {
  display: block;
  padding: 0 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cta-section {
  background: var(--theme-brand-fill);
  color: var(--theme-white);
}

.cta-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.cta-form {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field input,
.form-field textarea,
.filters-form select,
.filters-form input {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--theme-radius-md);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-form__message {
  min-height: 1.5rem;
  margin: 0;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 600;
}

.faq-item__answer {
  padding: 0 1.5rem 1.5rem;
  color: rgba(34, 34, 34, 0.8);
}

.section--contacts {
  background: var(--theme-light);
}

.contacts-layout {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-items {
  display: grid;
  gap: 0.85rem;
}

.contact-item {
  font-size: 1.05rem;
}

.contacts-layout__map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--theme-radius-lg);
  box-shadow: var(--theme-shadow);
}

.filters-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 1.5rem;
  border-radius: var(--theme-radius-lg);
  background: var(--theme-light);
}

.filters-form__field {
  display: grid;
  gap: 0.45rem;
}

.filters-form__field--search {
  grid-column: span 2;
}

.filters-form select,
.filters-form input {
  background: var(--theme-white);
  border-color: rgba(15, 76, 129, 0.12);
  color: var(--theme-dark);
}

.filters-form__actions {
  display: flex;
  gap: 0.8rem;
  align-items: end;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: var(--theme-light);
}

.pagination .page-numbers.current {
  background: var(--theme-primary);
  color: var(--theme-white);
}

.slider {
  display: grid;
  gap: 1rem;
}

.slider--service-projects {
  gap: 1.5rem;
}

.slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
}

.slider__slide {
  scroll-snap-align: start;
}

.slider__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.slider__button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--theme-primary);
  color: var(--theme-white);
}

.slider__button--ghost {
  border: 1px solid rgba(34, 34, 34, 0.16);
  background: transparent;
  color: var(--theme-dark);
}

.service-project-slider {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
}

.visual-pair-slider__main,
.visual-pair-slider__preview-stack {
  position: relative;
}

.visual-pair-slider__main {
  min-height: 100%;
}

.visual-pair-slider__side {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: auto;
  gap: 1.5rem;
}

.visual-pair-slider__preview-stack {
  position: relative;
}

.service-project-slide,
.about-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.94);
  transform-origin: center;
  pointer-events: none;
  transition: opacity 420ms ease, transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-project-preview,
.about-gallery-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(1rem) scale(0.94);
  pointer-events: none;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-project-slide.is-active,
.about-gallery-slide.is-active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.service-project-preview.is-preview,
.about-gallery-preview.is-preview {
  position: relative;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.service-project-slide__link,
.service-project-preview__link,
.about-gallery-slide img,
.about-gallery-preview img {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: var(--theme-light);
}

.service-project-preview,
.about-gallery-preview {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.service-project-slide__link img,
.service-project-preview__link img,
.about-gallery-slide img,
.about-gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-project-slide__link {
  aspect-ratio: 16 / 9.1;
}

.service-project-preview__link {
  aspect-ratio: 1.46 / 1;
}

.visual-pair-slider__controls {
  justify-content: flex-end;
  align-self: end;
  gap: 1.1rem;
  margin-top: 0;
  width: 100%;
}

.slider__controls--service-projects {
  margin-top: 0;
}

.service-project-slider__counter {
  display: inline-flex;
  gap: 0.35rem;
  min-width: 72px;
  margin: 0;
  color: rgba(34, 34, 34, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.project-panel {
  padding: 1.75rem;
}

.project-panel__title,
.employee-layout__position {
  color: var(--theme-primary);
  font-weight: 700;
}

.section--project-content {
  padding-top: 1rem;
}

.section--project-content .flow-content > :first-child {
  margin-top: 0;
}

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

.media-item {
  overflow: hidden;
  border-radius: var(--theme-radius-md);
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.site-footer {
  background: var(--theme-primary-dark);
  color: var(--theme-white);
}

.site-footer__languages {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.site-footer__language {
  opacity: 0.54;
}

.site-footer__language.is-active {
  opacity: 1;
}

.site-footer__brand {
  font-weight: 700;
}

@media (max-width: 1024px) {
  :root {
    --theme-section-padding: 80px;
  }

  .cards-grid--3,
  .stats-grid,
  .project-layout,
  .employee-layout,
  .cta-card,
  .contacts-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .filters-form__field--search,
  .filters-form__actions {
    grid-column: span 2;
  }

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

  .visual-pair-slider__side {
    min-height: auto;
  }
}

@media (max-width: 1240px) {
  .site-header__languages {
    display: none;
  }
}

@media (max-width: 960px) {
  :root {
    --theme-section-padding: 60px;
  }

  .site-header__toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-navigation {
    position: fixed;
    top: calc(min(var(--theme-header-inner-height, 108px), 4.5rem) + 0.5rem);
    left: 50%;
    right: auto;
    width: min(calc(var(--theme-mobile-menu-width, 92) * 1vw), calc(100vw - 40px));
    max-height: calc(var(--theme-mobile-menu-height, 78) * 1vh);
    display: none;
    flex-direction: column;
    align-items: var(--theme-mobile-menu-items-align, center);
    gap: 0;
    padding: 1rem;
    background: rgba(10, 53, 90, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: auto;
    transform: translateX(-50%);
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-navigation__menu,
  .site-footer__menu {
    flex-direction: column;
    align-items: var(--theme-mobile-menu-items-align, center);
  }

  .site-header__languages {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    min-height: min(var(--theme-header-inner-height, 108px), 4.5rem);
  }

  .hero {
    min-height: calc(100svh - min(var(--theme-header-inner-height, 108px), 4.5rem));
    padding-top: min(var(--theme-header-inner-height, 108px), 4.5rem);
  }

  .hero__copy {
    text-align: center;
    margin: 0 auto;
    justify-items: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__cta,
  .hero__cta--home,
  .hero__cta--contained,
  .single-services .hero__cta--contained,
  .post-type-archive-services .hero__cta--contained {
    left: 50%;
    right: auto;
    bottom: 100px;
    text-align: center;
    transform: translateX(-50%);
  }

  .cards-grid--2,
  .cards-grid--3,
  .stats-grid,
  .logo-grid--5,
  .contacts-layout,
  .project-layout,
  .employee-layout,
  .media-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .filters-form,
  .filters-form__field--search,
  .filters-form__actions {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .service-project-slider {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.85fr);
    gap: 1.5rem;
  }

  .service-project-preview__link {
    aspect-ratio: 1.46 / 1;
  }

  .about-gallery-preview img {
    aspect-ratio: 1.46 / 1;
  }

  .visual-pair-slider__controls,
  .slider__controls--service-projects {
    justify-content: flex-end;
  }
}

.site-header {
  position: absolute;
  width: 100%;
  background: transparent;
  color: var(--theme-white);
  backdrop-filter: none;
}

.site-header.site-header--logo-dark {
  color: var(--theme-dark);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(120px, var(--theme-header-logo-column-width, 160px)) minmax(0, 1fr) max-content;
  align-items: center;
  min-height: var(--theme-header-inner-height, 108px);
}

.site-branding__logo {
  display: block;
  width: 86px;
  height: auto;
}

.site-navigation {
  width: 100%;
  justify-content: center;
  justify-self: center;
}

.site-navigation__menu {
  justify-content: center;
  width: auto;
  max-width: 100%;
  gap: var(--theme-header-menu-gap, 32px);
}

.site-navigation__menu a,
.site-header__language,
.site-footer__language,
.site-footer__menu a,
.site-footer__cta-link a,
.site-footer__policy {
  font-size: 0.875rem;
  font-family: var(--theme-body-font, "Inter", sans-serif);
  font-weight: var(--theme-body-weight, 400);
  font-style: var(--theme-body-style, normal);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.28rem;
  transition: text-decoration-color 0.2s ease, opacity 0.2s ease;
}

.site-navigation__menu a:hover,
.site-navigation__menu a:focus-visible,
.site-header__language:hover,
.site-header__language:focus-visible,
.site-footer__menu a:hover,
.site-footer__menu a:focus-visible,
.site-footer__cta-link a:hover,
.site-footer__cta-link a:focus-visible,
.site-footer__policy:hover,
.site-footer__policy:focus-visible {
  text-decoration-color: currentColor;
}

.site-header__languages {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  justify-self: end;
  width: max-content;
}

.site-header__language {
  opacity: 0.54;
}

.site-header__language.is-active {
  opacity: 1;
}

.hero {
  min-height: 100vh;
  padding-bottom: 6rem;
}

.hero--align-right .hero__copy {
  margin-left: auto;
  text-align: left;
}

.hero__copy {
  max-width: min(100%, 980px);
  display: flex;
  flex-direction: column;
}

.hero__title,
.section-title__heading,
.services-home__title,
.opportunities__title,
.brand-stats__title,
.cta-card__title {
  white-space: pre-line;
  font-family: var(--theme-heading-font, "Inter", sans-serif);
  font-weight: var(--theme-heading-weight, 700);
  font-style: var(--theme-heading-style, normal);
}

.hero__title {
  font-size: var(--theme-h1-fluid, 4.5rem);
  line-height: 0.96;
}

.floating-consultation {
  position: fixed;
  right: 48px;
  bottom: 38px;
  z-index: 120;
  color: var(--theme-white);
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.section--services-home {
  padding-top: 88px;
}

.services-home {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: start;
}

.services-home__title {
  margin: 0;
  font-size: var(--theme-h2-fluid, 3.25rem);
  line-height: 1.06;
}

.services-home__label {
  margin: 4rem 0 0;
  font-size: var(--theme-h6-fluid, 0.875rem);
}

.services-home__brand {
  margin-top: var(--services-section-logo-offset-top, 144px);
  font-weight: 700;
  line-height: 0.9;
  color: rgba(34, 34, 34, 0.92);
}

.services-home__brand-image {
  display: block;
  width: var(--services-section-logo-width, 210px);
  max-width: 100%;
  height: auto;
}

.services-home__list {
  border-top: 1px solid rgba(34, 34, 34, 0.35);
}

.services-home__description {
  margin: 0 0 1.5rem;
  max-width: 22rem;
  color: rgba(34, 34, 34, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.services-home__item {
  border-bottom: 1px solid rgba(34, 34, 34, 0.35);
  margin-top: var(--services-section-item-gap, 0px);
}

.services-home__link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: var(--services-section-item-padding, 18px) 0;
}

.services-home__name {
  font-family: var(--theme-heading-font, "Inter", sans-serif);
  font-size: var(--theme-h3-fluid, 2rem);
  font-weight: var(--theme-heading-weight, 700);
  font-style: var(--theme-heading-style, normal);
}

.services-home__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.services-home__arrow {
  transition: transform 0.2s ease;
}

.services-home__link:hover .services-home__arrow,
.services-home__link:focus-visible .services-home__arrow {
  transform: translateX(5px);
}

.section--opportunities {
  color: var(--theme-white);
  background: var(--theme-brand-fill);
}

.opportunities {
  position: relative;
  overflow: hidden;
}

.opportunities__watermark {
  position: absolute;
  inset: auto auto auto 0;
  color: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  white-space: pre-line;
  pointer-events: none;
}

.opportunities__watermark--top {
  top: 0;
  left: 22%;
  font-size: clamp(10rem, 28vw, 20rem);
  line-height: 0.8;
}

.opportunities__watermark--bottom {
  bottom: 0;
  left: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.86;
}

.opportunities__title {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 0 4rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.opportunities__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem 3rem;
}

.opportunities__item {
  max-width: 250px;
}

.opportunities__number {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
}

.opportunities__text {
  font-size: 0.92rem;
}

.section--brand-stats {
  background: var(--theme-white);
}

.brand-stats__heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.brand-stats__title {
  margin: 0;
  font-size: var(--theme-h2-fluid, 3.25rem);
  line-height: 1.02;
}

.brand-stats__description {
  max-width: 630px;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.brand-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.brand-stats .stats-item {
  align-content: start;
}

.brand-stats .stats-item__label {
  display: block;
  min-height: 48px;
  font-size: 1rem;
}

.brand-stats .stats-item__number {
  margin-top: 0.8rem;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
}

.brand-stats__clients-title {
  margin: 0 0 1.6rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.brand-stats .slider__track {
  grid-auto-columns: minmax(160px, 1fr);
}

.brand-stats .logo-item {
  min-height: 96px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.brand-stats .logo-item img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.cta-section {
  padding-top: 0;
  padding-bottom: 0;
}

.cta-card {
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.cta-card__copy {
  display: grid;
  gap: 1rem;
}

.cta-card__title {
  margin: 0;
  font-size: var(--theme-h2-fluid, 3.25rem);
}

.cta-card__description {
  max-width: 420px;
  white-space: pre-line;
}

.cta-form--inline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.cta-form--inline .form-field input {
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.45);
}

.cta-form__submit {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
}

.cta-form--inline .cta-form__message {
  grid-column: 1 / -1;
}

.section--faq {
  background: var(--theme-white);
}

.faq-section__title {
  margin: 0 0 2rem;
  font-size: var(--theme-h2-fluid, 3.25rem);
}

.faq-list {
  gap: 0;
  border-top: 1px solid rgba(34, 34, 34, 0.35);
}

.faq-item {
  border-bottom: 1px solid rgba(34, 34, 34, 0.35);
  border-radius: 0;
  box-shadow: none;
}

.faq-item__question {
  padding: 1.45rem 0;
}

.faq-item__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item__answer {
  padding: 0 0 1.5rem;
}

.contacts-section__title {
  margin: 0 0 2.5rem;
  font-size: var(--theme-h2-fluid, 3.25rem);
}

.contacts-section__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.contacts-section__link {
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.contacts-section__address-label {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.contacts-section__address-bar {
  padding: 0.8rem 1rem;
  background: var(--theme-brand-fill);
  color: var(--theme-white);
}

.contacts-section__map {
  margin-top: 1rem;
}

.contacts-section__map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: var(--theme-brand-fill);
}

.site-footer__inner {
  display: grid;
  gap: 3.25rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) max-content max-content;
  grid-template-areas: "brand links cta languages";
  gap: 1.75rem 2rem;
  align-items: start;
  min-height: min(180px, var(--theme-footer-top-min-height, 180px));
}

.site-footer__brand-wrap {
  grid-area: brand;
}

.site-footer__logo {
  width: 136px;
  height: auto;
}

.site-footer__links {
  grid-area: links;
}

.site-footer__menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--theme-footer-menu-gap-y, 10px) var(--theme-footer-menu-gap-x, 32px);
  font-size: 0.875rem;
  font-family: var(--theme-body-font, "Inter", sans-serif);
  font-weight: var(--theme-body-weight, 400);
  font-style: var(--theme-body-style, normal);
}

.site-footer__menu a {
  font-family: inherit;
  font-size: inherit;
}

.site-footer__cta-link a,
.site-footer__policy,
.site-footer__copyright {
  font-family: var(--theme-body-font, "Inter", sans-serif);
  font-size: 0.875rem;
  font-weight: var(--theme-body-weight, 400);
  font-style: var(--theme-body-style, normal);
}

.site-footer__cta-link {
  grid-area: cta;
  text-align: right;
  align-self: start;
}

.site-footer__languages {
  grid-area: languages;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  align-self: start;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-footer__policy {
  justify-self: center;
}

.site-footer__up {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .site-header__inner,
  .services-home,
  .brand-stats__heading,
  .brand-stats__grid,
  .cta-form--inline,
  .opportunities__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__top {
    grid-template-columns: 180px minmax(0, 1fr) max-content;
    grid-template-areas:
      "brand cta languages"
      "brand links links";
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-footer__policy,
  .site-footer__up {
    justify-self: start;
  }

  .site-header__languages {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    min-height: 84px;
  }

  .site-header__languages {
    display: none;
  }

  .site-navigation {
    top: 84px;
    left: 50%;
    right: auto;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(10, 53, 90, 0.95);
    transform: translateX(-50%);
  }

  .site-navigation__menu {
    width: 100%;
    gap: 0;
    align-items: var(--theme-mobile-menu-items-align, center);
  }

  .floating-consultation {
    right: 20px;
    bottom: 20px;
  }

  .services-home,
  .opportunities__grid,
  .brand-stats__heading,
  .brand-stats__grid,
  .cta-form--inline,
  .site-footer__top,
  .site-footer__menu {
    grid-template-columns: 1fr;
  }

  .services-home__brand {
    margin-top: 2rem;
    justify-content: center;
    overflow: visible;
  }

  body.home .services-home__brand {
    margin-top: 2rem;
    justify-content: center;
    overflow: visible;
  }

  .services-home__brand-image {
    width: min(62vw, var(--services-section-logo-width, 210px));
    display: block;
    margin-inline: auto;
  }

  .brand-stats .stats-item__label {
    min-height: 0;
  }

  .site-footer__languages {
    justify-content: flex-start;
  }

  .single-services .section--projects .section-title__heading,
  .post-type-archive-services .section--projects .section-title__heading {
    font-size: clamp(2rem, 8vw, var(--theme-h2-fluid, 3.25rem));
  }

  .site-main--contacts-page .section--contacts {
    padding-top: 5rem;
  }

  .site-main--contacts-page .section--contacts-page .contacts-section__title {
    margin-bottom: 3rem;
    font-size: clamp(2.4rem, 10vw, var(--theme-h1-fluid, 4.5rem));
  }

  .site-main--contacts-page .contacts-section__meta {
    flex-direction: column;
    gap: 1rem;
  }

  .site-main--contacts-page .contacts-section__link {
    font-size: clamp(1.4rem, 6vw, 2.1rem);
  }

  .site-main--contacts-page .contacts-section__map iframe {
    min-height: 320px;
  }

  .site-footer {
    padding: 3rem 0 1.25rem;
  }

  .site-footer__inner {
    gap: 2.25rem;
  }

  .site-footer__top,
  .site-footer__menu,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    grid-template-areas:
      "brand"
      "links"
      "cta"
      "languages";
    gap: 1.25rem;
  }

  .site-footer__brand-wrap,
  .site-footer__cta-link,
  .site-footer__languages,
  .site-footer__policy,
  .site-footer__copyright,
  .site-footer__up {
    justify-self: start;
    text-align: left;
  }

  .site-footer__menu {
    gap: 0.85rem;
  }

  .site-footer__logo {
    width: 120px;
  }

  .site-footer__languages {
    gap: 1rem;
  }
}

body.home {
  --bg: #f7f7f3;
  --text: #111111;
  --muted: #5f6570;
  --line: rgba(17, 17, 17, 0.22);
  --line-soft: rgba(255, 255, 255, 0.18);
  --blue: #015dbd;
  --blue-deep: #064b99;
  --footer: #024a97;
  background: var(--bg);
  color: var(--text);
}

body.home .section {
  padding-block: 6svh;
}

body.home .screen-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

body.home .services-overview.screen-section,
body.home .section--opportunities.screen-section,
body.home .section--brand-stats.screen-section,
body.home .cta-section.screen-section,
body.home .section--faq.screen-section,
body.home .section--contacts.screen-section {
    min-height: auto;
    display: block;
}

body.home .cta-section {
    padding-top: 0;
    padding-bottom: 0;
}

body.home .site-main {
  overflow: clip;
}

body.home .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  color: var(--theme-white);
  backdrop-filter: none;
  background: linear-gradient(180deg, rgba(4, 34, 74, 0.38), rgba(4, 34, 74, 0));
}

body.home .site-header.site-header--logo-dark {
  color: var(--theme-white);
}

body.home .site-branding {
  justify-self: start;
}

body.home .site-branding__logo {
  display: block;
  width: 86px;
  height: auto;
}

body.home .site-header__language {
  opacity: 0.7;
}

body.home .site-header__language.is-active,
body.home .site-header__language:hover,
body.home .site-header__language:focus-visible {
  opacity: 1;
}

body.home .hero {
  position: relative;
  min-height: calc(100svh - var(--theme-header-inner-height, 108px));
  padding-top: 6rem;
  padding-bottom: 0;
  color: var(--theme-white);
}

body.home .hero__media,
body.home .hero__overlay,
body.home .hero__video-placeholder {
  position: absolute;
  inset: 0;
}

body.home .hero__media {
  overflow: hidden;
  background: #0a4b96;
}

body.home .hero__video {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.777778vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.home .hero__image,
body.home .hero__image img {
  width: 100%;
  height: 100%;
}

body.home .hero__image img {
  object-fit: cover;
}

body.home .hero__video-placeholder {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, rgba(1, 93, 189, 0.74), rgba(2, 75, 151, 0.72));
}

body.home .hero__overlay {
  background: linear-gradient(180deg, rgba(4, 34, 74, 0.18), rgba(4, 34, 74, 0.18));
}

body.home .hero__content {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--theme-header-inner-height, 108px));
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 9svh;
}

body.home .hero--align-right .hero__copy {
  margin-left: auto;
  margin-right: 17%;
  text-align: center;
}

body.home .hero__copy {
  max-width: min(32vw, 26rem);
}

body.home .hero__svg {
  width: min(28vw, 22rem);
  margin-inline: auto;
  justify-self: center;
}

body.home .hero__title {
  font-size: var(--theme-h1-fluid, 4.5rem);
  line-height: 0.92;
}

body.home .hero__subtitle {
  display: block;
  margin: 0 0 0.9rem;
  font-size: var(--theme-h6-fluid, 0.875rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.home .hero__description {
  display: block;
  max-width: 100%;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

body.home .hero__cta--floating {
    position: absolute;
    right: 5vw;
    bottom: 10svh;
    letter-spacing: 0.06em;
    color: var(--theme-white);
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}

body.home .services-overview,
body.home .stats,
body.home .faq,
body.home .contacts {
  background: var(--theme-white);
}

body.home .services-home {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) minmax(0, 1.65fr);
  gap: 4.5%;
  align-items: start;
  margin-top: 0;
}

body.home .services-home__title,
body.home .faq-section__title,
body.home .contacts-section__title,
body.home .cta-card__title {
    margin: 0;
    font-size: var(--theme-h2-fluid, 3.25rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

body.home .services-home__intro {
  position: relative;
}

body.home .services-home__label {
  margin: 2.25rem 0 0;
  font-size: var(--theme-h6-fluid, 0.875rem);
}

body.home .services-home__brand {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: var(--services-section-logo-offset-top, 144px);
  line-height: 0.9;
  font-weight: 700;
}

body.home .services-home__brand--svg {
  min-height: 10rem;
}

body.home .services-home__brand-image {
  position: relative;
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

body.home .services-home__brand::before {
  content: "4HQ";
  position: absolute;
  inset: auto auto -6% -2%;
  font-size: clamp(7rem, 17vw, 14rem);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(17, 17, 17, 0.03);
  pointer-events: none;
}

body.home .services-home__brand--svg::before {
  content: "";
}

body.home .services-home__list {
  border-top: 0.0625rem solid var(--line);
}

body.home .services-home__item {
  border-bottom: 0.0625rem solid var(--line);
  margin-top: var(--services-section-item-gap, 0px);
}

body.home .services-home__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding-block: var(--services-section-item-padding, 18px);
}

body.home .services-home__name {
  font-size: var(--theme-h3-fluid, 2rem);
}

body.home .services-home__more {
  font-size: 0.75rem;
}

body.home .section--opportunities {
  color: var(--theme-white);
  background: var(--theme-brand-fill);
}

body.home .opportunities {
  position: relative;
}

body.home .opportunities__title {
  position: relative;
  z-index: 1;
  margin: 0 0 3rem;
  font-size: var(--theme-h2-fluid, 3.25rem);
  letter-spacing: -0.045em;
}

body.home .opportunities__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.25rem 1.5rem;
}

body.home .opportunities__item {
  max-width: 14rem;
}

body.home .opportunities__item:nth-child(3) {
  grid-column: 4;
}

body.home .opportunities__item:nth-child(4) {
  grid-column: 2;
}

body.home .opportunities__number {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.4vw, 2.75rem);
  line-height: 1;
}

body.home .opportunities__text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

body.home .opportunities__watermark {
  color: rgba(255, 255, 255, 0.07);
}

body.home .opportunities__watermark--top {
  top: 0;
  left: 18%;
  font-size: clamp(12rem, 28vw, 22rem);
  line-height: 0.8;
  font-weight: 900;
}

body.home .opportunities__watermark--bottom {
  left: 0;
  bottom: 4%;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.5;
  font-weight: 800;
  letter-spacing: -0.06em;
  white-space: pre-line;
}

body.home .section--brand-stats {
  position: relative;
}

body.home .section--brand-stats::before {
  content: "4HQ";
  position: absolute;
  right: 10%;
  bottom: 8%;
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 0.8;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.04);
  pointer-events: none;
}

body.home .brand-stats__heading {
  display: grid;
  grid-template-columns: minmax(14rem, 0.75fr) minmax(0, 1.3fr);
  gap: 4%;
  align-items: start;
}

body.home .brand-stats__title {
  margin: 0;
  white-space: pre-line;
  max-width: 28rem;
}

body.home .brand-stats__description {
  margin: 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

body.home .brand-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3svh;
  margin-bottom: 7svh;
}

body.home .brand-stats .stats-item {
  align-content: start;
}

body.home .brand-stats .stats-item__label {
  min-height: 3rem;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}

body.home .brand-stats .stats-item__line {
  margin: 0.1rem 0 0.5rem;
}

body.home .brand-stats .stats-item__number {
  margin-top: 0;
  font-size: clamp(3rem, 4.6vw, 4.5rem);
  line-height: 0.9;
  font-weight: 400;
}

body.home .brand-stats__clients-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  font-weight: 400;
}

body.home .clients-slider {
  overflow: hidden;
}

body.home .clients-slider__track {
  display: flex;
  gap: 0.25rem;
  width: max-content;
  animation: home-clients-marquee var(--clients-speed, 24s) linear infinite;
}

body.home .clients-slider__track .logo-item {
  flex: 0 0 clamp(13rem, 17vw, 16rem);
  width: clamp(13rem, 17vw, 16rem);
  min-width: 13rem;
  min-height: auto;
  aspect-ratio: 1.7 / 1;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

body.home .clients-slider__track .logo-item__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}

body.home .clients-slider__track .logo-item img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

body.home .clients-slider__track .logo-item__placeholder {
  width: 100%;
  height: 100%;
  background: transparent;
}

body.home .cta-section {
    color: var(--theme-white);
}

body.home .cta-card__description {
    max-width: 420px;
    margin-top: 0;
    white-space: pre-line;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

body.home .faq-list {
  margin-top: 2rem;
  border-top: 0;
}

body.home .faq-item {
  border-bottom: 0.0625rem solid var(--line);
}

body.home .faq-item__question {
  width: 100%;
  padding: 1rem 0;
  font-weight: 400;
}

body.home .faq-item__icon {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 220ms ease;
}

body.home .faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

body.home .faq-item__answer {
  padding: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

body.home .contacts-section__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
}

body.home .contacts-section__address {
  margin-top: 1.5rem;
}

body.home .contacts-section__address-label {
  display: block;
  margin: 0 0 0.75rem;
}

body.home .contacts-section__address-bar {
  padding: 0.875rem 1rem;
  color: var(--theme-white);
  background: var(--theme-brand-fill);
}

body.home .contacts-section__map {
  margin-top: 1rem;
}

body.home .contacts-section__map iframe {
  min-height: 38svh;
  border: 0.0625rem solid rgba(17, 17, 17, 0.08);
}

body.home .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.home .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.home .reveal--delay {
  transition-delay: 120ms;
}

body.home .reveal--delay-2 {
  transition-delay: 220ms;
}

@keyframes home-clients-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.125rem));
  }
}

@media (max-width: 64rem) {
  body.home .screen-section {
    min-height: auto;
    align-items: stretch;
  }

  body.home .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  body.home .services-home,
  body.home .brand-stats__heading,
  body.home .brand-stats__grid,
  body.home .site-footer__top {
    grid-template-columns: 1fr;
  }

  body.home .opportunities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  body.home .opportunities__item {
    max-width: none;
    width: 100%;
  }

  body.home .opportunities__item:nth-child(3),
  body.home .opportunities__item:nth-child(4) {
    grid-column: auto;
  }

  body.home .cta-form--inline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 48rem) {
  body.home .hero__copy {
    max-width: min(74vw, 20rem);
    margin-inline: auto;
    text-align: center;
    justify-items: center;
  }

  body.home .hero__svg {
    width: min(66vw, 18rem);
    margin-inline: auto;
    justify-self: center;
  }

  body.home .hero__title {
    font-size: clamp(3rem, 14vw, var(--theme-h1-fluid, 4.5rem));
  }

  body.home .hero__subtitle {
    font-size: clamp(0.75rem, 3.2vw, var(--theme-h6-fluid, 0.875rem));
  }

  body.home .hero__description {
    font-size: clamp(0.85rem, 3.4vw, 1rem);
  }

  body.home .services-home,
  body.home .cta-form--inline,
  body.home .site-footer__menu,
  body.home .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  body.home .opportunities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
  }

  body.home .opportunities__item {
    max-width: none;
    width: 100%;
  }

  body.home .opportunities__item:nth-child(3),
  body.home .opportunities__item:nth-child(4) {
    grid-column: auto;
  }

  .services-home__brand {
    display: none;
  }

  body.home .services-home__brand {
    display: none;
  }

  body.home .brand-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.home .brand-stats .stats-item {
    text-align: center;
  }

  body.home .brand-stats__title {
    max-width: none;
  }

  body.home .brand-stats .stats-item__line {
    justify-self: center;
    width: min(100%, 8.5rem);
  }

  body.home .contacts-section__meta {
    flex-direction: column;
    gap: 1rem;
  }

  body.home .clients-slider__track .logo-item {
    min-width: 6.75rem;
    width: 6.75rem;
    flex-basis: 6.75rem;
  }
}

@media (max-width: 30rem) {
  body.home .opportunities__grid {
    grid-template-columns: 1fr;
  }

  body.home .cta-form--inline {
    grid-template-columns: 1fr;
  }

  body.home .brand-stats__grid {
    grid-template-columns: 1fr;
  }
}

.hero:not(.hero--video) {
  min-height: calc(100svh - var(--theme-header-inner-height, 108px));
}

.hero:not(.hero--video) .hero__content {
  width: min(100% - 40px, var(--theme-container));
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--theme-header-inner-height, 108px));
}

@media (max-width: 1024px) {
  .hero:not(.hero--video) .hero__content {
    min-height: calc(100svh - min(var(--theme-header-inner-height, 108px), 4.5rem));
    width: 90vw;
  }

  .hero:not(.hero--video) .hero__copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero__cta,
  .hero__cta--home,
  .hero__cta--contained,
  .single-services .hero__cta--contained,
  .post-type-archive-services .hero__cta--contained {
    left: 50%;
    right: auto;
    bottom: 100px;
    width: calc(100vw - 40px);
    max-width: calc(var(--theme-container) - 40px);
    text-align: center;
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .site-navigation__menu a {
    width: 100%;
    padding-block: 1rem;
    font-size: var(--theme-mobile-menu-font-size, 1.5rem);
    text-align: var(--theme-mobile-menu-text-align, center);
  }
}

.site-main--about .section--about-overview {
  padding-top: 3.5rem;
}

.about-overview {
  display: grid;
  gap: 2.5rem;
}

.about-overview .brand-stats__heading {
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2rem;
}

.about-overview .brand-stats__title {
  max-width: 22rem;
}

.site-main--about .hero__copy {
  margin-top: -2.25rem;
}

.site-main--about .hero__title {
  font-size: var(--theme-h1-fluid, 4.5rem);
}

.site-main--contacts-page .section--contacts {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--theme-white);
}

.site-main--contacts-page .section--contacts-page .contacts-section__title {
  margin: 0 0 4.5rem;
  font-size: var(--theme-h1-fluid, 4.5rem);
  line-height: 1.05;
}

.site-main--contacts-page .contacts-section__meta {
  gap: 4rem;
  margin-bottom: 2.5rem;
}

.site-main--contacts-page .contacts-section__link {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.site-main--contacts-page .contacts-section__address-label {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.site-main--contacts-page .contacts-section__address-bar {
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
}

.site-main--contacts-page .contacts-section__map {
  margin-top: 1.4rem;
}

.site-main--contacts-page .contacts-section__map iframe {
  min-height: 540px;
}

.single-services .hero__copy,
.post-type-archive-services .hero__copy {
  max-width: min(100%, var(--service-hero-copy-max-width, 560px));
  transform: translateY(var(--service-hero-copy-offset-top, -12px));
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 1024px) {
  body.home .hero__content {
    justify-items: center;
  }

  body.home .hero--align-right .hero__copy,
  .single-services .hero__copy,
  .post-type-archive-services .hero__copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
  }

  .single-services .hero__copy,
  .post-type-archive-services .hero__copy {
    transform: none;
  }
}

.single-services .hero__title,
.post-type-archive-services .hero__title {
  font-size: var(--theme-h1-fluid, 4.5rem);
}

.single-services .hero__subtitle,
.post-type-archive-services .hero__subtitle {
  font-size: var(--theme-h6-fluid, 0.875rem);
}

.single-services .hero__description,
.post-type-archive-services .hero__description {
  font-size: 1rem;
  max-width: 100%;
}

.single-services .hero__cta--contained,
.post-type-archive-services .hero__cta--contained {
    left: 5vw;
    right: auto;
}

@media (min-width: 1600px) {
  body.home .hero__content {
    width: min(calc(100% - 40px), var(--theme-container));
    margin-inline: auto;
  }

  body.home .hero--align-right .hero__copy {
    margin-right: 0;
  }

  body.home .hero__cta--floating {
    right: 20px;
    bottom: 100px;
  }

  .single-services .hero__cta--contained,
  .post-type-archive-services .hero__cta--contained {
    left: 20px;
    bottom: 100px;
  }
}

@media (max-width: 1024px) {
  .single-services .hero__cta--contained,
  .post-type-archive-services .hero__cta--contained {
    left: 50%;
    right: auto;
    bottom: 100px;
    text-align: center;
    transform: translateX(-50%);
  }
}

.single-services .section--projects .section-title__heading,
.post-type-archive-services .section--projects .section-title__heading {
  font-size: var(--theme-h2-fluid, 3.25rem);
}

.about-overview .brand-stats__grid {
  margin-bottom: 0;
}

.about-overview .stats-item__label {
  min-height: 0;
}

.about-overview__content {
  max-width: 72rem;
  color: rgba(34, 34, 34, 0.84);
}

.about-overview__content p {
  margin: 0 0 1rem;
}

.section--about-media {
  padding-top: 1rem;
}

.about-media__title,
.people-section__title {
  margin: 0 0 1.75rem;
  font-size: var(--theme-h2-fluid, 3.25rem);
  line-height: 1.05;
}

.about-gallery-slider {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
}

.about-gallery-slide img {
  aspect-ratio: 16 / 9;
}

.about-gallery-preview img {
  aspect-ratio: 1.46 / 1;
}

.slider__controls--about-gallery {
  margin-top: 0;
}

.slider__counter {
  margin: 0;
  min-width: 4rem;
  text-align: center;
  font-size: 0.95rem;
}

.people-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.people-section .card {
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.people-section .card__media {
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.people-section .card__body {
  padding: 0.75rem 0 0;
}

.people-section .card__title {
  font-size: 1rem;
}

.people-section .card__description {
  margin-top: 0.3rem;
  font-size: 0.82rem;
}

.post-type-archive-services .section--services-home {
  padding-top: 5.5rem;
}

.single-services .section--services-home,
.post-type-archive-services .section--services-home {
  padding-top: 5.5rem;
}

.single-services .services-home,
.post-type-archive-services .services-home {
  grid-template-columns: minmax(16rem, 0.92fr) minmax(0, 1.46fr);
  gap: 5rem;
}

.single-services .services-home__label,
.post-type-archive-services .services-home__label {
  margin-top: 2.8rem;
}

.single-services .services-home__brand,
.post-type-archive-services .services-home__brand {
  margin-top: 5.5rem;
  font-size: clamp(4rem, 8vw, 6.2rem);
}

.post-type-archive-services .section--projects .section-title {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.post-type-archive-services .section--projects .section-title__heading {
  font-size: var(--theme-h2-fluid, 3.25rem);
  line-height: 1.08;
}

.post-type-archive-services .service-project-slider {
  grid-template-columns: minmax(0, 1.72fr) minmax(16rem, 0.78fr);
  gap: 2rem;
}

.post-type-archive-services .service-project-slide__link {
  aspect-ratio: 16 / 8.6;
}

.post-type-archive-services .service-project-preview__link {
  aspect-ratio: 1.52 / 1;
}

.post-type-archive-services .section--contacts {
  padding-top: 5rem;
}

.press-switcher {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.press-switcher__tab {
  color: rgba(34, 34, 34, 0.36);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 400;
  transition: color 0.2s ease;
}

.press-switcher__tab.is-active {
    color: var(--theme-dark);
}

.blog .section--filters,
.page-template-page-press .section--filters,
.post-type-archive-projects .section--filters {
    padding-top: 2.25rem;
    padding-bottom: 1.5rem;
}

.blog .section--press-cards,
.page-template-page-press .section--press-cards,
.post-type-archive-projects .section--projects {
    padding-top: 0;
    padding-bottom: 1.75rem;
}

.blog .section--pagination,
.page-template-page-press .section--pagination,
.post-type-archive-projects .section--pagination {
    padding-top: 0;
    padding-bottom: 2.25rem;
}

.filters-form--press {
  grid-template-columns: minmax(15rem, 21rem) minmax(15rem, 21rem) minmax(19rem, 28rem);
  justify-content: start;
  gap: 1rem 2rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.filters-form--projects-archive {
  grid-template-columns: minmax(15rem, 21rem) minmax(15rem, 21rem) minmax(19rem, 28rem);
  justify-content: start;
  gap: 1rem 2rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.filters-form--press .filters-form__field span {
  display: none;
}

.filters-form--projects-archive .filters-form__field span {
  display: none;
}

.filters-form--press .filters-form__search-control,
.filters-form--press .filters-form__field--search {
  grid-column: auto;
}

.filters-form--projects-archive .filters-form__search-control,
.filters-form--projects-archive .filters-form__field--search {
  grid-column: auto;
}

.filters-form--press .filters-form__actions {
  display: none;
}

.filters-form--projects-archive .filters-form__actions {
  display: none;
}

.filters-form--press select,
.filters-form--press input {
  min-height: 44px;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 0;
  background: #f1f1f1;
  box-shadow: none;
}

.filters-form--projects-archive select,
.filters-form--projects-archive input {
  min-height: 44px;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 0;
  background: #f1f1f1;
  box-shadow: none;
}

.filters-form__search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
}

.filters-form--press .filters-form__search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border: 0;
  background: #f1f1f1;
  color: rgba(34, 34, 34, 0.78);
  cursor: pointer;
}

.filters-form--projects-archive .filters-form__search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border: 0;
  background: #f1f1f1;
  color: rgba(34, 34, 34, 0.78);
  cursor: pointer;
}

.filters-form--press .filters-form__search-button .dashicons {
  display: none;
}

.filters-form--projects-archive .filters-form__search-button .dashicons {
  display: none;
}

.filters-form--press .filters-form__search-button::before {
  content: "\f179";
  display: inline-block;
  font: normal 20px/1 dashicons;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.filters-form--projects-archive .filters-form__search-button::before {
  content: "\f179";
  display: inline-block;
  font: normal 20px/1 dashicons;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section--press-cards .cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.post-type-archive-projects .section--projects .cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card--news_card,
.card--media_card,
.card--project_card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0.8rem;
    border-radius: 0;
    background: #f3f3f1;
    box-shadow: none;
}

.card--news_card .card__arrow,
.card--media_card .card__arrow,
.card--project_card .card__arrow {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(34, 34, 34, 0.35);
  border-radius: 50%;
  color: rgba(34, 34, 34, 0.9);
  font-size: 1rem;
  pointer-events: none;
}

.card--news_card .card__arrow::before,
.card--media_card .card__arrow::before,
.card--project_card .card__arrow::before {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
}

.card--news_card .card__media,
.card--media_card .card__media,
.card--project_card .card__media {
    width: calc(100% - 3.8rem);
    aspect-ratio: 1.72 / 1;
    background: #dcdcdc;
}

.card--news_card .card__link,
.card--media_card .card__link,
.card--project_card .card__link {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 100%;
}

.card--news_card .card__body,
.card--media_card .card__body,
.card--project_card .card__body {
    flex: 1 1 auto;
    padding: 0.95rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card--news_card .card__title,
.card--media_card .card__title,
.card--project_card .card__title {
  display: block;
  margin: 0;
  color: rgba(34, 34, 34, 0.96);
  font-size: var(--theme-h5-fluid, 1.125rem);
  font-weight: var(--theme-heading-weight, 700);
  font-style: var(--theme-heading-style, normal);
  line-height: 1.35;
}

.card--news_card .card__meta,
.card--media_card .card__meta,
.card--project_card .card__meta {
  margin: 0;
  color: rgba(34, 34, 34, 0.35);
  font-size: 0.92rem;
  font-weight: 400;
}

.card--news_card .card__description,
.card--media_card .card__description,
.card--project_card .card__description {
    margin: 0;
    max-width: none;
    color: rgba(34, 34, 34, 0.92);
    font-size: 0.98rem;
    line-height: 1.5;
    display: -webkit-box;
    min-height: calc(1.5em * 3);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.card--news_card .card__footer-meta,
.card--media_card .card__footer-meta,
.card--project_card .card__footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.85rem;
}

.card--news_card .card__badge,
.card--media_card .card__badge,
.card--project_card .card__badge {
    display: none;
}

.card--news_card .card__views,
.card--media_card .card__views,
.card--project_card .card__views {
  color: rgba(34, 34, 34, 0.35);
  font-size: 0.92rem;
  font-weight: 400;
  text-align: right;
}

@media (max-width: 64rem) {
  .people-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters-form--press,
  .filters-form--projects-archive {
    grid-template-columns: 1fr 1fr;
  }

  .filters-form--press .filters-form__field--search,
  .filters-form--projects-archive .filters-form__field--search {
    grid-column: span 2;
  }
}

@media (max-width: 48rem) {
  .service-project-slider,
  .post-type-archive-services .service-project-slider {
    grid-template-columns: 1fr;
  }

  .service-project-preview__link,
  .post-type-archive-services .service-project-preview__link {
    aspect-ratio: 16 / 9.1;
  }

  .visual-pair-slider__preview-stack,
  .post-type-archive-services .visual-pair-slider__preview-stack {
    display: none;
  }

  .visual-pair-slider__controls,
  .slider__controls--service-projects {
    justify-content: center;
    align-self: center;
  }

  .post-type-archive-services .visual-pair-slider__controls,
  .post-type-archive-services .slider__controls--service-projects {
    justify-content: center;
    align-self: center;
  }

  .site-main--about .hero__copy {
    margin-top: 0;
  }

  .site-main--about .section--about-overview {
    padding-top: 2rem;
  }

  .about-gallery-slider {
    grid-template-columns: 1fr;
  }

  .about-overview .brand-stats__grid,
  .people-section__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-gallery-slide img,
  .about-gallery-preview img {
    border-radius: 18px;
  }

  .visual-pair-slider__controls,
  .slider__controls--about-gallery {
    justify-content: center;
    align-self: center;
  }

  .post-type-archive-services .services-home,
  .single-services .services-home,
  .section--press-cards .cards-grid,
  .post-type-archive-projects .section--projects .cards-grid,
  .filters-form--press,
  .filters-form--projects-archive {
    grid-template-columns: 1fr;
  }

  .filters-form--press .filters-form__field--search,
  .filters-form--projects-archive .filters-form__field--search {
    grid-column: auto;
  }

  .press-switcher__tab {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

    .card--news_card .card__media,
    .card--media_card .card__media,
    .card--project_card .card__media {
      width: calc(100% - 3.25rem);
    }
  }

@media (max-width: 30rem) {
  .about-overview .brand-stats__grid,
  .people-section__grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    z-index: 1200;
  }

  .site-header__toggle {
    position: relative;
    z-index: 1300;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .site-header__toggle span {
    position: absolute;
    width: 1.75rem;
    height: 2px;
    transition: transform 0.24s ease, opacity 0.2s ease, background-color 0.2s ease;
  }

  .site-header__toggle span:nth-child(1) {
    transform: translateY(-0.38rem);
  }

  .site-header__toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .site-header__toggle span:nth-child(3) {
    transform: translateY(0.38rem);
  }

  .site-header__toggle.is-open {
    color: var(--theme-site-fill-base, #0081FF);
  }

  .site-header__toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-header__toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: none;
    width: 100vw;
    max-width: none;
    max-height: none;
    min-height: 100svh;
    padding: min(var(--theme-header-inner-height, 108px), 4.5rem) 2rem 2rem;
    border: 0;
    border-radius: 0;
    background: #fff;
    overflow: auto;
    transform: none;
    align-items: center;
    justify-content: center;
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-navigation__menu {
    width: 100%;
    max-width: 28rem;
    min-height: calc(100svh - min(var(--theme-header-inner-height, 108px), 4.5rem) - 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin: 0 auto;
    text-align: center;
  }

  .site-navigation__menu .menu-item {
    width: 100%;
    text-align: center;
  }

  .site-navigation__menu a {
    display: inline-block;
    color: var(--theme-site-fill-base, #0081FF);
    font-size: max(1.75rem, calc(var(--theme-mobile-menu-font-size, 1.5) * 1rem));
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
  }

  .site-navigation__menu a:hover,
  .site-navigation__menu a:focus-visible {
    text-decoration: none;
    opacity: 0.8;
  }

  .site-header__languages {
    display: none !important;
  }
}
