:root {
  --color-primary-900: #483213;
  --color-primary-800: #5c3f17;
  --color-primary-700: #8f6a39;
  --color-primary-600: #bb9562;
  --color-primary-500: #dbb787;
  --color-primary-400: #e2be8e;
  --color-primary-300: #f1d0a5;
  --color-primary-200: #b0a093;
  --color-primary-100: #b0a093;
  --color-secondary-900: #262c31;
  --color-secondary-800: #444d53;
  --color-secondary-700: #616a71;
  --color-secondary-600: #7c858c;
  --color-secondary-500: #969ba1;
  --color-secondary-400: #a7b1b8;
  --color-secondary-300: #b7c2ca;
  --color-secondary-200: #d7dfe4;
  --color-secondary-100: #e5ecf0;
  --color-dark-grey: #333333;
  --color-light-grey: #797979;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-background: #f7f7f7;
  --color-surface: #ffffff;
  --color-disable: #e1e1e1;
  --color-sub: #f1f1f1;
  --color-neutral-400: #3c3c3c;
  --color-neutral-500: #1c1c1c;
  --gradient-primary: linear-gradient(135deg, #976b36, #efd2aa);
  --gradient-primary-soft: linear-gradient(135deg, #c39e70, #efd2aa);
  --e-global-color-primary: var(--color-primary-700);
  --e-global-color-secondary: var(--color-secondary-900);
  --e-global-color-text: var(--color-dark-grey);
  --e-global-color-accent: var(--color-primary-500);
  --font-body: "Be Vietnam Pro", sans-serif;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-dark-grey);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: var(--color-primary-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-primary-900);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-neutral-500);
  line-height: 1.25;
  margin: 0 0 0.75em;
}

.site-container {
  margin-inline: auto;
  max-width: var(--container-width);
  padding-inline: 0;
  width: 100%;
}

.site-container--content {
  max-width: 840px;
}

.site-header {
  background: transparent;
  color: var(--color-white);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background 300ms ease, box-shadow 300ms ease;
  width: 100%;
  z-index: 98;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  background: var(--gradient-primary-soft);
  box-shadow: 0 4px 16px rgb(28 28 28 / 16%);
  color: var(--color-white);
  position: fixed;
}

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

.site-header__inner {
  display: grid;
  gap: 0;
  grid-template-columns: 100px minmax(0, 1fr) 158px;
  justify-content: normal;
  max-width: 1200px;
  min-height: 82px;
  padding-inline: 0;
}

.site-logo {
  flex: 0 0 auto;
  line-height: 0;
  transition: opacity 180ms ease;
  width: 158px;
}

.site-logo img {
  display: block;
  filter: drop-shadow(0 1px 2px rgb(0 0 0 / 20%));
  height: 62px;
  width: auto;
}

.header-navigation {
  display: contents;
}

.primary-navigation {
  justify-self: center;
}

.primary-navigation ul,
.site-footer ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-navigation li {
  padding-inline: 8px;
}

.primary-navigation a,
.site-footer a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.primary-navigation a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  position: relative;
  transition: color 180ms ease;
}

.primary-navigation a::after {
  background: currentColor;
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 200ms ease;
  width: 100%;
}

.primary-navigation a:hover::after,
.primary-navigation .menu-item:not(.menu-item-type-custom).current-menu-item > a::after,
.primary-navigation .current-menu-ancestor > a::after,
.primary-navigation .is-active > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta {
  appearance: none;
  background: #bb9562;
  border: 1px solid #bb9562;
  border-radius: 0;
  color: var(--color-white);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 12px;
  text-decoration: none;
  text-align: center;
  transition: box-shadow 240ms ease, filter 240ms ease, transform 240ms ease;
  width: 158px;
}

.header-cta:hover {
  box-shadow: 0 8px 20px rgb(72 50 19 / 28%);
  color: var(--color-white);
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.menu-backdrop {
  display: none;
}

.site-main {
  min-height: 60vh;
  padding-block: clamp(48px, 8vw, 96px);
}

.home-main {
  background: var(--color-background);
}

.home-hero {
  align-items: center;
  background-image: url("../images/Heros1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
}

.home-hero__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-hero__title {
  line-height: 0;
  margin: 0 0 16px;
  max-width: min(479px, 100%);
}

.home-hero__title img {
  display: block;
  height: auto;
  width: 100%;
}

.home-hero__description {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.0375em;
  line-height: 1.4;
  margin: 0 0 24px;
  max-width: 486px;
}

.home-hero__button {
  align-items: center;
  align-self: stretch;
  background: linear-gradient(180deg, #5c3f17 0%, #e2be8e 100%);
  border-color: #e2be8e;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px 1px 0;
  box-sizing: border-box;
  color: var(--color-white);
  display: flex;
  flex: none;
  flex-direction: row;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  height: 36px;
  justify-content: center;
  line-height: 1.4;
  order: 0;
  padding: 8px 20px;
  text-decoration: none;
  transition: box-shadow 240ms ease, filter 240ms ease, transform 240ms ease;
  width: 112px;
}

.home-hero__button:hover {
  box-shadow: 0 8px 20px rgb(72 50 19 / 28%);
  color: var(--color-white);
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.home-hero__button:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.home-hero__frame {
  display: block;
  height: auto;
  margin-top: 88px;
  max-width: 615px;
  width: 100%;
}

.about-section {
  background: #f7f5f1 url("../images/BGs2.jpg") center / cover no-repeat;
  min-height: 866px;
  overflow: hidden;
  position: relative;
  scroll-margin-top: 82px;
}

.about-section__inner {
  align-items: center;
  display: flex;
  min-height: 866px;
  max-width: 1200px;
  padding-inline: 0;
  position: relative;
  z-index: 2;
}

.about-section__copy {
  transform: translateY(-47px);
  width: 508px;
}

.about-section__eyebrow {
  align-items: center;
  color: var(--color-primary-700);
  display: flex;
  font-family: "Inter", var(--font-body);
  font-size: 20px;
  font-weight: 400;
  gap: 8px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.about-section__eyebrow span {
  background: var(--color-primary-700);
  display: block;
  flex: 0 0 32px;
  height: 1px;
}

.about-section__title {
  color: var(--color-primary-700);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
}

.about-section__tagline {
  color: var(--color-primary-600);
  font-family: var(--font-body);
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 0 32px;
}

.about-section__description {
  color: var(--color-dark-grey);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  max-width: 438px;
}

.about-section__description p {
  margin: 0;
}

.about-section__description p + p {
  margin-top: 22px;
}

.about-section__visual {
  aspect-ratio: 880 / 754;
  position: absolute;
  right: max(0px, calc((100vw - 1400px) / 2));
  top: 56px;
  width: min(58.333vw, 840px);
  z-index: 1;
}

.about-section__blueprint {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: contain;
  position: absolute;
  width: 100%;
}

.about-section__project {
  display: block;
  height: auto;
  position: absolute;
  right: 8.18%;
  top: 21.75%;
  width: 72.727%;
}

.milestones-section {
  background: #d9d9d9 url("../images/BGs3.jpg") center / cover no-repeat;
  height: 640px;
  min-height: 640px;
  position: relative;
  isolation: isolate;
}

.milestones-section::before {
  background: linear-gradient(219.94deg, rgb(255 255 255 / 0%) 8.33%, rgb(105 105 105 / 11.8%) 42.32%, rgb(0 0 0 / 20%) 80.62%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.milestones-section__inner {
  align-items: end;
  display: grid;
  gap: clamp(64px, 7vw, 112px);
  grid-template-columns: 386px minmax(0, 1fr);
  height: 100%;
  min-height: 640px;
  padding-bottom: 70px;
}

.milestones-section__title {
  color: #fbe1c0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 24px;
}

.milestones-section__description {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  max-width: 386px;
  text-shadow: 0 1px 8px rgb(0 0 0 / 18%);
}

.milestones-section__stats {
  align-items: start;
  display: grid;
  gap: 0;
  grid-template-columns: 227px 176px 212px;
  justify-content: space-between;
}

.milestones-section__stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.milestones-section__stat strong {
  align-items: center;
  background: linear-gradient(180deg, #976b36 0%, #efd2aa 100%);
  background-clip: text;
  color: transparent;
  display: flex;
  font-family: "Oswald", sans-serif;
  font-size: 88px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.milestones-section__stat span {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgb(0 0 0 / 24%);
  white-space: nowrap;
}

.services-section {
  background: #f7f5f1 url("../images/BGs2.jpg") center / cover no-repeat;
  min-height: 792px;
  padding-block: 104px 120px;
}

.services-section__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.services-section__eyebrow {
  align-items: center;
  color: var(--color-primary-700);
  display: flex;
  font-family: Inter, var(--font-body);
  font-size: 20px;
  font-weight: 400;
  gap: 8px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.services-section__eyebrow span {
  background: var(--color-primary-700);
  display: block;
  height: 1px;
  width: 32px;
}

.services-section__title {
  color: var(--color-primary-700);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 12px;
  text-align: center;
  width: 100%;
}

.services-section__description {
  color: var(--color-dark-grey);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.services-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 76px;
}

.service-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-inline: 24px;
  position: relative;
  text-align: center;
}

.service-card:not(:last-child)::after {
  background: var(--color-secondary-400);
  content: "";
  height: 200px;
  position: absolute;
  right: 0;
  top: 40px;
  width: 1px;
}

.service-card__icon {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  height: 104px;
  justify-content: center;
  width: 104px;
}

.service-card__icon img {
  display: block;
  height: 56px;
  width: 56px;
}

.service-card__title {
  color: var(--color-dark-grey);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 28px 0 22px;
  white-space: nowrap;
}

.service-card__description {
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  max-width: 232px;
  min-height: 37px;
}

.service-card__button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--color-dark-grey);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  gap: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 34px;
  padding: 6px 0;
  transition: color 180ms ease;
}

.service-card__button svg {
  transition: transform 180ms ease;
}

.service-card__button:hover,
.service-card__button:focus-visible {
  color: var(--color-primary-700);
}

.service-card__button:hover svg,
.service-card__button:focus-visible svg {
  transform: translateX(4px);
}

.service-modal {
  background: var(--color-white);
  border: 0;
  color: var(--color-dark-grey);
  inset: 50% auto auto 50%;
  margin: 0;
  max-height: calc(100vh - 64px);
  max-width: 880px;
  overscroll-behavior: contain;
  overflow: auto;
  padding: 0;
  position: fixed;
  transform: translate(-50%, -50%);
  width: calc(100% - 64px);
}

.service-modal::backdrop {
  background: rgb(0 0 0 / 82%);
}

.service-modal__content {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) 280px;
  height: 390px;
  min-height: 0;
  padding: 56px;
}

.service-modal__copy {
  max-width: 820px;
}

.service-modal__title {
  color: var(--color-dark-grey);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 24px;
}

.service-modal__details {
  color: var(--color-light-grey);
  font-size: 14px;
  line-height: 1.6;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-modal__details li {
  padding-left: 26px;
  position: relative;
}

.service-modal__details li + li {
  margin-top: 12px;
}

.service-modal__details li::before {
  content: "–";
  left: 0;
  position: absolute;
}

.service-modal__placeholder {
  align-items: center;
  aspect-ratio: 1;
  background: #d9d9d9;
  color: #666666;
  display: flex;
  font-size: 18px;
  justify-content: center;
  text-align: center;
  width: 280px;
}

.service-modal__close {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 48px;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 48px;
  z-index: 1;
}

.service-modal__close span {
  background: var(--color-black);
  height: 2px;
  left: 8px;
  position: absolute;
  top: 23px;
  transform: rotate(45deg);
  width: 32px;
}

.service-modal__close span:last-child {
  transform: rotate(-45deg);
}

body.service-modal-open {
  overflow: hidden;
}

.contact-modal {
  background:
    linear-gradient(135deg, rgb(72 50 19 / 94%), rgb(28 28 28 / 98%)),
    var(--color-neutral-500);
  border: 1px solid rgb(226 190 142 / 38%);
  box-shadow: 0 32px 90px rgb(0 0 0 / 45%);
  color: var(--color-white);
  inset: 50% auto auto 50%;
  margin: 0;
  max-height: calc(100vh - 64px);
  max-width: 970px;
  overflow: auto;
  padding: 0;
  position: fixed;
  transform: translate(-50%, -50%);
  width: calc(100% - 64px);
}

.contact-modal__step[hidden] {
  display: none !important;
}

.contact-modal.is-form-step {
  background: var(--color-white);
  color: var(--color-dark-grey);
  max-width: 720px;
}

.consultation-form-modal {
  background: var(--color-white);
  border: 1px solid rgb(226 190 142 / 38%);
  box-shadow: 0 32px 90px rgb(0 0 0 / 45%);
  color: var(--color-dark-grey);
  inset: 50% auto auto 50%;
  margin: 0;
  max-height: calc(100vh - 64px);
  max-width: 720px;
  overflow: auto;
  padding: 0;
  position: fixed;
  transform: translate(-50%, -50%);
  width: calc(100% - 64px);
}

.contact-modal::backdrop,
.consultation-form-modal::backdrop {
  background: rgb(0 0 0 / 82%);
}

.contact-modal__content {
  align-items: stretch;
  display: grid;
  gap: 48px;
  grid-template-columns: 500px minmax(280px, 320px);
  min-height: 390px;
  padding: 56px;
}

.contact-modal__main {
  display: grid;
  gap: 32px;
}

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

.contact-modal__intro {
  color: rgb(255 255 255 / 78%);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 420px;
}

.contact-modal__title,
.contact-modal__subtitle {
  color: var(--color-primary-300);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.contact-modal__info-group {
  display: grid;
  gap: 4px;
}

.contact-modal__info-group h3 {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin: 0;
}

.contact-modal__info-group p,
.contact-modal__links a {
  color: rgb(255 255 255 / 82%);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin: 0;
}

.contact-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 4px;
}

.contact-modal__links a {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-modal__links a:hover,
.contact-modal__links a:focus-visible {
  color: var(--color-primary-300);
}

.contact-modal__links svg {
  color: var(--color-primary-300);
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}

.contact-modal__form-trigger {
  align-items: center;
  background: var(--color-primary-600);
  border: 1px solid var(--color-primary-500);
  border-radius: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  line-height: 1.4;
  margin-top: 4px;
  padding: 13px 18px;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 100%;
}

.contact-modal__form-trigger:hover,
.contact-modal__form-trigger:focus-visible {
  background: var(--color-primary-700);
  box-shadow: 0 12px 28px rgb(0 0 0 / 24%);
  transform: translateY(-2px);
}

.contact-modal__form-trigger svg {
  height: 18px;
  width: 18px;
}

.contact-modal__aside {
  align-self: start;
  display: grid;
  gap: 16px;
}

.contact-modal__brand {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 92%), rgb(241 208 165 / 88%)),
    var(--color-white);
  display: flex;
  justify-content: center;
  min-height: 0;
  padding: 40px;
  width: 100%;
}

.contact-modal__brand img {
  display: block;
  max-height: 220px;
  object-fit: contain;
  width: min(100%, 220px);
}

.contact-modal__form-panel {
  background: var(--color-white);
  color: var(--color-dark-grey);
  display: grid;
  gap: 24px;
  min-height: 420px;
  padding: 48px 56px 56px;
}

.contact-modal__back {
  align-items: center;
  align-self: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--color-primary-700);
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  justify-self: start;
  padding: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-modal__back:hover,
.contact-modal__back:focus-visible {
  background: transparent;
  color: var(--color-primary-900);
  transform: translateX(-3px);
}

.contact-modal__back svg {
  height: 20px;
  width: 20px;
}

.contact-modal__form-header {
  display: grid;
  gap: 10px;
  padding-right: 44px;
}

.contact-modal__form-header h2 {
  color: var(--color-primary-800);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.contact-modal__form-header p {
  color: var(--color-light-grey);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.contact-modal.is-form-step .contact-modal__close {
  background: transparent;
  border-color: rgb(28 28 28 / 18%);
  color: var(--color-neutral-500);
}

.contact-modal.is-form-step .contact-modal__close:hover,
.contact-modal.is-form-step .contact-modal__close:focus-visible {
  background: var(--color-primary-600);
  color: var(--color-white);
}

.consultation-form-modal__content {
  display: grid;
  gap: 28px;
  padding: 56px;
}

.consultation-form-modal__header {
  display: grid;
  gap: 10px;
  padding-right: 48px;
}

.consultation-form-modal__header h2 {
  color: var(--color-primary-800);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.consultation-form-modal__header p {
  color: var(--color-light-grey);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.contact-modal__close,
.consultation-form-modal__close {
  appearance: none;
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 18%);
  color: var(--color-white);
  cursor: pointer;
  height: 44px;
  padding: 0;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background 180ms ease, transform 180ms ease;
  width: 44px;
  z-index: 1;
}

.consultation-form-modal__close {
  background: transparent;
  border-color: rgb(28 28 28 / 18%);
  color: var(--color-neutral-500);
}

.contact-modal__close:hover,
.contact-modal__close:focus-visible,
.consultation-form-modal__close:hover,
.consultation-form-modal__close:focus-visible {
  background: var(--color-primary-600);
  color: var(--color-white);
  transform: none;
}

.contact-modal__close span,
.consultation-form-modal__close span {
  background: currentColor;
  height: 2px;
  left: 10px;
  position: absolute;
  top: 20px;
  transform: rotate(45deg);
  width: 22px;
}

.contact-modal__close span:last-child,
.consultation-form-modal__close span:last-child {
  transform: rotate(-45deg);
}

body.contact-modal-open,
body.consultation-form-modal-open {
  overflow: hidden;
}

.projects-section {
  background: var(--color-primary-700);
  color: var(--color-white);
  min-height: 1498px;
  padding: 130px 10px;
}

.projects-section__container {
  margin-inline: auto;
  max-width: 1180px;
  width: 100%;
}

.projects-section__header {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.projects-section__eyebrow {
  align-items: center;
  color: var(--color-primary-300);
  display: flex;
  font-family: Inter, var(--font-body);
  font-size: 20px;
  gap: 4px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.projects-section__eyebrow span {
  background: var(--color-primary-300);
  height: 1px;
  width: 32px;
}

.projects-section__title {
  color: var(--color-primary-300);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 32px;
  text-align: center;
}

.projects-tabs-shell {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 36px minmax(0, 750px) 36px;
  justify-content: center;
  max-width: 846px;
  width: 100%;
}

.projects-tabs {
  align-items: center;
  background: #f7f5f1;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  min-height: 52px;
  overflow-x: hidden;
  padding: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
}

.projects-tabs::-webkit-scrollbar,
.project-gallery__thumbnails::-webkit-scrollbar {
  display: none;
}

.projects-tabs__navigation,
.project-gallery__navigation {
  align-items: center;
  appearance: none;
  background: rgb(255 255 255 / 94%);
  border: 1px solid var(--color-primary-300);
  border-radius: 50%;
  color: var(--color-primary-700);
  cursor: pointer;
  display: flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  transition: background 180ms ease, opacity 180ms ease;
  width: 36px;
}

.projects-tabs__navigation:hover,
.projects-tabs__navigation:focus-visible,
.project-gallery__navigation:hover,
.project-gallery__navigation:focus-visible {
  background: var(--color-primary-300);
}

.projects-tabs__navigation:disabled,
.project-gallery__navigation:disabled {
  cursor: default;
  opacity: 0.35;
}

.projects-tabs__button {
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--color-black);
  cursor: pointer;
  flex: 1 0 auto;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding: 8px 20px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.projects-tabs__button.is-active,
.projects-tabs__button:hover,
.projects-tabs__button:focus-visible {
  background: linear-gradient(180deg, #5c3f17 0%, #e2be8e 100%);
  border-color: #e2be8e;
  border-bottom-color: var(--color-primary-700);
  color: var(--color-white);
}

.projects-showcase {
  margin-top: 64px;
}

.project-showcase[hidden] {
  display: none;
}

.project-showcase__navigation {
  align-items: center;
  border-bottom: 1px solid var(--color-white);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr minmax(240px, 551px) 1fr;
  min-height: 50px;
  padding-bottom: 16px;
}

.project-showcase__nav {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding: 4px 0;
  transition: color 180ms ease, opacity 180ms ease;
}

.project-showcase__nav:disabled {
  cursor: default;
  opacity: 0.35;
}

.project-showcase__nav--previous {
  justify-self: start;
}

.project-showcase__nav--next {
  justify-self: end;
}

.project-showcase__title {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.project-showcase__summary {
  align-items: start;
  display: grid;
  gap: 87px;
  grid-template-columns: 313px minmax(0, 1fr);
  margin-top: 24px;
}

.project-showcase__fields {
  display: grid;
  gap: 8px;
  margin: 0;
}

.project-showcase__fields div {
  display: grid;
  gap: 16px;
  grid-template-columns: 117px minmax(0, 1fr);
}

.project-showcase__fields dt,
.project-showcase__fields dd {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
}

.project-showcase__description {
  -webkit-overflow-scrolling: touch;
  max-height: 142px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-color: rgb(255 255 255 / 45%) transparent;
  scrollbar-width: thin;
}

.project-showcase__description,
.project-showcase__description p {
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: justify;
}

.project-showcase__description p {
  margin: 0 0 8px;
}

.project-showcase__description p:last-child {
  margin-bottom: 0;
}

.project-showcase__description p:last-of-type {
  display: inline;
}

.project-gallery {
  margin-top: 56px;
}

.project-gallery__stage {
  background: #75552d;
  height: 620px;
  overflow: hidden;
  position: relative;
}

.project-gallery__stage > img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-gallery__placeholder {
  align-items: center;
  background: #d9d9d9;
  color: var(--color-dark-grey);
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.project-gallery__quick-stats {
  align-items: stretch;
  background: var(--color-white);
  bottom: 0;
  color: var(--color-dark-grey);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  left: 0;
  min-height: 95px;
  padding: 0;
  position: absolute;
  width: min(680px, calc(100% - 40px));
}

.project-gallery__quick-stats div {
  align-content: center;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 18px 24px;
  position: relative;
}

.project-gallery__quick-stats div + div::before {
  background: rgb(121 121 121 / 28%);
  content: "";
  height: calc(100% - 36px);
  left: 0;
  position: absolute;
  top: 18px;
  width: 1px;
}

.project-gallery__quick-stats strong {
  color: var(--color-dark-grey);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.18;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.project-gallery__quick-stats span {
  color: var(--color-light-grey);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.project-gallery__rail {
  margin-top: 30px;
  position: relative;
}

.project-gallery__thumbnails {
  display: grid;
  gap: 24px;
  grid-auto-columns: calc((100% - 216px) / 10);
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-gallery__navigation {
  background: rgb(255 255 255 / 92%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.project-gallery__navigation--previous {
  left: 8px;
}

.project-gallery__navigation--next {
  right: 8px;
}

.project-gallery__thumbnail {
  appearance: none;
  aspect-ratio: 96 / 75;
  background: transparent;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.72;
  overflow: hidden;
  padding: 0;
  scroll-snap-align: start;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.project-gallery__thumbnail.is-active,
.project-gallery__thumbnail:hover,
.project-gallery__thumbnail:focus-visible {
  border-color: var(--color-primary-300);
  opacity: 1;
}

.project-gallery__thumbnail img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-lightbox {
  background: transparent;
  border: 0;
  height: calc(100% - 32px);
  margin: auto;
  max-height: none;
  max-width: 1440px;
  overflow: visible;
  padding: 0;
  width: calc(100% - 32px);
}

.project-lightbox::backdrop {
  backdrop-filter: blur(5px);
  background: rgb(0 0 0 / 88%);
}

.project-lightbox__content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 56px 76px;
  position: relative;
}

.project-lightbox__figure {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0;
  position: relative;
  width: 100%;
}

.project-lightbox__media {
  display: inline-grid;
  max-height: 100%;
  max-width: 100%;
  position: relative;
}

.project-lightbox__figure img {
  background: #111111;
  box-shadow: 0 20px 60px rgb(0 0 0 / 45%);
  display: block;
  grid-area: 1 / 1;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.project-lightbox__figure figcaption {
  background: rgb(0 0 0 / 58%);
  border-radius: 20px;
  bottom: 12px;
  color: var(--color-white);
  font-size: 14px;
  grid-area: 1 / 1;
  left: 50%;
  line-height: 1.4;
  padding: 6px 14px;
  position: absolute;
  transform: translateX(-50%);
}

.project-lightbox__close,
.project-lightbox__navigation {
  align-items: center;
  appearance: none;
  background: rgb(255 255 255 / 92%);
  border: 0;
  border-radius: 50%;
  color: var(--color-dark-grey);
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  padding: 0;
  position: absolute;
  transition: background 180ms ease, transform 180ms ease;
  width: 48px;
  z-index: 2;
}

.project-lightbox__close:hover,
.project-lightbox__close:focus-visible,
.project-lightbox__navigation:hover,
.project-lightbox__navigation:focus-visible {
  background: var(--color-primary-300);
}

.project-lightbox__close {
  right: 8px;
  top: 8px;
}

.project-lightbox__close span {
  background: currentColor;
  height: 2px;
  position: absolute;
  transform: rotate(45deg);
  width: 24px;
}

.project-lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.project-lightbox__navigation {
  top: 50%;
  transform: translateY(-50%);
}

.project-lightbox__navigation svg {
  height: 28px;
  width: 28px;
}

.project-lightbox__navigation:hover,
.project-lightbox__navigation:focus-visible {
  transform: translateY(-50%) scale(1.06);
}

.project-lightbox__navigation--previous {
  left: 8px;
}

.project-lightbox__navigation--next {
  right: 8px;
}

body.project-lightbox-open {
  overflow: hidden;
}

.projects-showcase__empty {
  color: var(--color-white);
  text-align: center;
}

.work-process-section {
  background: #f7f5f1 url("../images/BGs2.jpg") center top / cover repeat-y;
  overflow: hidden;
  padding: 104px 0 0;
}

.work-process-section__inner {
  margin-inline: auto;
  max-width: 1306px;
  width: 100%;
}

.work-process-section__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-inline: auto;
  text-align: center;
}

.work-process-section__eyebrow {
  align-items: center;
  color: var(--color-primary-700);
  display: flex;
  font-family: Inter, var(--font-body);
  font-size: 20px;
  font-weight: 400;
  gap: 4px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.work-process-section__eyebrow span {
  background: var(--color-primary-700);
  display: block;
  height: 1px;
  width: 32px;
}

.work-process-section__title {
  color: var(--color-primary-700);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 16px;
  text-align: center;
}

.work-process-section__description {
  color: var(--color-dark-grey);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  max-width: 711px;
  text-align: center;
}

.work-process-section__steps {
  display: grid;
  gap: 64px;
  margin-top: 64px;
}

.work-process-section__row {
  align-items: center;
  display: flex;
  justify-content: center;
}

.work-process-section__row--top {
  gap: 31px;
}

.work-process-section__row--bottom {
  gap: 64px;
}

.work-process-card {
  align-items: center;
  display: flex;
  flex: 0 0 264px;
  flex-direction: column;
  min-height: 216px;
  padding: 0 16px;
  position: relative;
  text-align: center;
}

.work-process-card:not(:last-child)::after {
  background: var(--color-secondary-400);
  content: "";
  height: 200px;
  position: absolute;
  right: -16px;
  top: 8px;
  width: 1px;
}

.work-process-card__icon {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  height: 104px;
  justify-content: center;
  margin-bottom: 24px;
  padding: 24px;
  position: relative;
  width: 104px;
}

.work-process-card__icon img {
  display: block;
  height: 56px;
  width: 56px;
}

.work-process-card__icon span {
  align-items: center;
  background: linear-gradient(117.59deg, #c39e70 0.16%, #ebcea7 48.21%, #ebcea7 60.23%, #c39e70 98.91%);
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  left: -16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  position: absolute;
  top: -10px;
  width: 40px;
}

.work-process-card__title {
  color: var(--color-dark-grey);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 16px;
  text-align: center;
}

.work-process-card__description {
  color: var(--color-dark-grey);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  max-width: 232px;
  text-align: center;
}

.work-process-section__image {
  display: block;
  height: auto;
  margin: 116px auto 0;
  max-width: 1200px;
  width: 92%;
}

.customer-journey {
  background: linear-gradient(to right, var(--color-primary-700) 0 50%, var(--color-white) 50% 100%);
  width: 100%;
}

.customer-journey__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 800px;
  margin-inline: auto;
  max-width: 1440px;
  overflow: hidden;
  width: 100%;
}

.customer-journey__story {
  background: var(--color-primary-700);
  color: var(--color-white);
  min-width: 0;
  padding: 134px 72px 72px;
}

.customer-journey__header {
  max-width: 535px;
}

.customer-journey__eyebrow {
  align-items: center;
  color: var(--color-primary-300);
  display: flex;
  font-family: Inter, var(--font-body);
  font-size: 20px;
  font-weight: 400;
  gap: 4px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.customer-journey__eyebrow span {
  background: var(--color-primary-300);
  display: block;
  height: 1px;
  width: 32px;
}

.customer-journey__title {
  color: var(--color-primary-300);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 16px;
}

.customer-journey__description {
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  max-width: 535px;
}

.customer-journey__slider {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  margin-top: 103px;
  max-width: 535px;
}

.customer-journey__arrow {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  transition: color 180ms ease, transform 180ms ease;
  width: 24px;
}

.customer-journey__arrow:hover,
.customer-journey__arrow:focus-visible {
  color: var(--color-primary-300);
  transform: scale(1.12);
}

.customer-journey__slides {
  min-width: 0;
}

.customer-journey__slide {
  align-items: center;
  animation: customer-story-in 280ms ease both;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.customer-journey__slide[hidden] {
  display: none;
}

.customer-journey__avatar {
  border-radius: 50%;
  display: block;
  height: 120px;
  margin-bottom: 16px;
  object-fit: cover;
  width: 120px;
}

.customer-journey__slide h3 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
}

.customer-journey__project {
  color: #fbe1c0;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
}

.customer-journey__slide blockquote {
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 16px 0 0;
  max-width: 439px;
}

.customer-journey__gallery {
  align-content: start;
  background: var(--color-white);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  padding: 40px 0 29px;
}

.customer-journey__gallery figure {
  margin: 0;
  min-width: 0;
  padding-inline: clamp(40px, 5.21vw, 75px);
}

.customer-journey__gallery figure:nth-child(odd) {
  border-right: 1px solid var(--color-secondary-100);
}

.customer-journey__gallery img {
  aspect-ratio: 420 / 643;
  display: block;
  object-fit: cover;
  width: 100%;
}

.customer-journey__gallery figcaption {
  color: var(--color-black);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 6px;
  white-space: nowrap;
}

@keyframes customer-story-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.media-section {
  background:
    linear-gradient(rgb(0 0 0 / 61%), rgb(0 0 0 / 61%)),
    url("../images/BGs8.jpg") center / cover no-repeat;
  height: 800px;
  overflow: hidden;
  padding-top: 269px;
}

.media-section__inner {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 373.51px) minmax(0, 870.49px);
  margin-inline: auto;
  max-width: 1296px;
  width: 100%;
}

.media-section__header {
  align-self: start;
  max-width: 391px;
}

.media-section__eyebrow {
  align-items: center;
  color: var(--color-primary-300);
  display: flex;
  font-family: Inter, var(--font-body);
  font-size: 20px;
  font-weight: 400;
  gap: 4px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.media-section__eyebrow span {
  background: var(--color-primary-300);
  display: block;
  height: 1px;
  width: 32px;
}

.media-section__title {
  color: var(--color-primary-300);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 16px;
  max-width: 391px;
}

.media-section__title span {
  display: block;
  white-space: nowrap;
}

.media-section__description {
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  max-width: 254px;
}

.media-section__logos {
  display: flex;
  flex-direction: column;
  gap: 43px;
  min-width: 0;
}

.media-section__logo-row {
  align-items: center;
  display: grid;
  gap: 36px;
  min-height: 42px;
}

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

.media-section__logo-row--3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 68px;
}

.media-section__logo {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  justify-self: center;
}

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

.media-section__logo--habitusliving { width: 204px; }
.media-section__logo--happynest { width: 169px; }
.media-section__logo--tapchikientruc { width: 217px; }
.media-section__logo--vnexpress { width: 216px; }
.media-section__logo--phapluat { width: 154px; }
.media-section__logo--kienviet { width: 159px; }
.media-section__logo--barchdaily { width: 109px; }
.media-section__logo--kientrucvietnam { width: 73px; }
.media-section__logo--vtv9 { width: 136px; }
.media-section__logo--htv9 { width: 166px; }

.media-section__marquee {
  display: none;
}

@keyframes media-logo-forward {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 18px)); }
}

@keyframes media-logo-reverse {
  from { transform: translateX(calc(-50% - 18px)); }
  to { transform: translateX(0); }
}

.home-content {
  padding-block: clamp(64px, 8vw, 120px);
}

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

.post-card {
  background: var(--color-surface);
  border: 1px solid rgb(143 106 57 / 14%);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgb(72 50 19 / 8%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.post-card:hover {
  box-shadow: 0 22px 52px rgb(72 50 19 / 14%);
  transform: translateY(-6px);
}

.post-card__image {
  display: block;
  overflow: hidden;
}

.post-card__image img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.post-card:hover .post-card__image img {
  transform: scale(1.045);
}

.post-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.post-card__meta {
  align-items: center;
  color: var(--color-light-grey);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 14px;
}

.post-card__category {
  color: var(--color-primary-700);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.post-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0 0 12px;
}

.post-card__title a {
  color: inherit;
  text-decoration: none;
}

.post-card__title a:hover,
.post-card__title a:focus-visible {
  color: var(--color-primary-700);
}

.post-card__excerpt {
  color: var(--color-light-grey);
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.65;
  margin: 0 0 22px;
}

.post-card__more {
  align-items: center;
  color: var(--color-primary-700);
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  margin-top: auto;
  text-decoration: none;
}

.post-card__more svg {
  height: 20px;
  transition: transform 180ms ease;
  width: 20px;
}

.post-card__more:hover svg,
.post-card__more:focus-visible svg {
  transform: translateX(4px);
}

.content-hero {
  align-items: flex-end;
  background-color: var(--color-primary-800);
  background-image:
    linear-gradient(180deg, rgb(0 0 0 / 38%) 0%, rgb(28 20 8 / 82%) 100%),
    var(--content-hero-image);
  background-position: center;
  background-size: cover;
  color: var(--color-white);
  display: flex;
  min-height: 460px;
  overflow: hidden;
  padding: 160px 0 72px;
  position: relative;
}

.content-hero::after {
  background: linear-gradient(90deg, var(--color-primary-600), transparent);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 42%;
}

.content-hero--single {
  min-height: 560px;
}

.content-hero__inner {
  position: relative;
  width: 100%;
  z-index: 1;
}

.content-hero__eyebrow {
  color: var(--color-primary-300);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin: 0 0 14px;
  text-decoration: none;
}

.content-hero__title {
  color: var(--color-white);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.25;
  margin: 0;
  max-width: 980px;
}

.content-hero__description {
  color: rgb(255 255 255 / 82%);
  font-size: 16px;
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 700px;
}

.content-hero__description p {
  margin: 0;
}

.content-hero__meta {
  align-items: center;
  color: rgb(255 255 255 / 78%);
  display: flex;
  font-size: 14px;
  gap: 28px;
  margin-top: 22px;
}

.content-hero__meta > * + * {
  position: relative;
}

.content-hero__meta > * + *::before {
  background: var(--color-primary-400);
  content: "";
  height: 4px;
  left: -16px;
  position: absolute;
  top: 9px;
  width: 4px;
}

.content-breadcrumb {
  align-items: center;
  color: rgb(255 255 255 / 72%);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
  margin-bottom: 20px;
}

.content-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.content-breadcrumb a:hover,
.content-breadcrumb a:focus-visible {
  color: var(--color-primary-300);
}

.archive-content,
.single-article-section {
  background: #f7f5f1 url("../images/BGs2.jpg") center top / cover repeat-y;
}

.archive-content {
  padding: 104px 0 120px;
}

.archive-content__inner {
  max-width: 1200px;
}

.archive-content__empty {
  color: var(--color-light-grey);
  font-size: 18px;
  margin: 0;
  text-align: center;
}

.blog-toolbar {
  background: rgb(255 255 255 / 96%);
  border: 1px solid rgb(143 106 57 / 14%);
  box-shadow: 0 24px 70px rgb(72 50 19 / 12%);
  display: grid;
  gap: 24px;
  margin: -140px 0 72px;
  padding: 28px 32px;
  position: relative;
  z-index: 2;
}

.blog-search {
  align-items: center;
  border-bottom: 1px solid rgb(143 106 57 / 24%);
  display: grid;
  gap: 14px;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  padding-bottom: 20px;
}

.blog-search svg {
  color: var(--color-primary-700);
  height: 22px;
  width: 22px;
}

.blog-search input[type="search"] {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--color-dark-grey);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  min-width: 0;
  outline: 0;
  padding: 10px 0;
  width: 100%;
}

.blog-search input[type="search"]::placeholder {
  color: #85817b;
}

.blog-search button {
  background: var(--color-primary-700);
  border-radius: 4px;
  font-size: 14px;
  min-width: 112px;
  padding: 12px 20px;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.blog-search button:hover,
.blog-search button:focus-visible {
  background: linear-gradient(180deg, #5c3f17, #bb9562);
  box-shadow: 0 10px 24px rgb(92 63 23 / 24%);
  transform: translateY(-1px);
}

.blog-categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.blog-categories::-webkit-scrollbar {
  display: none;
}

.blog-categories__link {
  align-items: center;
  border: 1px solid rgb(143 106 57 / 20%);
  color: var(--color-light-grey);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 13px;
  gap: 9px;
  padding: 9px 14px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.blog-categories__link span {
  color: var(--color-primary-600);
  font-size: 11px;
}

.blog-categories__link:hover,
.blog-categories__link:focus-visible,
.blog-categories__link.is-active {
  background: var(--color-primary-700);
  border-color: var(--color-primary-700);
  color: var(--color-white);
}

.blog-categories__link.is-active span {
  color: var(--color-primary-200);
}

.navigation.pagination {
  margin-top: 64px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.page-numbers {
  align-items: center;
  background: var(--color-white);
  border: 1px solid rgb(143 106 57 / 24%);
  border-radius: 4px;
  color: var(--color-primary-700);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  min-width: 42px;
  padding-inline: 10px;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover,
.page-numbers:focus-visible {
  background: var(--color-primary-700);
  border-color: var(--color-primary-700);
  color: var(--color-white);
}

.single-article-section {
  padding: 96px 0 120px;
}

.single-article {
  margin-inline: auto;
  max-width: 880px;
}

.single-post-layout {
  align-items: start;
  display: grid;
  gap: clamp(48px, 6vw, 84px);
  grid-template-columns: 250px minmax(0, 800px);
  justify-content: center;
}

.single-post-sidebar {
  display: grid;
  gap: 28px;
  position: sticky;
  top: 112px;
}

.post-toc {
  border-left: 2px solid rgb(143 106 57 / 28%);
  padding-left: 22px;
}

.post-toc__label {
  color: var(--color-primary-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}

.post-toc ol {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  max-height: calc(100vh - 310px);
  overflow-y: auto;
  padding: 0 8px 0 0;
}

.post-toc li {
  line-height: 1.45;
}

.post-toc li.is-subheading {
  padding-left: 12px;
}

.post-toc a {
  color: #716d67;
  font-size: 12px;
  text-decoration: none;
  transition: color 160ms ease;
}

.post-toc a:hover,
.post-toc a:focus-visible {
  color: var(--color-primary-700);
}

.post-consultation-card {
  background:
    linear-gradient(145deg, rgb(72 50 19 / 94%), rgb(28 28 28 / 96%)),
    url("../images/BGs3.jpg") center / cover;
  color: var(--color-white);
  display: grid;
  gap: 14px;
  padding: 28px 24px;
}

.post-consultation-card span {
  color: var(--color-primary-300);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.post-consultation-card strong {
  font-size: 18px;
  line-height: 1.5;
}

.post-consultation-card button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-primary-400);
  border-radius: 0;
  color: var(--color-primary-200);
  font-size: 13px;
  font-weight: 400;
  justify-self: start;
  padding: 0 0 3px;
  transition: border-color 180ms ease, color 180ms ease;
}

.post-consultation-card button:hover,
.post-consultation-card button:focus-visible {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.single-article--editorial {
  background: rgb(255 255 255 / 88%);
  border: 1px solid rgb(143 106 57 / 12%);
  box-shadow: 0 28px 80px rgb(72 50 19 / 9%);
  margin: 0;
  max-width: none;
  padding: clamp(36px, 5vw, 64px);
}

.single-article__lead {
  border-bottom: 1px solid rgb(143 106 57 / 18%);
  color: var(--color-primary-800);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 38px;
  padding-bottom: 32px;
}

.single-article__content > h1:first-child {
  display: none;
}

.single-article__content {
  color: var(--color-dark-grey);
  font-size: 17px;
  letter-spacing: 0.01em;
  line-height: 1.85;
}

.single-article__content > * {
  max-width: 100%;
}

.single-article__content > *:first-child {
  margin-top: 0;
}

.single-article__content h2,
.single-article__content h3,
.single-article__content h4 {
  color: var(--color-primary-800);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 2em 0 0.7em;
}

.single-article__content h2 {
  border-top: 1px solid rgb(143 106 57 / 16%);
  padding-top: 1.25em;
  scroll-margin-top: 110px;
}

.single-article__content h3 {
  scroll-margin-top: 110px;
}

.single-article__content h2 { font-size: 30px; }
.single-article__content h3 { font-size: 24px; }
.single-article__content h4 { font-size: 20px; }

.single-article__content p,
.single-article__content ul,
.single-article__content ol {
  margin: 0 0 1.4em;
}

.single-article__content img {
  border-radius: 6px;
  display: block;
  height: auto;
  margin: 36px auto;
}

.single-article__content figure {
  margin: 42px 0;
}

.single-article__content figcaption {
  color: var(--color-light-grey);
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}

.single-article__content ul,
.single-article__content ol {
  padding-left: 1.4em;
}

.single-article__content li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.single-article__content blockquote {
  background: rgb(241 208 165 / 20%);
  border-left: 3px solid var(--color-primary-600);
  color: var(--color-primary-900);
  font-size: 20px;
  font-style: italic;
  margin: 36px 0;
  padding: 24px 28px;
}

.single-article__tags {
  align-items: center;
  border-top: 1px solid rgb(143 106 57 / 20%);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 56px;
  padding-top: 24px;
}

.single-article__tags a {
  background: rgb(187 149 98 / 12%);
  border-radius: 999px;
  color: var(--color-primary-700);
  font-size: 13px;
  padding: 6px 12px;
  text-decoration: none;
}

.post-navigation {
  border-top: 1px solid rgb(143 106 57 / 20%);
  margin-top: 40px;
  padding-top: 32px;
}

.post-navigation .nav-links {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-navigation a {
  background: var(--color-white);
  border: 1px solid rgb(143 106 57 / 16%);
  color: var(--color-dark-grey);
  display: grid;
  gap: 6px;
  height: 100%;
  padding: 18px 20px;
  text-decoration: none;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation span {
  color: var(--color-primary-700);
  font-size: 12px;
  text-transform: uppercase;
}

.post-navigation strong {
  font-size: 15px;
  line-height: 1.5;
}

.related-content-section {
  background: var(--color-primary-800);
  color: var(--color-white);
  padding: 96px 0 112px;
}

.related-content-section__header {
  margin-bottom: 40px;
}

.related-content-section__header p {
  color: var(--color-primary-300);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}

.related-content-section__header h2 {
  color: var(--color-white);
  font-size: 34px;
  margin: 0;
}

.related-content-section .post-card {
  color: var(--color-dark-grey);
}

.content-hero--project-archive,
.content-hero--project-detail {
  min-height: 620px;
}

.content-hero--project-archive {
  background-position: center 42%;
}

.project-archive-section {
  background: #f7f5f1 url("../images/BGs2.jpg") center top / cover repeat-y;
  padding: 96px 0 124px;
}

.project-archive-toolbar {
  align-items: center;
  background: var(--color-primary-800);
  box-shadow: 0 26px 70px rgb(72 50 19 / 18%);
  color: var(--color-white);
  display: grid;
  gap: 44px;
  grid-template-columns: auto minmax(420px, 620px);
  justify-content: space-between;
  margin: -142px 0 58px;
  padding: 28px 32px;
  position: relative;
  z-index: 3;
}

.project-archive-toolbar__copy {
  display: grid;
  gap: 6px;
}

.project-archive-toolbar__copy span {
  color: var(--color-primary-300);
  font-size: 10px;
  letter-spacing: .14em;
}

.project-archive-toolbar__copy strong {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .05em;
}

.project-archive-search {
  align-items: center;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 18%);
  display: grid;
  gap: 12px;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  padding: 7px 8px 7px 16px;
}

.project-archive-search svg {
  color: var(--color-primary-300);
  height: 20px;
  width: 20px;
}

.project-archive-search input[type="search"] {
  background: transparent;
  border: 0;
  color: var(--color-white);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  min-width: 0;
  outline: 0;
  padding: 10px 0;
  width: 100%;
}

.project-archive-search input[type="search"]::placeholder {
  color: rgb(255 255 255 / 52%);
}

.project-archive-search button {
  background: var(--color-primary-500);
  border-radius: 0;
  font-size: 12px;
  min-height: 40px;
  padding: 0 17px;
  transition: background 180ms ease;
}

.project-archive-search button:hover,
.project-archive-search button:focus-visible {
  background: var(--color-primary-700);
}

.project-archive-filters {
  border-bottom: 1px solid rgb(143 106 57 / 22%);
  display: flex;
  gap: 34px;
  margin-bottom: 64px;
  overflow-x: auto;
  scrollbar-width: none;
}

.project-archive-filters::-webkit-scrollbar {
  display: none;
}

.project-archive-filters a {
  color: var(--color-light-grey);
  flex: 0 0 auto;
  font-size: 14px;
  padding: 0 0 16px;
  position: relative;
  text-decoration: none;
}

.project-archive-filters a::after {
  background: var(--color-primary-600);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.project-archive-filters a:hover,
.project-archive-filters a:focus-visible,
.project-archive-filters a.is-active {
  color: var(--color-primary-800);
}

.project-archive-filters a:hover::after,
.project-archive-filters a:focus-visible::after,
.project-archive-filters a.is-active::after {
  transform: scaleX(1);
}

.project-archive-filters span {
  color: var(--color-primary-600);
  font-size: 10px;
  margin-left: 5px;
  vertical-align: top;
}

.project-archive-grid {
  display: grid;
  gap: 64px 28px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.project-archive-card {
  grid-column: span 6;
  min-width: 0;
}

.project-archive-card:nth-child(4n + 1) { grid-column: span 7; }
.project-archive-card:nth-child(4n + 2) { grid-column: span 5; }
.project-archive-card:nth-child(4n + 3) { grid-column: span 5; }
.project-archive-card:nth-child(4n + 4) { grid-column: span 7; }

.project-archive-card__media {
  background: var(--color-primary-800);
  display: block;
  overflow: hidden;
  position: relative;
}

.project-archive-card__media::after {
  background: linear-gradient(180deg, rgb(0 0 0 / 32%) 0%, transparent 34%, rgb(0 0 0 / 45%) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.project-archive-card__media img {
  aspect-ratio: 16 / 11;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
  width: 100%;
}

.project-archive-card:hover .project-archive-card__media img {
  transform: scale(1.04);
}

.project-archive-card__overlay {
  align-items: center;
  display: flex;
  inset: 20px 22px auto;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
}

.project-archive-card__body {
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 18px 48px rgb(72 50 19 / 12%);
  margin: -44px 18px 0;
  padding: 26px 28px 28px;
  position: relative;
  z-index: 2;
}

.project-archive-card__category {
  backdrop-filter: blur(8px);
  background: rgb(255 255 255 / 88%);
  color: var(--color-primary-800);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.project-archive-card__number {
  color: rgb(255 255 255 / 86%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.project-archive-card__heading {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.project-archive-card h2 {
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.3;
  margin: 0 0 20px;
}

.project-archive-card h2 a {
  color: var(--color-primary-800);
  text-decoration: none;
}

.project-archive-card__facts {
  display: flex;
  gap: 28px;
  margin-bottom: 18px;
}

.project-archive-card__facts span {
  align-items: center;
  color: var(--color-dark-grey);
  display: grid;
  font-size: 13px;
  gap: 2px 8px;
  grid-template-columns: 18px minmax(0, 1fr);
}

.project-archive-card__facts small {
  color: var(--color-light-grey);
  font-size: 10px;
  grid-column: 2;
  text-transform: uppercase;
}

.project-archive-card__facts strong {
  font-size: 12px;
  font-weight: 500;
  grid-column: 2;
}

.project-archive-card__facts svg {
  color: var(--color-primary-600);
  grid-row: 1 / 3;
  height: 18px;
  width: 18px;
}

.project-archive-card__body > p {
  color: var(--color-light-grey);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.project-archive-card__link,
.project-showcase__detail-link {
  align-items: center;
  color: var(--color-primary-700);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
  text-decoration: none;
}

.project-archive-card__link {
  background: var(--color-primary-700);
  border-radius: 50%;
  color: var(--color-white);
  height: 42px;
  justify-content: center;
  transition: background 180ms ease, transform 180ms ease;
  width: 42px;
}

.project-archive-card__link svg {
  height: 19px;
  width: 19px;
}

.project-archive-card__link:hover,
.project-archive-card__link:focus-visible {
  background: var(--color-primary-500);
  transform: translate(2px, -2px);
}

.project-showcase__title a {
  color: inherit;
  text-decoration: none;
}

.project-showcase__detail-link {
  color: var(--color-primary-300);
  gap: 4px;
  margin-left: 6px;
}

.project-detail-overview {
  background: #f7f5f1 url("../images/BGs2.jpg") center / cover;
  padding: 112px 0;
}

.project-detail-overview__grid {
  align-items: start;
  display: grid;
  gap: clamp(64px, 9vw, 132px);
  grid-template-columns: 340px minmax(0, 650px);
  justify-content: center;
}

.project-detail-facts {
  background: var(--color-primary-800);
  box-shadow: 24px 24px 0 rgb(187 149 98 / 18%);
  color: var(--color-white);
  padding: 34px 32px;
}

.project-detail-facts > p {
  color: var(--color-primary-300);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  margin: 0 0 22px;
}

.project-detail-facts dl,
.project-detail-facts dd {
  margin: 0;
}

.project-detail-facts dl {
  display: grid;
}

.project-detail-facts dl div {
  border-top: 1px solid rgb(255 255 255 / 14%);
  display: grid;
  gap: 14px;
  grid-template-columns: 88px minmax(0, 1fr);
  padding: 17px 0;
}

.project-detail-facts dt {
  color: rgb(255 255 255 / 58%);
  font-size: 12px;
}

.project-detail-facts dd {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.project-detail-story__eyebrow,
.project-detail-gallery-section__header > p {
  color: var(--color-primary-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  margin: 0 0 14px;
}

.project-detail-story > h2,
.project-detail-gallery-section__header h2 {
  color: var(--color-primary-800);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.35;
  margin: 0 0 30px;
}

.project-detail-story .single-article__content {
  font-size: 16px;
}

.project-detail-gallery-section {
  background: var(--color-primary-800);
  color: var(--color-white);
  padding: 104px 0 120px;
}

.project-detail-gallery-section__header {
  align-items: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 42px;
}

.project-detail-gallery-section__header > p {
  color: var(--color-primary-300);
  grid-column: 1 / -1;
}

.project-detail-gallery-section__header h2 {
  color: var(--color-white);
  margin: 0;
}

.project-detail-gallery-section__header span {
  color: rgb(255 255 255 / 54%);
  font-size: 12px;
  letter-spacing: .08em;
}

.project-detail-gallery {
  display: grid;
  gap: 10px;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.project-detail-gallery__item {
  background: #24211d;
  border: 0;
  border-radius: 0;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.project-detail-gallery__item:first-child {
  grid-column: span 8;
  grid-row: span 2;
}

.project-detail-gallery__item img {
  height: 100%;
  object-fit: cover;
  transition: filter 300ms ease, transform 650ms cubic-bezier(.2, .7, .2, 1);
  width: 100%;
}

.project-detail-gallery__item:hover img,
.project-detail-gallery__item:focus-visible img {
  filter: brightness(.78);
  transform: scale(1.035);
}

.project-detail-gallery__item span {
  bottom: 16px;
  color: var(--color-white);
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  position: absolute;
  right: 18px;
}

.project-detail-gallery__empty {
  border: 1px solid rgb(255 255 255 / 20%);
  color: rgb(255 255 255 / 64%);
  padding: 80px 24px;
  text-align: center;
}

.related-content-section--projects {
  background: #f7f5f1 url("../images/BGs2.jpg") center / cover;
  color: var(--color-dark-grey);
}

.related-content-section--projects .related-content-section__header h2 {
  color: var(--color-primary-800);
}

.related-content-section--projects .project-archive-grid {
  max-width: 980px;
}

.service-page-hero {
  background-position: center;
  min-height: 650px;
}

.service-page-intro {
  background: #f7f5f1 url("../images/BGs2.jpg") center top / cover;
  padding: 112px 0 124px;
}

.service-page-intro__grid {
  align-items: start;
  display: grid;
  gap: clamp(64px, 9vw, 132px);
  grid-template-columns: 250px minmax(0, 720px);
  justify-content: center;
}

.service-page-nav {
  position: sticky;
  top: 110px;
}

.service-page-nav > p {
  color: var(--color-primary-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  margin: 0 0 22px;
}

.service-page-nav nav {
  border-top: 1px solid rgb(143 106 57 / 22%);
  display: grid;
}

.service-page-nav__menu {
  counter-reset: service-menu;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-page-nav__menu li {
  counter-increment: service-menu;
}

.service-page-nav a {
  align-items: center;
  border-bottom: 1px solid rgb(143 106 57 / 22%);
  color: var(--color-light-grey);
  display: grid;
  font-size: 13px;
  gap: 14px;
  grid-template-columns: 24px minmax(0, 1fr);
  line-height: 1.5;
  padding: 16px 0;
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.service-page-nav a::before {
  color: var(--color-primary-500);
  content: counter(service-menu, decimal-leading-zero);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
}

.service-page-nav a span {
  color: var(--color-primary-500);
  font-family: "Oswald", sans-serif;
  font-size: 12px;
}

.service-page-nav a:hover,
.service-page-nav a:focus-visible,
.service-page-nav a.is-active,
.service-page-nav .current-menu-item > a {
  color: var(--color-primary-800);
  padding-left: 8px;
}

.service-page-article {
  position: relative;
}

.service-page-article__mark {
  align-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  height: 68px;
  justify-content: center;
  margin-bottom: 28px;
  width: 68px;
}

.service-page-article__mark img {
  height: 56px;
  width: 56px;
}

.service-page-article .single-article__content {
  font-size: 16px;
}

.service-page-article .single-article__content h2:first-child {
  border-top: 0;
  font-size: clamp(30px, 3vw, 42px);
  margin-top: 0;
  padding-top: 0;
}

.service-page-article__cta {
  align-items: center;
  background: var(--color-primary-700);
  border-radius: 0;
  display: inline-flex;
  font-size: 13px;
  gap: 14px;
  margin-top: 22px;
  padding: 14px 20px;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-page-article__cta:hover,
.service-page-article__cta:focus-visible {
  background: linear-gradient(180deg, #5c3f17, #bb9562);
  box-shadow: 0 12px 28px rgb(72 50 19 / 20%);
  transform: translateY(-2px);
}

.service-page-benefits {
  background:
    linear-gradient(135deg, rgb(72 50 19 / 94%), rgb(28 28 28 / 98%)),
    url("../images/BGs3.jpg") center / cover;
  color: var(--color-white);
  padding: 104px 0 116px;
}

.service-page-section-title {
  margin-bottom: 48px;
  max-width: 720px;
}

.service-page-section-title > p {
  color: var(--color-primary-300);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  margin: 0 0 12px;
}

.service-page-section-title h2 {
  color: inherit;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.35;
  margin: 0;
}

.service-page-benefits__grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.service-benefit-card {
  background: linear-gradient(180deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 4%));
  border: 1px solid rgb(255 255 255 / 14%);
  display: grid;
  gap: 18px;
  min-height: 260px;
  padding: 30px 26px;
}

.service-benefit-card span {
  color: var(--color-primary-300);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.service-benefit-card h3 {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: auto 0 0;
}

.service-benefit-card p {
  color: rgb(255 255 255 / 74%);
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.65;
  margin: 0;
}

.service-page-process {
  background: #f7f5f1 url("../images/BGs2.jpg") center / cover;
  color: var(--color-primary-800);
  padding: 108px 0 120px;
}

.service-page-process__list {
  counter-reset: service-process;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-page-process__list li {
  background: rgb(255 255 255 / 72%);
  border: 1px solid rgb(143 106 57 / 18%);
  box-shadow: 0 18px 48px rgb(72 50 19 / 7%);
  display: grid;
  gap: 18px;
  min-height: 220px;
  padding: 28px 24px;
  position: relative;
}

.service-page-process__list li::before {
  background: linear-gradient(180deg, var(--color-primary-500), var(--color-primary-800));
  content: "";
  height: 48px;
  left: 0;
  position: absolute;
  top: 0;
  width: 3px;
}

.service-page-process__list span {
  color: var(--color-primary-600);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.service-page-process__list strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.service-page-process__list p {
  color: var(--color-light-grey);
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.65;
  margin: 0;
}

.service-page-closing {
  background:
    linear-gradient(90deg, rgb(28 28 28 / 94%), rgb(72 50 19 / 74%)),
    url("../images/Heros1.jpg") center / cover;
  color: var(--color-white);
  padding: 80px 0;
}

.service-page-closing__inner {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.service-page-closing p {
  color: var(--color-primary-300);
  font-size: 11px;
  letter-spacing: .14em;
  margin: 0 0 10px;
}

.service-page-closing h2 {
  color: var(--color-white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.4;
  margin: 0;
  max-width: 760px;
}

.service-page-closing button {
  background: var(--color-primary-500);
  border: 1px solid var(--color-primary-300);
  border-radius: 0;
  font-size: 13px;
  min-width: 160px;
  padding: 15px 22px;
  transition: background 180ms ease, transform 180ms ease;
}

.service-page-closing button:hover,
.service-page-closing button:focus-visible {
  background: var(--color-primary-700);
  transform: translateY(-2px);
}

.services-directory-hero {
  background-position: center 45%;
  min-height: 680px;
}

.services-directory-intro {
  background: #f7f5f1 url("../images/BGs2.jpg") center / cover;
  padding: 112px 0 0;
}

.services-directory-intro__grid {
  display: grid;
  gap: clamp(64px, 9vw, 130px);
  grid-template-columns: minmax(0, 470px) minmax(0, 510px);
  justify-content: center;
}

.services-directory-intro__title span,
.services-directory-section-title p,
.services-directory-standard__copy > p {
  color: var(--color-primary-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
}

.services-directory-intro__title h2,
.services-directory-section-title h2,
.services-directory-standard__copy h2 {
  color: var(--color-primary-800);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.35;
  margin: 14px 0 0;
}

.services-directory-intro__copy {
  color: var(--color-light-grey);
  font-size: 16px;
  line-height: 1.8;
}

.services-directory-intro__copy p {
  margin: 0 0 18px;
}

.services-directory-menu {
  margin-top: 76px;
}

.services-directory-menu__list {
  border-bottom: 1px solid rgb(143 106 57 / 24%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-directory-menu__list a {
  align-items: center;
  border-right: 1px solid rgb(143 106 57 / 20%);
  color: var(--color-primary-800);
  display: flex;
  font-size: 13px;
  justify-content: center;
  min-height: 74px;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.services-directory-menu__list li:first-child a {
  border-left: 1px solid rgb(143 106 57 / 20%);
}

.services-directory-menu__list a:hover,
.services-directory-menu__list a:focus-visible {
  background: var(--color-primary-700);
  color: var(--color-white);
}

.services-directory-grid-section {
  background: var(--color-primary-800);
  color: var(--color-white);
  padding: 104px 0 124px;
}

.services-directory-section-title {
  margin-bottom: 52px;
}

.services-directory-section-title p {
  color: var(--color-primary-300);
  margin: 0;
}

.services-directory-section-title h2 {
  color: var(--color-white);
}

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

.services-directory-card {
  background: var(--color-white);
  color: var(--color-dark-grey);
  display: grid;
  grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
}

.services-directory-card__media {
  background: #2f271c;
  overflow: hidden;
  position: relative;
}

.services-directory-card__media::after {
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 45%));
  content: "";
  inset: 0;
  position: absolute;
}

.services-directory-card__media > img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2, .7, .2, 1);
  width: 100%;
}

.services-directory-card:hover .services-directory-card__media > img {
  transform: scale(1.04);
}

.services-directory-card__media > span {
  bottom: 18px;
  color: var(--color-white);
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  position: absolute;
  right: 18px;
  z-index: 1;
}

.services-directory-card__body {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
}

.services-directory-card__body > img {
  height: 44px;
  margin-bottom: 24px;
  width: 44px;
}

.services-directory-card h3 {
  font-size: 21px;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.services-directory-card h3 a {
  color: var(--color-primary-800);
  text-decoration: none;
}

.services-directory-card p {
  color: var(--color-light-grey);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.services-directory-card__link {
  color: var(--color-primary-700);
  font-size: 12px;
  font-weight: 600;
  margin-top: auto;
  text-decoration: none;
}

.services-directory-card__link span {
  margin-left: 8px;
  transition: margin-left 180ms ease;
}

.services-directory-card__link:hover span {
  margin-left: 13px;
}

.services-directory-standard {
  background: #f7f5f1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.services-directory-standard__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.services-directory-standard__copy {
  align-self: center;
  max-width: 600px;
  padding: 72px clamp(48px, 8vw, 120px);
}

.services-directory-standard__copy > p {
  margin: 0;
}

.services-directory-standard__copy > span {
  color: var(--color-light-grey);
  display: block;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 24px;
}

.services-directory-standard__copy button {
  background: var(--color-primary-700);
  border-radius: 0;
  font-size: 13px;
  margin-top: 32px;
  padding: 14px 20px;
}

.error-page__hero {
  align-items: center;
  background:
    linear-gradient(110deg, rgb(28 28 28 / 96%), rgb(72 50 19 / 82%)),
    url("../images/Heros1.jpg") center / cover;
  color: var(--color-white);
  display: flex;
  min-height: 820px;
  overflow: hidden;
  padding: 150px 0 100px;
  position: relative;
}

.error-page__architecture {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.error-page__architecture span {
  border: 1px solid rgb(226 190 142 / 18%);
  border-radius: 50%;
  height: min(66vw, 820px);
  position: absolute;
  right: -10vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(66vw, 820px);
}

.error-page__architecture span:nth-child(2) {
  height: min(50vw, 620px);
  right: -2vw;
  width: min(50vw, 620px);
}

.error-page__architecture span:nth-child(3) {
  height: min(34vw, 420px);
  right: 6vw;
  width: min(34vw, 420px);
}

.error-page__inner {
  position: relative;
  z-index: 1;
}

.error-page__eyebrow {
  color: var(--color-primary-300);
  font-size: 11px;
  letter-spacing: .16em;
  margin: 0 0 16px;
}

.error-page__code {
  background: linear-gradient(180deg, #976b36, #efd2aa);
  background-clip: text;
  color: transparent;
  font-family: "Oswald", sans-serif;
  font-size: clamp(112px, 18vw, 230px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: .9;
}

.error-page h1 {
  color: var(--color-white);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.35;
  margin: 22px 0 16px;
  max-width: 760px;
}

.error-page__description {
  color: rgb(255 255 255 / 72%);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}

.error-page__search {
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 42%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  margin-top: 40px;
  max-width: 560px;
}

.error-page__search input {
  background: transparent;
  border: 0;
  color: var(--color-white);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  outline: 0;
  padding: 14px 0;
}

.error-page__search input::placeholder {
  color: rgb(255 255 255 / 52%);
}

.error-page__search button {
  background: transparent;
  border-radius: 0;
  color: var(--color-primary-300);
  padding: 12px;
}

.error-page__search svg {
  height: 24px;
  width: 24px;
}

.error-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 34px;
}

.error-page__links a {
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: .04em;
  text-decoration: none;
}

.error-page__links a::after {
  color: var(--color-primary-300);
  content: "↗";
  margin-left: 8px;
}

.button,
button,
input[type="submit"] {
  background: var(--color-primary-700);
  border: 0;
  border-radius: 6px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-block;
  font: inherit;
  font-weight: 600;
  padding: 12px 20px;
  text-decoration: none;
}

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

.site-footer__navigation {
  background: var(--color-primary-700);
  min-height: 290px;
}

.site-footer__navigation-inner {
  display: grid;
  gap: 160px;
  grid-template-columns: repeat(3, 220px);
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1180px;
  min-height: 290px;
  padding-block: 40px;
}

.site-footer__column h2 {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 24px;
}

.site-footer .site-footer__links {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .site-footer__links li {
  font-size: 14px;
  line-height: 1.4;
}

.site-footer .site-footer__links a,
.site-footer .site-footer__links button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: color 180ms ease;
  white-space: nowrap;
}

.site-footer .site-footer__links a:hover,
.site-footer .site-footer__links a:focus-visible,
.site-footer .site-footer__links button:hover,
.site-footer .site-footer__links button:focus-visible {
  background: transparent;
  color: var(--color-primary-300);
}

.site-footer__main {
  background: var(--color-primary-800);
  border-top: 1px solid var(--color-primary-500);
  min-height: 564px;
}

.site-footer__main-inner {
  display: grid;
  gap: 137px;
  grid-template-columns: 631px 412px;
  margin-inline: auto;
  max-width: 1180px;
  min-height: 563px;
  padding-top: 48px;
}

.site-footer__company {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer__identity {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-footer__logo {
  display: block;
  height: 132px;
  width: 146px;
}

.site-footer__details {
  display: grid;
  gap: 4px;
}

.site-footer__details p {
  align-items: center;
  display: grid;
  font-size: 14px;
  gap: 12px;
  grid-template-columns: 96px minmax(0, 1fr);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
}

.site-footer__details strong {
  font-weight: 400;
}

.site-footer__contact-row {
  grid-template-columns: 96px max-content max-content max-content !important;
}

.site-footer__contact-row a {
  align-items: center;
  color: var(--color-white);
  display: inline-flex;
  font-weight: 400;
  gap: 4px;
  text-decoration: none;
}

.site-footer__contact-row a:hover,
.site-footer__contact-row a:focus-visible {
  color: var(--color-primary-300);
}

.site-footer__contact-row svg {
  color: var(--color-primary-500);
  height: 16px;
  width: 16px;
}

.site-footer__socials {
  display: flex;
  gap: 17px;
  margin-top: 38px;
}

.site-footer__socials a {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  height: 44px;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: 44px;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  box-shadow: 0 8px 20px rgb(0 0 0 / 18%);
  transform: translateY(-2px);
}

.site-footer__socials img {
  display: block;
  height: auto;
  width: 15px;
}

.site-footer__certifications {
  align-items: center;
  display: flex;
  gap: 30px;
  margin-top: 24px;
}

.site-footer__commerce-badge {
  align-items: center;
  width: 128px;
}
.site-footer__dmca-badge {
  align-items: center;
  background: linear-gradient(180deg, #fff8a4, #e0aa20);
  border: 2px solid #262c31;
  color: #262c31;
  display: flex;
  height: 27px;
  width: 128px;
}

.site-footer__dmca-badge strong {
  background: #262c31;
  color: var(--color-white);
  font-size: 10px;
  height: 100%;
  padding: 7px 5px 0;
}

.site-footer__dmca-badge span {
  font-size: 9px;
  font-weight: 700;
  padding-inline: 6px;
}

.footer-consultation {
  align-self: start;
  background: var(--color-white);
  border-radius: 8px;
  color: var(--color-dark-grey);
  min-height: 422px;
  padding: 24px;
  width: 412px;
}

.footer-consultation__header {
  margin-bottom: 24px;
}

.footer-consultation__header h2 {
  color: var(--color-dark-grey);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 8px;
}

.footer-consultation__header p {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
}

.footer-consultation__form .fluentform,
.consultation-form-modal__form .fluentform {
  font-family: var(--font-body);
}

.site-footer .footer-consultation__form .ff-el-group,
.consultation-form-modal__form .ff-el-group {
  margin-bottom: 12px;
}

.footer-consultation__form .ff-el-input--label,
.consultation-form-modal__form .ff-el-input--label {
  margin-bottom: 4px;
}

.footer-consultation__form .ff-el-input--label label,
.consultation-form-modal__form .ff-el-input--label label {
  color: var(--color-light-grey);
  font-size: 12px;
  font-weight: 400;
}

.site-footer .footer-consultation__form .ff-el-form-control,
.consultation-form-modal__form .ff-el-form-control {
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: 4px;
  box-shadow: none;
  color: var(--color-dark-grey);
  font-family: var(--font-body);
  font-size: 12px;
  height: 36px;
  line-height: 1.4;
  padding: 8px 12px;
}

.site-footer .footer-consultation__form select.ff-el-form-control,
.consultation-form-modal__form select.ff-el-form-control {
  min-height: 36px;
}

.footer-consultation__form textarea.ff-el-form-control,
.consultation-form-modal__form textarea.ff-el-form-control {
  height: 64px;
  min-height: 64px;
  resize: vertical;
}

.footer-consultation__form .ff-btn-submit,
.footer-consultation__form button[type="submit"],
.consultation-form-modal__form .ff-btn-submit,
.consultation-form-modal__form button[type="submit"] {
  align-items: center;
  background: linear-gradient(180deg, #5c3f17 0%, #e2be8e 100%);
  border: 1px solid var(--color-primary-400);
  border-bottom: 2px solid var(--color-primary-700);
  border-radius: 8px;
  color: var(--color-white);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding: 8px 20px;
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.footer-consultation__form .ff-btn-submit:hover,
.footer-consultation__form .ff-btn-submit:focus-visible,
.footer-consultation__form button[type="submit"]:hover,
.footer-consultation__form button[type="submit"]:focus-visible,
.consultation-form-modal__form .ff-btn-submit:hover,
.consultation-form-modal__form .ff-btn-submit:focus-visible,
.consultation-form-modal__form button[type="submit"]:hover,
.consultation-form-modal__form button[type="submit"]:focus-visible {
  box-shadow: 0 8px 18px rgb(92 63 23 / 22%);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.contact-modal .consultation-form-modal__form .ff-el-form-control,
.contact-modal .consultation-form-modal__form .ff-el-form-control::placeholder {
  font-family: var(--font-body);
  font-size: 14px;
}

.contact-modal .consultation-form-modal__form .ff-el-form-control::placeholder {
  color: var(--color-light-grey);
  opacity: 1;
}

.contact-modal .consultation-form-modal__form .ff-btn-submit,
.contact-modal .consultation-form-modal__form button[type="submit"] {
  height: 48px;
  min-height: 48px;
}

.error-404 {
  text-align: center;
}

.error-code {
  color: var(--color-primary-600);
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.screen-reader-text:focus {
  background: var(--color-white);
  clip: auto;
  clip-path: none;
  height: auto;
  left: 8px;
  padding: 12px;
  top: 8px;
  width: auto;
  z-index: 100000;
}

@media (max-width: 1199px) {
  body.header-menu-open {
    overflow: hidden;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    display: flex;
    gap: 0;
    justify-content: space-between;
    padding-inline: 16px;
  }

  .site-logo img {
    height: 56px;
    width: auto;
  }

  .menu-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: 10px 0 10px 10px;
    position: relative;
    width: 35px;
    z-index: 101;
  }

  .menu-toggle:hover {
    background: transparent;
  }

  .menu-toggle__line {
    background: currentColor;
    display: block;
    height: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
    width: 25px;
  }

  .header-menu-open .menu-toggle {
    color: var(--color-white);
  }

  .header-menu-open .site-logo {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-navigation {
    align-items: stretch;
    background:
      linear-gradient(180deg, rgb(187 149 98 / 14%), transparent 32%),
      var(--color-neutral-500);
    border-left: 1px solid rgb(226 190 142 / 35%);
    box-shadow: -18px 0 48px rgb(0 0 0 / 24%);
    display: flex;
    flex-direction: column;
    gap: 28px;
    inset: 0 0 0 auto;
    justify-content: flex-start;
    max-width: 360px;
    padding: 106px 28px 32px;
    position: fixed;
    transform: translateX(100%);
    transition: transform 280ms ease, visibility 280ms ease;
    visibility: hidden;
    width: 86vw;
    z-index: 100;
  }

  .header-navigation.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .menu-backdrop {
    background: rgb(0 0 0 / 52%);
    border: 0;
    border-radius: 0;
    display: block;
    inset: 0 auto 0 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 280ms ease;
    width: calc(100vw - min(86vw, 360px));
    z-index: 97;
  }

  .header-menu-open .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .primary-navigation ul,
  .site-footer__inner,
  .site-footer ul {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-navigation ul {
    gap: 0;
  }

  .primary-navigation li {
    padding-inline: 0;
  }

  .primary-navigation a {
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    color: var(--color-white);
    display: block;
    font-size: 14px;
    padding-block: 16px;
  }

  .primary-navigation a::after {
    background: var(--color-primary-400);
    bottom: -1px;
    height: 2px;
    width: 44px;
  }

  .home-hero {
    background-position: center center;
    min-height: 100vh;
    min-height: 100svh;
  }

  .home-hero__content {
    padding-inline: 16px;
  }

  .home-hero__title {
    max-width: min(100%, 360px);
  }

  .home-hero__description {
    max-width: 100%;
  }

  .home-hero__frame {
    margin-top: 48px;
    max-width: 100%;
  }

  .header-cta {
    align-self: flex-start;
    text-align: center;
    width: 100%;
  }

  .site-footer__inner {
    gap: 16px;
    padding-block: 32px;
  }

  .customer-journey {
    background: var(--color-white);
  }

  .customer-journey__inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .customer-journey__story {
    min-height: 600px;
    padding: 88px 20px 72px;
  }

  .customer-journey__header,
  .customer-journey__slider {
    margin-inline: auto;
    max-width: 720px;
  }

  .customer-journey__slider {
    margin-top: 64px;
  }

  .customer-journey__gallery {
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 40px 20px;
  }

  .customer-journey__gallery figure {
    padding-inline: 12px;
  }

  .customer-journey__gallery figure {
    border-right: 0 !important;
  }

  .media-section {
    height: auto;
    min-height: 720px;
    padding: 96px 20px;
  }

  .media-section__inner {
    gap: 64px;
    grid-template-columns: 1fr;
    max-width: 900px;
  }

  .media-section__header {
    max-width: 560px;
  }

  .media-section__title {
    max-width: 560px;
  }

  .media-section__description {
    max-width: 520px;
  }

  .media-section__logo-row {
    gap: 24px;
  }

  .media-section__logo {
    flex: 1 1 0;
    height: 48px;
    width: auto !important;
  }

  .media-section__logo-row--3,
  .media-section__logo-row--3 .media-section__logo {
    min-height: 54px;
  }

  .media-section__logo img {
    max-height: 48px;
    object-fit: contain;
    width: auto;
  }
}

@media (max-width: 1023px) {
  .about-section {
    min-height: 0;
    padding-block: clamp(72px, 10vw, 110px);
  }

  .about-section__inner {
    min-height: 0;
    padding-inline: 20px;
  }

  .about-section__copy {
    transform: none;
    width: min(100%, 560px);
  }

  .about-section__visual {
    margin: 52px -24px 0 auto;
    position: relative;
    right: auto;
    top: auto;
    width: min(94vw, 760px);
  }

  .milestones-section {
    height: 640px;
    min-height: 640px;
  }

  .milestones-section__inner {
    gap: 64px;
    grid-template-columns: 1fr;
    min-height: 640px;
  }

  .milestones-section__intro {
    max-width: 520px;
  }

  .services-section {
    min-height: 0;
    padding-block: 88px;
  }

  .services-section__grid {
    gap: 56px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 64px;
  }

  .service-card:nth-child(2)::after {
    display: none;
  }

  .service-modal__content {
    gap: 48px;
    grid-template-columns: 1fr 280px;
    padding: 56px;
  }

  .service-modal__title {
    font-size: 20px;
  }

  .service-modal__details {
    font-size: 14px;
  }

  .contact-modal__content {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 240px;
    padding: 48px;
  }

  .contact-modal__aside,
  .contact-modal__brand {
    width: 240px;
  }

  .contact-modal__brand {
    height: 240px;
    padding: 32px;
  }

  .contact-modal__brand img {
    max-height: 170px;
    width: min(100%, 170px);
  }

  .consultation-form-modal__content {
    padding: 48px;
  }

  .contact-modal__form-panel {
    padding: 48px;
  }

  .projects-section {
    min-height: 0;
    padding: 96px 20px;
  }

  .work-process-section {
    padding: 88px 20px 0;
  }

  .work-process-section__row {
    display: grid;
    gap: 56px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .work-process-card {
    flex-basis: auto;
    min-height: 0;
    padding: 0 20px 32px;
  }

  .work-process-card:not(:last-child)::after {
    display: none;
  }

  .work-process-card:nth-child(odd)::after {
    display: block;
    height: 100%;
    right: 0;
    top: 0;
  }

  .work-process-card:last-child::after {
    display: none;
  }

  .work-process-section__image {
    margin-top: 80px;
    width: min(100%, 900px);
  }

  .projects-section__title {
    font-size: 38px;
  }

  .project-showcase__summary {
    gap: 40px;
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .project-gallery__stage {
    height: clamp(440px, 54vw, 620px);
  }

  .project-gallery__thumbnails {
    gap: 16px;
    grid-auto-columns: calc((100% - 64px) / 5);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-container {
    padding-inline: 20px;
  }

  .site-header__inner {
    padding-inline: 20px;
  }

  .work-process-section__row {
    display: flex;
    gap: clamp(12px, 2vw, 24px);
  }

  .work-process-card {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 8px 28px;
  }

  .work-process-card:not(:last-child)::after {
    display: block;
    height: 100%;
    right: calc(clamp(12px, 2vw, 24px) / -2);
    top: 0;
  }

  .work-process-card:last-child::after {
    display: none;
  }

  .work-process-card__icon {
    height: 88px;
    margin-bottom: 20px;
    padding: 20px;
    width: 88px;
  }

  .work-process-card__icon img {
    height: 48px;
    width: 48px;
  }

  .work-process-card__title {
    font-size: 16px;
  }

  .work-process-card__description {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .site-container {
    padding-inline: 16px;
  }

  .about-section {
    padding-block: 72px;
  }

  .about-section__eyebrow {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .about-section__title {
    font-size: 32px;
    line-height: 1.25;
  }

  .about-section__tagline {
    font-size: 20px;
    line-height: 1.3;
    margin: 10px 0 26px;
  }

  .about-section__description {
    font-size: 15px;
    max-width: 100%;
  }

  .about-section__visual {
    margin-right: -16px;
    width: calc(100% + 16px);
  }

  .about-section__inner {
    padding-inline: 16px;
  }

  .milestones-section {
    background-position: 44% center;
  }

  .milestones-section__inner {
    gap: 48px;
  }

  .milestones-section__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .milestones-section__description {
    font-size: 15px;
  }

  .milestones-section__stats {
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .milestones-section__stat {
    gap: 8px;
  }

  .milestones-section__stat strong {
    font-size: clamp(48px, 15vw, 58px);
  }

  .milestones-section__stat span {
    font-size: 14px;
    white-space: normal;
  }

  .services-section {
    padding-block: 72px;
  }

  .services-section__eyebrow {
    font-size: 16px;
  }

  .services-section__title {
    font-size: 32px;
    line-height: 1.25;
    margin-top: 8px;
  }

  .services-section__description {
    font-size: 15px;
    max-width: 540px;
  }

  .services-section__grid {
    gap: 40px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 52px;
  }

  .service-card {
    padding: 0 8px 32px;
  }

  .service-card + .service-card {
    border-top: 0;
    padding-top: 0;
  }

  .service-card:not(:last-child)::after {
    display: none;
  }

  .service-card:nth-child(odd)::after {
    display: block;
    height: 100%;
    right: -6px;
    top: 0;
  }

  .service-card:nth-child(n + 3) {
    border-top: 1px solid var(--color-secondary-400);
    padding-top: 40px;
  }

  .service-card__icon {
    height: 80px;
    width: 80px;
  }

  .service-card__icon img {
    height: 44px;
    width: 44px;
  }

  .service-card__title {
    font-size: 15px;
    line-height: 1.35;
    margin-block: 18px 10px;
    min-height: 40px;
    white-space: normal;
  }

  .service-card__description {
    font-size: 13px;
    line-height: 1.45;
    min-height: 58px;
  }

  .service-card__button {
    font-size: 13px;
    gap: 6px;
    margin-top: 18px;
  }

  .service-card__button svg {
    height: 20px;
    width: 20px;
  }

  .service-modal {
    max-height: calc(100vh - 32px);
    width: calc(100% - 32px);
  }

  .service-modal__content {
    gap: 32px;
    grid-template-columns: 1fr;
    height: auto;
    padding: 72px 24px 24px;
  }

  .service-modal__title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .service-modal__details {
    font-size: 14px;
    line-height: 1.55;
  }

  .service-modal__placeholder {
    max-width: 100%;
    width: 280px;
  }

  .contact-modal,
  .consultation-form-modal {
    max-height: calc(100vh - 32px);
    width: calc(100% - 32px);
  }

  .contact-modal__content {
    gap: 28px;
    grid-template-columns: 1fr;
    padding: 72px 24px 24px;
  }

  .contact-modal__main {
    gap: 28px;
  }

  .contact-modal__title,
  .contact-modal__subtitle {
    font-size: 18px;
  }

  .contact-modal__info-group h3,
  .contact-modal__intro,
  .contact-modal__info-group p,
  .contact-modal__links a {
    font-size: 14px;
  }

  .contact-modal__aside,
  .contact-modal__brand {
    width: 100%;
  }

  .contact-modal__brand {
    height: 180px;
    padding: 28px;
  }

  .contact-modal__brand img {
    max-height: 150px;
    width: min(100%, 160px);
  }

  .consultation-form-modal__content {
    gap: 22px;
    padding: 72px 24px 24px;
  }

  .consultation-form-modal__header {
    padding-right: 0;
  }

  .consultation-form-modal__header h2 {
    font-size: 20px;
  }

  .consultation-form-modal__header p {
    font-size: 14px;
  }

  .contact-modal__form-panel {
    gap: 22px;
    padding: 72px 24px 24px;
  }

  .contact-modal__form-header {
    padding-right: 0;
  }

  .contact-modal__form-header h2 {
    font-size: 20px;
  }

  .contact-modal__form-header p {
    font-size: 14px;
  }

  .projects-section {
    padding: 72px 16px;
  }

  .work-process-section {
    padding: 72px 16px 0;
  }

  .work-process-section__eyebrow {
    font-size: 16px;
  }

  .work-process-section__title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .work-process-section__description {
    font-size: 15px;
  }

  .work-process-section__steps {
    gap: 40px;
    margin-top: 52px;
  }

  .work-process-section__row {
    gap: 40px 12px;
  }

  .work-process-section__row--bottom .work-process-card:last-child {
    grid-column: 1 / -1;
  }

  .work-process-section__row--bottom .work-process-card:last-child::after {
    display: none;
  }

  .work-process-card {
    padding: 0 8px 28px;
  }

  .work-process-card:nth-child(odd)::after {
    right: -6px;
  }

  .work-process-card__icon {
    height: 80px;
    margin-bottom: 18px;
    padding: 18px;
    width: 80px;
  }

  .work-process-card__icon img {
    height: 44px;
    width: 44px;
  }

  .work-process-card__icon span {
    font-size: 12px;
    height: 34px;
    left: -10px;
    top: -8px;
    width: 34px;
  }

  .work-process-card__title {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 10px;
    min-height: 40px;
  }

  .work-process-card__description {
    font-size: 13px;
    line-height: 1.45;
  }

  .work-process-section__image {
    margin-top: 44px;
    width: calc(100% + 32px);
  }

  .customer-journey__story {
    min-height: 570px;
    padding: 72px 16px 56px;
  }

  .customer-journey__eyebrow {
    font-size: 16px;
  }

  .customer-journey__title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .customer-journey__description {
    font-size: 14px;
  }

  .customer-journey__slider {
    gap: 12px;
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    margin-top: 48px;
  }

  .customer-journey__avatar {
    height: 96px;
    width: 96px;
  }

  .customer-journey__slide h3 {
    font-size: 16px;
  }

  .customer-journey__slide blockquote {
    font-size: 13px;
  }

  .customer-journey__gallery {
    gap: 32px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 32px 8px;
  }

  .customer-journey__gallery figure {
    border-right: 0 !important;
    padding-inline: 8px;
  }

  .customer-journey__gallery figure:nth-child(even) {
    border-right: 0;
  }

  .customer-journey__gallery figcaption {
    font-size: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .media-section {
    min-height: 0;
    padding: 72px 16px;
  }

  .media-section__inner {
    gap: 52px;
  }

  .media-section__eyebrow {
    font-size: 16px;
  }

  .media-section__title {
    font-size: 32px;
    line-height: 1.3;
  }

  .media-section__description {
    font-size: 14px;
  }

  .media-section__logos {
    display: none;
  }

  .media-section__marquee {
    display: grid;
    gap: 32px;
    margin-inline: -16px;
    overflow: hidden;
  }

  .media-section__marquee-row {
    overflow: hidden;
  }

  .media-section__marquee-track {
    display: flex;
    gap: 36px;
    width: max-content;
  }

  .media-section__marquee-track--forward {
    animation: media-logo-forward 24s linear infinite;
  }

  .media-section__marquee-track--reverse {
    animation: media-logo-reverse 24s linear infinite;
  }

  .media-section__marquee-group {
    align-items: center;
    display: flex;
    gap: 36px;
  }

  .media-section__marquee-logo {
    align-items: center;
    display: flex;
    flex: 0 0 150px;
    height: 52px;
    justify-content: center;
  }

  .media-section__marquee-logo img {
    display: block;
    height: auto;
    max-height: 52px;
    max-width: 145px;
    object-fit: contain;
  }

  .projects-section__eyebrow {
    font-size: 16px;
  }

  .projects-section__title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 28px;
  }

  .projects-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .projects-tabs-shell {
    display: block;
  }

  .projects-tabs__navigation {
    display: none !important;
  }

  .projects-showcase {
    margin-top: 48px;
  }

  .project-showcase__navigation {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .project-showcase__nav {
    font-size: 0;
    gap: 0;
  }

  .project-showcase__title {
    font-size: 20px;
  }

  .project-showcase__summary {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .project-showcase__description {
    max-height: 142px;
  }

  .project-showcase__description,
  .project-showcase__description p,
  .project-showcase__fields dt,
  .project-showcase__fields dd {
    font-size: 14px;
  }

  .project-showcase__fields div {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .project-gallery {
    margin-top: 40px;
  }

  .project-gallery__stage {
    height: 390px;
  }

  .project-gallery__quick-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    min-height: 78px;
    width: calc(100% - 24px);
  }

  .project-gallery__quick-stats div {
    padding: 14px 12px;
  }

  .project-gallery__quick-stats div + div::before {
    height: calc(100% - 28px);
    top: 14px;
  }

  .project-gallery__quick-stats strong {
    font-size: 17px;
  }

  .project-gallery__quick-stats span {
    font-size: 12px;
  }

  .project-gallery__thumbnails {
    gap: 8px;
    grid-auto-columns: calc((100% - 32px) / 5);
  }

  .project-gallery__rail {
    margin-top: 16px;
  }

  .project-lightbox {
    height: calc(100% - 16px);
    width: calc(100% - 16px);
  }

  .project-lightbox__content {
    padding: 52px 8px 48px;
  }

  .project-lightbox__close,
  .project-lightbox__navigation {
    height: 40px;
    width: 40px;
  }

  .project-lightbox__close {
    right: 4px;
    top: 4px;
  }

  .project-lightbox__navigation--previous {
    left: 4px;
  }

  .project-lightbox__navigation--next {
    right: 4px;
  }
}

@media (max-width: 1199px) {
  .site-footer__navigation-inner {
    gap: clamp(48px, 8vw, 100px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 20px;
  }

  .site-footer__main-inner {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) 380px;
    padding: 48px 20px 56px;
  }

  .footer-consultation {
    width: 380px;
  }

  .site-footer__contact-row {
    grid-template-columns: 96px minmax(0, 1fr) !important;
  }

  .site-footer__contact-row a:nth-of-type(n + 2) {
    grid-column: 2;
  }
}

@media (max-width: 1023px) {
  .content-hero {
    min-height: 420px;
    padding: 140px 0 64px;
  }

  .content-hero__title {
    font-size: clamp(38px, 6vw, 54px);
  }

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

  .single-post-layout {
    gap: 48px;
    grid-template-columns: 1fr;
    max-width: 800px;
  }

  .single-post-sidebar {
    grid-template-columns: minmax(0, 1fr) 260px;
    position: static;
  }

  .post-toc ol {
    max-height: 260px;
  }

  .project-detail-overview__grid {
    gap: 48px;
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .project-detail-gallery {
    grid-auto-rows: 210px;
  }

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

  .project-archive-card,
  .project-archive-card:nth-child(n) {
    grid-column: auto;
  }

  .service-page-intro__grid {
    gap: 44px;
    grid-template-columns: 220px minmax(0, 1fr);
  }

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

  .service-benefit-card {
    border-bottom: 1px solid rgb(255 255 255 / 18%);
    min-height: 220px;
  }

  .service-page-process__list {
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-archive-toolbar {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .services-directory-intro__grid {
    gap: 52px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .services-directory-card {
    grid-template-columns: 1fr;
  }

  .services-directory-card__media {
    aspect-ratio: 16 / 10;
  }

  .services-directory-standard {
    min-height: 580px;
  }

  .archive-content,
  .single-article-section {
    padding-block: 88px;
  }

  .site-footer__main-inner {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .footer-consultation {
    justify-self: start;
    width: 412px;
  }
}

@media (max-width: 767px) {
  .content-hero {
    min-height: 380px;
    padding: 128px 0 52px;
  }

  .content-hero__title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.22;
  }

  .content-hero__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .content-hero__meta > * + *::before {
    display: none;
  }

  .content-breadcrumb {
    flex-wrap: wrap;
  }

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

  .blog-toolbar {
    gap: 18px;
    margin: -104px 0 52px;
    padding: 20px 18px;
  }

  .blog-search {
    gap: 10px;
    grid-template-columns: 20px minmax(0, 1fr);
    padding-bottom: 16px;
  }

  .blog-search button {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
  }

  .blog-search input[type="search"] {
    font-size: 14px;
  }

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

  .post-consultation-card {
    display: none;
  }

  .single-article--editorial {
    box-shadow: 0 18px 45px rgb(72 50 19 / 8%);
    padding: 30px 20px;
  }

  .single-article__lead {
    font-size: 17px;
  }

  .archive-content,
  .single-article-section {
    padding-block: 64px;
  }

  .single-article__content {
    font-size: 15px;
  }

  .single-article__content h2 {
    font-size: 25px;
  }

  .single-article__content h3 {
    font-size: 21px;
  }

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

  .post-navigation .nav-next {
    text-align: left;
  }

  .related-content-section {
    padding: 72px 0 80px;
  }

  .related-content-section__header h2 {
    font-size: 28px;
  }

  .content-hero--project-archive,
  .content-hero--project-detail {
    min-height: 460px;
  }

  .project-archive-section,
  .project-detail-overview,
  .project-detail-gallery-section {
    padding-block: 72px;
  }

  .project-archive-filters {
    gap: 24px;
    margin-bottom: 44px;
  }

  .project-archive-toolbar {
    margin: -106px 0 44px;
    padding: 22px 18px;
  }

  .project-archive-search {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .project-archive-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .project-archive-grid {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .project-archive-card,
  .project-archive-card:nth-child(n) {
    grid-column: auto;
  }

  .project-archive-card h2 {
    font-size: 26px;
  }

  .project-archive-card__body {
    margin: -28px 10px 0;
    padding: 22px 20px 24px;
  }

  .project-archive-card__overlay {
    inset: 14px 14px auto;
  }

  .project-archive-card__facts {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .project-detail-overview__grid {
    grid-template-columns: 1fr;
  }

  .project-detail-facts {
    box-shadow: 12px 12px 0 rgb(187 149 98 / 18%);
  }

  .project-detail-gallery-section__header {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .project-detail-gallery-section__header > p {
    grid-column: auto;
  }

  .project-detail-gallery {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-detail-gallery__item,
  .project-detail-gallery__item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-detail-gallery__item:first-child {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .project-gallery__quick-stats {
    grid-template-columns: 1fr;
    max-width: max-content;
    min-height: 0;
    width: calc(100% - 24px);
    background: rgb(255 255 255 / 70%);
    backdrop-filter: blur(8px);
  }

  .project-gallery__quick-stats div {
    padding: 10px 14px;
  }

  .project-gallery__quick-stats div + div {
    border-top: 1px solid rgb(121 121 121 / 20%);
  }

  .project-gallery__quick-stats div + div::before {
    display: none;
  }

  .service-page-hero {
    min-height: 480px;
  }

  .service-page-title,
  .service-page-hero .content-hero__title {
    font-size: 32px;
  }

  .service-page-intro,
  .service-page-benefits,
  .service-page-process {
    padding-block: 72px;
  }

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

  .service-page-nav {
    position: static;
  }

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

  .service-benefit-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .service-benefit-card h3 {
    margin-top: 18px;
  }

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

  .service-page-process__list li {
    gap: 14px;
    min-height: 0;
  }

  .service-page-closing {
    padding: 64px 0;
  }

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

  .service-page-closing button {
    justify-self: start;
  }

  .services-directory-hero {
    min-height: 500px;
  }

  .services-directory-intro {
    padding-top: 72px;
  }

  .services-directory-intro__grid,
  .services-directory-grid,
  .services-directory-standard {
    grid-template-columns: 1fr;
  }

  .services-directory-menu {
    margin-top: 52px;
  }

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

  .services-directory-menu__list a {
    border-bottom: 1px solid rgb(143 106 57 / 20%);
    min-height: 68px;
  }

  .services-directory-grid-section {
    padding-block: 72px;
  }

  .services-directory-card__body {
    padding: 26px 22px;
  }

  .services-directory-standard__image {
    min-height: 360px;
  }

  .services-directory-standard__copy {
    padding: 64px 16px;
  }

  .error-page__hero {
    min-height: 720px;
    padding: 130px 0 80px;
  }

  .error-page__architecture span {
    right: -45vw;
  }

  .error-page__links {
    gap: 12px 22px;
  }

  .site-footer__navigation-inner {
    gap: 40px;
    grid-template-columns: 1fr;
    padding: 56px 16px;
  }

  .site-footer__column h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .site-footer__main-inner {
    gap: 48px;
    padding: 48px 16px 56px;
  }

  .site-footer__company {
    gap: 0;
  }

  .site-footer__identity {
    gap: 32px;
  }

  .site-footer__details {
    gap: 12px;
  }

  .site-footer__details p,
  .site-footer__contact-row {
    align-items: start;
    gap: 4px;
    grid-template-columns: 1fr !important;
  }

  .site-footer__details p > span {
    color: var(--color-primary-300);
    font-weight: 600;
  }

  .site-footer__contact-row a:nth-of-type(n + 2) {
    grid-column: 1;
  }

  .site-footer__certifications {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }

  .site-footer__socials {
    margin-top: 32px;
  }

  .footer-consultation {
    min-height: 0;
    padding: 20px;
    width: 100%;
  }

  .footer-consultation__header h2 {
    font-size: 22px;
  }

  .footer-consultation__form .ff-t-container,
  .consultation-form-modal__form .ff-t-container {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-navigation,
  .menu-backdrop,
  .menu-toggle__line,
  .primary-navigation a::after {
    transition-duration: 0.01ms;
  }

  .service-card__button,
  .service-card__button svg {
    transition-duration: 0.01ms;
  }

  .projects-tabs__button,
  .project-showcase__nav,
  .project-gallery__thumbnail {
    transition-duration: 0.01ms;
  }

  .media-section__marquee-row {
    overflow-x: auto;
  }

  .media-section__marquee-track {
    animation: none;
    transform: none !important;
  }

  .media-section__marquee-group + .media-section__marquee-group {
    display: none;
  }
}
