:root {
  /* ===== COLORS ===== */
  --black: #1e1c1a;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --warm-white: #f5f3ef;
  --orange: #ba7b2f;
  --orange-dark: #eb9412;
  --flint: #6b6560;
  --stone: #a39d96;
  --line: #ede9e3;
  --blue: #003053;
  --muted: rgba(255, 255, 255, 0.8);
  --overlay-soft: rgba(20, 18, 16, 0.15);
  --overlay-strong: rgba(20, 18, 16, 0.85);

  /* ===== SIZING ===== */
  --container: 1280px;
  --wide-container: 1440px;
  --header-height: 80px;
  --header-height-scroll: 68px;
  --radius-lg: 10px;
  --radius-pill: 100px;
  --border-radius: 0px;

  /* ===== TYPE ===== */
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ===== TRANSITIONS ===== */
  --transition: 180ms ease;
  --transition-long: 280ms ease;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  min-width: 320px;
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

body.is-menu-open main {
  padding-top: var(--menu-header-height, var(--header-height));
}

body.is-menu-open .site-header.is-scroll {
  backdrop-filter: none;
  transition-property: height, box-shadow, background-color;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote {
  margin-block: 0;
}

ul,
ol {
  padding-left: 1.25em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  font-weight: 400;
  letter-spacing: -0.03em;
}

h1 {
    font-size: 40px;
    line-height: 1.1;
}

h2 {
  font-size: 36px;
  line-height: 1.15;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

h4 {
  font-size: 18px;
  line-height: 1.3;
}

h5,
h6 {
  font-size: 15px;
  line-height: 1.4;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 700;
}

p, main li {
    color: var(--flint);
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

ul,
ol {
  display: grid;
  gap: 0.45em;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--flint);
  background: var(--white);
  font-size: 12px;
  line-height: 19.5px;
}

thead {
  background: rgba(163, 157, 150, 0.2);
}

th,
td {
  height: 30px;
  border-bottom: 1px solid #edebea;
  padding: 5px 10px;
  font-weight: 400;
  text-align: left;
  /*white-space: nowrap;
  */
}

thead th {
  height: 40px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

tbody td {
  text-align: center;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.container {
  width: min(100% - 60px, var(--container));
  margin-inline: auto;
}
@media (max-width: 992px) {
	.container {
		width: min(100% - 30px, var(--container));
	}
}

.full-container {
  width: min(calc(100% - 20px), var(--wide-container));
  margin-inline: auto;
}

.stats__cards,
.benefits__cards,
.projects__list,
.reviews__list,
.realizations__list,
.process__cards {
  box-sizing: border-box;
  --mobile-scroll-gap: 10px;
  --mobile-scroll-bleed-right: 30px;
  --mobile-card-width: calc((100% - var(--mobile-scroll-gap)) * 0.75);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.14px;
    white-space: nowrap;
    transition: background-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
@media (max-width: 992px) {
	.button {
		min-height: 40px;
		padding: 10px 18px;
		letter-spacing: -.5px;
	}
}
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--orange-dark);
}

.button--secondary {
    color: var(--white);
    background: var(--stone);
}

.hero .button--secondary {
  color: var(--black);
  background: var(--white);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  color: var(--white);
  background: var(--black);
}

.button--muted {
    background: none;
    padding-left: 0 !important;
    width: unset !important;
}

.button--muted:hover {
    background: none !important;
}

.button--muted:hover,
.button--muted:focus-visible {
  background: var(--black);
}

.button--with-icon {
  padding-block: 5px;
  padding-right: 5px;
}

.button--with-icon img {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  border-radius: 50%;
  padding: 13px;
  background: var(--white);
  object-fit: contain;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  color: var(--flint);
  background: var(--line);
  font-size: 11px;
  font-weight: 600;
  line-height: 16.5px;
}

.badge.is-accent {
  color: var(--orange);
  background: #fef3e2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-current-height, var(--header-height));
  background: rgba(255, 255, 255, 0.92);
  transition: height var(--transition-long), box-shadow var(--transition), background-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scroll {
  --header-current-height: var(--header-height-scroll);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(30, 28, 26, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-logo {
  position: relative;
  z-index: 65;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-logo > span {
  position: relative;
  display: block;
  width: 144px;
  height: auto;
  overflow: visible;
  line-height: 0;
  transition: width var(--transition-long), height var(--transition-long), transform var(--transition-long);
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-header.is-scroll .site-logo > span {
  width: 130px;
}

.site-header__actions {
  position: relative;
  z-index: 65;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__actions .button {
  display: none;
}

.phone-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  color: var(--orange);
  background: var(--warm-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition);
}

.phone-pill:hover,
.phone-pill:focus-visible {
  color: var(--white);
  background: var(--orange);
}

.icon-button {
  display: none;
}

.icon-button::before {
  content: none;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.icon-button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  color: var(--black);
  background: transparent;
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform var(--transition), top var(--transition), opacity var(--transition);
}

.nav-toggle::before {
  top: 6px;
}

.nav-toggle span {
  top: 14px;
}

.nav-toggle::after {
  top: 22px;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 14px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  top: 14px;
  transform: rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  right: auto;
  left: 50%;
  z-index: 60;
  width: 100vw;
  max-height: calc(100dvh - var(--header-current-height, var(--header-height)) - 20px);
  overflow: auto;
  padding: 20px;
  background: white;
  color: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity var(--transition), transform var(--transition);
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.menu,
.sub-menu {
  list-style: none;
  padding-left: 0;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-item {
  position: relative;
}

.menu-item > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 12px;
  padding: 10px 46px 10px 12px;
  font-size: 15px;
  line-height: 22px;
  transition: background-color var(--transition), color var(--transition);
}

.menu-item > a:hover,
.menu-item > a:focus-visible {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
}

.sub-menu-toggle {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  transition: background-color var(--transition), transform var(--transition);
}

.sub-menu-toggle img {
  width: 12px;
  height: 7px;
  transition: transform var(--transition);
}

.sub-menu-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.menu-item.is-open > .sub-menu-toggle img {
  transform: rotate(180deg);
}

.sub-menu {
  display: none;
  max-height: none;
  overflow: visible;
  padding-left: 12px;
}

.menu-item.is-open > .sub-menu {
  display: block;
}

.sub-menu .menu-item > a {
  min-height: 40px;
  font-size: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius-pill);
  padding: 0;
  color: var(--flint);
  background: transparent;
  backdrop-filter: none;
  font-size: 11px;
  font-weight: 600;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow span:first-child {
  width: 20px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--orange);
}

.eyebrow.is-glass {
  padding: 5px 20px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(20, 18, 16, 0.15);
  backdrop-filter: blur(4px);
}

.section-heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.section-heading h2 {
  max-width: 342px;
}

.section-heading h2 strong {
  display: block;
}

.hero {
  position: relative;
  --hero-content-width: min(100% - 40px, var(--container));
  display: block;
  height: min(calc(100svh - var(--header-height) - 60px), 800px);
  max-height: 800px;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--black);
  clip-path: inset(0 round var(--radius-lg));
  isolation: isolate;
  transform: translateZ(0);
}

.hero__list,
.hero__slide {
  height: 100%;
}

.hero.is-fallback .hero__list {
  display: flex;
  transition: transform 700ms ease;
  will-change: transform;
}

.hero__slide {
  position: relative;
  display: flex;
  flex: 0 0 100%;
  height: 100%;
  width: 100%;
  align-items: flex-end;
  overflow: visible;
  border-radius: 0;
  clip-path: none;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img,
video.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
    background: linear-gradient(0deg, rgba(20, 18, 16, 0.85) 0%, rgba(20, 18, 16, 0.6) 30%, rgba(20, 18, 16, 0.15) 100%);
    opacity: 0.75;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--hero-content-width);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-inline: auto;
  padding: 0 0 32px;
}

.hero h1 {
  max-width: 342px;
  color: var(--off-white);
}

.hero h1 strong {
  display: block;
}

.hero__price p {
  color: var(--off-white);
  font-size: 30px;
  font-weight: 500;
  line-height: 51.52px;
  letter-spacing: -1.38px;
}

.hero__price strong {
    color: var(--orange-dark);
    font-size: 40px;
    font-weight: 700;
}

.hero__copy {
    max-width: 360px;
    margin-bottom: 10px;
}

.hero__copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.15px;
}

.hero__actions {
  display: flex;
  width: 100%;
  gap: 10px;
}

.hero__actions .button {
  flex: 0 1 auto;
}

/*
.hero__actions .button--primary {
  width: 185px;
}

.hero__actions .button--secondary {
  width: 147px;
}
*/

.media-text {
  position: relative;
  overflow: hidden;
  padding: 49px 0 27px;
  background: var(--off-white);
}

.media-text__decor {
  position: absolute;
  top: -20px;
  right: calc(((100vw - min(100% - 60px, var(--container))) / 2) - 105px);
  width: 210px;
  height: 210px;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
}

.media-text__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}

.media-text__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.media-text__body {
  width: 100%;
}

.media-text__content .section-heading + .media-text__body {
  margin-top: 18px;
}

.media-text__body.is-wysiwyg > :first-child {
  margin-top: 0;
}

.is-wysiwyg > h1 + p,
.is-wysiwyg > h2 + p,
.is-wysiwyg > h3 + p,
.is-wysiwyg > h4 + p,
.is-wysiwyg > h5 + p,
.is-wysiwyg > h6 + p {
  margin-top: 12px;
}

.is-wysiwyg > p + p {
  margin-top: 12px;
}

.is-wysiwyg > p + ul,
.is-wysiwyg > p + ol,
.is-wysiwyg > p + table,
.is-wysiwyg > p + .table,
.is-wysiwyg > p + .comparison-table,
.is-wysiwyg > p + .table-scroll {
  margin-top: 30px;
}

.feature-list {
  width: 100%;
  margin-top: 30px;
}

.feature-list ul,
.is-wysiwyg > ul,
.is-wysiwyg > ol {
  display: grid;
  gap: 0;
  list-style: none;
  padding-left: 0;
}

.is-wysiwyg > ul,
.is-wysiwyg > ol {
  width: 100%;
  margin-top: 30px;
}

.feature-list li {
  display: grid;
  min-height: 44px;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--flint);
  font-size: 14px;
  line-height: 20px;
}

.is-wysiwyg > ul > li,
.is-wysiwyg > ol > li {
  position: relative;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 10px 34px;
  color: var(--flint);
  font-size: 14px;
  line-height: 20px;
}

.feature-list li p {
  min-width: 0;
}

.feature-list li::before,
.is-wysiwyg > ul > li::before,
.is-wysiwyg > ol > li::before {
  width: 24px;
  height: 24px;
  background: url("../img/icon-check.svg") center / 24px 24px no-repeat;
  content: "";
}

.is-wysiwyg > ul > li::before,
.is-wysiwyg > ol > li::before {
  position: absolute;
  top: 10px;
  left: 0;
}

.feature-list strong,
.is-wysiwyg > ul strong,
.is-wysiwyg > ol strong {
  font-weight: 700;
}

.table,
.comparison-table,
.is-wysiwyg table {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
}

.table,
.comparison-table {
  margin-top: 35px;
}

.table-scroll {
  width: 100%;
  margin-top: 35px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  min-width: 480px;
}

.table table,
.comparison-table table,
.is-wysiwyg table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
}

.comparison-table tbody th,
.is-wysiwyg table tbody th {
  width: 33%;
}

.is-wysiwyg table th, .is-wysiwyg table td {
    padding-inline: 10px;
    text-align: left;
}

.is-wysiwyg table thead th {
  text-align: left;
}

.is-wysiwyg table thead th:first-child {
  width: 33%;
  border-top-left-radius: var(--border-radius);
}

.is-wysiwyg table thead th:last-child {
  border-top-right-radius: var(--border-radius);
}

.is-wysiwyg table th:not(:first-child),
.is-wysiwyg table td:not(:first-child) {
  border-left: 1px solid #edebea;
}

.comparison-table tbody tr:last-child td,
.is-wysiwyg table tbody tr:last-child td {
  text-align: left;
}

.media-text__actions {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-top: 24px;
}

.media-text__actions .button {
  min-height: 45px;
}

.media-text__actions .button--muted {
  width: 141px;
}

.media-text__actions .button--primary {
  width: 185px;
}

.media-card {
  position: relative;
  min-height: 306px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--black);
}

/*
.media-card::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
}
*/

.media-card > img:first-child {
  width: 100%;
  height: 100%;
  min-height: 306px;
  object-fit: cover;
}

.media-card > img:nth-child(2) {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  width: 128px;
  height: auto;
}

.media-card figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: var(--radius-pill);
  padding: 5px 20px 5px 15px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(20, 18, 16, 0.3);
  backdrop-filter: blur(4px);
  font-size: 12px;
  font-weight: 600;
  line-height: 16.5px;
  letter-spacing: 0.132px;
}

.media-card figcaption span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.stats {
  padding: 40px 0 60px;
  background: var(--off-white);
}

.stats__inner {
  display: grid;
  gap: 28px;
}

.stats__cards {
  display: flex;
  width: calc(100% + var(--mobile-scroll-bleed-right));
  gap: var(--mobile-scroll-gap);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ede9e3;
  scrollbar-width: thin;
}

.stats__cards::-webkit-scrollbar {
  height: 5px;
}

.stats__cards::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #ede9e3;
}

.stats__cards::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--orange);
}

.stat-card {
  display: flex;
  width: var(--mobile-card-width);
  min-height: 165px;
  flex: 0 0 var(--mobile-card-width);
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  background: var(--white);
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
}

.stat-card > div {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--warm-white);
}

.stat-card > div img {
  width: 18px;
  height: 18px;
}

.stat-card p:nth-of-type(1) {
  color: var(--orange);
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -.75px;
}

.stat-card p:nth-of-type(1) strong {
  font-size: 38px;
}

.stat-card p:nth-of-type(1) span {
  font-size: 24px;
}

.stat-card p:nth-of-type(2) {
  color: var(--flint);
  font-size: 14px;
  line-height: 18px;
  min-height: 3em;
}
@media (max-width: 992px) {
	.stat-card p:nth-of-type(1) {
		margin: 10px 0 5px 0;
	}	
	.stat-card p:nth-of-type(1) span {
		font-size: 20px;
	}
}

.stat-card--link {
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.stat-card--link:hover,
.stat-card--link:focus-visible {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.benefits {
  padding: 50px 0 80px;
  background: var(--white);
}

.benefits__inner {
  display: grid;
  gap: 30px;
}

.benefits__cards {
  display: flex;
  width: calc(100% + var(--mobile-scroll-bleed-right));
  gap: var(--mobile-scroll-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ede9e3;
  scrollbar-width: thin;
}

.benefits__cards::-webkit-scrollbar {
  height: 5px;
}

.benefits__cards::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #ede9e3;
}

.benefits__cards::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--orange);
}

.benefit-card {
  display: flex;
  width: var(--mobile-card-width);
  height: 180px;
  flex: 0 0 var(--mobile-card-width);
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  color: var(--white);
  background: var(--stone);
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
}

.benefit-card > div {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--orange);
}

.benefit-card > div img {
  width: 18px;
  height: 18px;
}

.benefit-card h3 {
  max-width: 258px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.5px;
}

.benefit-card p {
  max-width: 221px;
  margin-top: auto;
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
}

.projects {
  --project-card-shadow-bleed: 16px;
  padding: 0 0 80px;
  background: var(--white);
}

.projects__inner {
  display: grid;
  min-width: 0;
  gap: 30px;
}

.projects__carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.projects__list {
  display: flex !important;
  width: calc(100% + var(--mobile-scroll-bleed-right));
  align-items: flex-start;
  gap: var(--mobile-scroll-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: calc(var(--project-card-shadow-bleed) + 14px);
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ede9e3;
  scrollbar-width: thin;
}

.projects__list::-webkit-scrollbar {
  height: 5px;
}

.projects__list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #ede9e3;
}

.projects__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--orange);
}

.project-card {
  width: var(--mobile-card-width);
  flex: 0 0 var(--mobile-card-width);
  height: auto;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
}

.project-card a {
  display: flex;
  min-height: 429px;
  flex-direction: column;
  overflow: hidden;
  border-radius: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card a:hover,
.project-card a:focus-visible {
  box-shadow: 0 8px 24px rgba(30, 28, 26, 0.12);
  transform: translateY(-2px);
}

.project-card figure {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--line);
}

.project-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-long);
}

.project-card a:hover figure img,
.project-card a:focus-visible figure img {
  transform: scale(1.035);
}

.project-card a > div {
  position: relative;
  display: flex;
  min-height: 211px;
  flex: 0 0 211px;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.project-card h3 {
  margin-top: 14px;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.5px;
}

.project-card h3 + p {
  margin-top: 2px;
  color: var(--flint);
  font-size: 13px;
  line-height: 19.5px;
}

.project-card h3 + p span {
  color: var(--line);
}

.project-card a > div > div:last-of-type {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 17px;
}

.project-card a > div > div:last-of-type p:first-child {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.66px;
}

.project-card a > div > div:last-of-type strong {
  color: var(--orange);
  font-size: 22px;
  font-weight: 800;
}

.project-card a > div > div:last-of-type p:last-child {
  color: var(--stone);
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 0.22px;
}

.project-card a > div > span {
  position: absolute;
  right: 15px;
  bottom: 17px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  transition: background-color var(--transition), transform var(--transition);
}

.project-card a:hover > div > span,
.project-card a:focus-visible > div > span {
  background: var(--orange-dark);
  transform: translateX(2px);
}

.project-card a > div > span img {
  width: 11px;
  height: 11px;
}

.projects__controls {
  display: none;
}

.project-nav {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  transition: background-color var(--transition), opacity var(--transition), transform var(--transition);
}

.project-nav:hover,
.project-nav:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.project-nav.is-prev img {
  transform: rotate(180deg);
}

.project-nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.split-carousel {
  display: grid;
  min-width: 0;
  gap: 30px;
}

.split-carousel__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;  
}
@media (min-width: 992px) {
	.split-carousel__content {
		padding-right: 30px;
	}
}

.carousel-controls {
  display: none;
}

.carousel-arrow {
  display: inline-flex;
  width: 41px;
  height: 41px;
  flex: 0 0 41px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(107, 101, 96, 0.35);
  color: var(--white);
  transition: background-color var(--transition), opacity var(--transition), transform var(--transition);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--orange);
  transform: translateY(-1px);
}

.carousel-arrow.is-prev img {
  transform: rotate(180deg);
}

.carousel-arrow.swiper-button-disabled {
  opacity: 0.45;
}

.carousel-progress {
  position: relative;
  width: 200px;
  height: 2px;
  flex: 0 0 200px;
  overflow: hidden;
  background: rgba(163, 157, 150, 0.3);
}

@media (max-width: 992px) {
	.carousel-progress {
		top: 19px;
	}
}

.carousel-progress::before {
  position: absolute;
  inset: 0;
  background: var(--orange);
  content: "";
  transform: scaleX(var(--carousel-progress, 0));
  transform-origin: left center;
  transition: transform var(--transition-long);
}

.reviews {
  --review-card-shadow-bleed: 12px;
  padding: 60px 0;
  background: var(--off-white);
}

.reviews .split-carousel__content .button {
  margin-top: 28px;
}

.reviews__carousel,
.realizations__carousel {
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.reviews__list,
.realizations__list {
  display: flex !important;
  width: calc(100% + var(--mobile-scroll-bleed-right));
  align-items: flex-start;
  gap: var(--mobile-scroll-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: calc(var(--review-card-shadow-bleed, 0px) + 14px);
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) #ede9e3;
  scrollbar-width: thin;
}

.reviews__list {
  --mobile-card-width: 75%;
}

.reviews__list::-webkit-scrollbar,
.realizations__list::-webkit-scrollbar {
  height: 5px;
}

.reviews__list::-webkit-scrollbar-track,
.realizations__list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #ede9e3;
}

.reviews__list::-webkit-scrollbar-thumb,
.realizations__list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--orange);
}

.review-card {
  display: flex;
  width: var(--mobile-card-width);
  height: 295px;
  flex: 0 0 var(--mobile-card-width);
  flex-direction: column;
  gap: 8px;
  border-radius: var(--radius-lg);
  padding: 31px 28px 32px;
  background: var(--white);
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
}

.reviews__carousel .review-card {
  overflow: hidden;
}

.rating {
  color: var(--orange);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 1px;
}

.review-card > div:nth-of-type(2) {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 5px;
}

.reviews__carousel .review-card > div:nth-of-type(2) {
  overflow: hidden;
}

.review-card > div:nth-of-type(2) p {
  color: rgba(30, 28, 26, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.reviews__carousel .review-card > div:nth-of-type(2) p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-card > div:nth-of-type(2) button {
  align-self: flex-start;
  border: 0;
  padding: 0;
  color: rgba(30, 28, 26, 0.6);
  background: transparent;
  font-size: 14px;
  line-height: 24px;
  transition: color var(--transition);
}

.review-card > div:nth-of-type(2) button:hover,
.review-card > div:nth-of-type(2) button:focus-visible {
  color: var(--orange);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.review-author__avatar {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author__initials {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.review-author > div:last-child p:first-child {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.review-author > div:last-child p:last-child {
  color: rgba(30, 28, 26, 0.4);
  font-size: 12px;
  line-height: 18px;
}

.realizations {
  padding: 42px 0 70px;
  background: var(--black);
}

.section-heading.is-inverted h2 {
  color: var(--off-white);
}

.section-heading.is-inverted .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.realizations .split-carousel__content .button {
  margin-top: 28px;
}

.realizations__list {
  scrollbar-color: var(--orange) rgba(255, 255, 255, 0.2);
}

.realization-card {
  width: var(--mobile-card-width);
  height: 362px;
  flex: 0 0 var(--mobile-card-width);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--black);
  scroll-snap-align: start;
}

.realization-card a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.realization-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-long);
}

.realization-card a:hover img,
.realization-card a:focus-visible img {
  transform: scale(1.035);
}

.realization-card a::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(20, 18, 16, 0.8) 0%, rgba(20, 18, 16, 0) 100%);
  content: "";
}

.realization-card div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}

.realization-card h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 19.5px;
}

.realization-card p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 16.5px;
}

.realizations .button--muted {
    color: white;
}

.reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.reviews-modal[hidden] {
  display: none;
}

.reviews-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.72);
}

.reviews-modal__panel {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 768px);
    max-height: min(80dvh, 1200px);
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.reviews-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
}

.reviews-modal__close {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--warm-white);
  transition: background-color var(--transition);
}

.reviews-modal__close::before,
.reviews-modal__close::after {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--black);
  content: "";
}

.reviews-modal__close::before {
  transform: rotate(45deg);
}

.reviews-modal__close::after {
  transform: rotate(-45deg);
}

.reviews-modal__close:hover,
.reviews-modal__close:focus-visible {
  background: var(--line);
}

.reviews-modal__list {
    display: grid;
    gap: 16px;
    overflow-y: auto;
    padding: 20px 10px 20px;
    scroll-behavior: smooth;
}

/* Globalny modal "Skontaktuj się z nami" (formularz CF7) - patrz footer.php i main.js. */
.quick-contact-mask {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--overlay-strong);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.quick-contact-mask.on {
  opacity: 1;
  visibility: visible;
}

.quick-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  text-align: center;
}

.quick-contact-modal.on {
  opacity: 1;
  visibility: visible;
}

.quick-contact-modal .card {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  background: var(--white);
  box-shadow: 0 30px 60px -20px rgba(20, 18, 16, 0.5);
}

.quick-contact-modal .card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.quick-contact-modal .card h3 em {
	font-weight: 800;
	font-style: normal;
	color: var(--orange-dark);
}
.quick-contact-modal .person {
	display: flex;
	margin: 10px auto;
	align-items: center;
	width: 250px;
}
.quick-contact-modal .person .image {
	flex: 0 0 100px;
}
.quick-contact-modal .person .image img {
	overflow: hidden;
	border-radius: var(--radius-lg);
}
.quick-contact-modal .person .desc {
	flex: 0 0 150px;
	padding-left: 10px;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
}
.quick-contact-modal .person .desc a {
	font-size: 20px;
	color: var(--orange);
}
.quick-contact-modal input[type="text"],
.quick-contact-modal textarea {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 15px 17px;
    color: var(--black);
    background: var(--off-white);
    font-size: 15px;
    line-height: 1.4;
    transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
    height: 50px;
}
.quick-contact-modal textarea {
	height: 80px;
}

.quick-contact-modal .card > p {
  color: var(--flint);
  margin-bottom: 18px;
}

.quick-contact-modal .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--flint);
  cursor: pointer;
}

.quick-contact-modal .close-btn svg {
  width: 20px;
  height: 20px;
}
.quick-contact-modal .form-consent {
	font-size: 11px;
	text-align: left;
}

.reviews-modal .review-card.is-full {
    display: flex;
    width: 100%;
    height: auto !important;
    min-height: auto !important;
    flex: none !important;
    flex-basis: auto !important;
    gap: 15px;
    overflow: visible;
    padding: 25px 20px;
    scroll-margin-top: 16px;
}

.reviews-modal .review-card.is-full > div:nth-of-type(2) {
  display: block;
  min-height: 0;
}

.reviews-modal .review-card.is-full > div:nth-of-type(2) p {
  max-width: none;
  overflow-wrap: anywhere;
}

.reviews-modal .review-card.is-full .review-author {
  margin-top: 0;
  padding-top: 0;
}

.process {
  padding: 48px 0 50px;
  background: var(--off-white);
}

.process__intro {
  display: grid;
  gap: 24px;
}

.process__copy {
  max-width: 599px;
}

.process__copy p {
  color: var(--flint);
  font-size: 16px;
  line-height: 24px;
}

.process__cards {
  display: flex;
  width: calc(100% - var(--mobile-scroll-bleed-right));
  margin-right: 0;
  margin-left: var(--mobile-scroll-bleed-right);
  gap: var(--mobile-scroll-gap);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  padding-top: 48px;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) var(--line);
  scrollbar-width: thin;
}

.process__cards.container {
  margin-right: 0;
  margin-left: var(--mobile-scroll-bleed-right);
}

.process__cards::-webkit-scrollbar {
  height: 5px;
}

.process__cards::-webkit-scrollbar-track {
  border-radius: 999px;
  background: var(--line);
}

.process__cards::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--orange);
}

.process-card {
  display: flex;
  width: var(--mobile-card-width);
  height: 350px;
  flex: 0 0 var(--mobile-card-width);
  flex-direction: column;
  justify-content: flex-start;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
}
.process.autosize .process-card {
	height: auto;
	flex-direction: flex-start;
}

.process-card > p {
  color: var(--line);
  font-size: 72px;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: 0;
  margin-bottom: 15px;
}

.process-card > div {
  display: grid;
  gap: 10px;
}

.process-card > div > p:first-child {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  letter-spacing: 0.88px;
  text-transform: uppercase;
}

.process-card h3 {
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

.process-card > div > p:last-child {
  color: rgba(30, 28, 26, 0.6);
  font-size: 14px;
  line-height: 20px;
}

.process-card .badge {
  align-self: flex-start;
  position: absolute;
  left: 15px;
  bottom: 20px;
}

.faq {
  padding: 0 0 60px;
  background: var(--off-white);
}

.faq__inner {
  display: grid;
  gap: 36px;
}

.section-heading.is-centered {
  max-width: 383px;
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
  display: flex;
  min-height: 61px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  transition: transform var(--transition);
}

.faq-item[open] summary img {
  transform: rotate(180deg);
}

.faq-item__content {
  height: 0;
  overflow: hidden;
  transition: height var(--transition-long);
}

.faq-item[open] .faq-item__content {
  height: auto;
}

.faq-item p {
  max-width: 640px;
  padding: 0 20px 22px;
  font-size: 14px;
  line-height: 20px;
}

.eyebrow.is-plain {
  justify-content: center;
  color: var(--orange);
  text-align: center;
}

.eyebrow.is-plain span:first-child {
  display: none;
}

.eyebrow.is-plain span:first-child:last-child {
  display: block;
  width: auto;
  height: auto;
  flex: initial;
  border-radius: 0;
  background: transparent;
}

.final-cta {
  background: var(--off-white);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.final-cta__box {
  position: relative;
  display: grid;
  min-height: 589px;
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
}

.final-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  opacity: 0.4;
  object-fit: cover;
}

.final-cta__box::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(20, 18, 16, 0.43) 0%, rgba(20, 18, 16, 0.3) 50%, rgba(20, 18, 16, 0.08) 100%);
  content: "";
}

.final-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - 40px, 467px);
  flex-direction: column;
  align-items: center;
  padding: 64px 0 32px;
  text-align: center;
}

.final-cta h2 {
  max-width: 342px;
  color: var(--off-white);
  font-size: 46px;
  font-weight: 700;
  line-height: 51.52px;
  letter-spacing: 0;
}

.final-cta .eyebrow {
  width: 100%;
  justify-content: center;
  margin-bottom: 15px;
}

.final-cta h2 strong {
  display: block;
  font-weight: 700;
}

.final-cta__content > p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 24.75px;
}

.final-cta__actions {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.final-cta__actions .button {
  min-height: 47px;
  padding-inline: 24px;
}

.final-cta__actions .button--primary {
  width: 187px;
}

.final-cta__actions .button--secondary {
  width: 137px;
  padding-inline: 18px;
}

.final-cta__contacts {
  display: grid;
  width: 100%;
  gap: 0;
  margin: 15px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 29px;
}

.final-cta__contacts a{
  transition: var(--transition);
}

.final-cta__contacts a:hover {
  color: var(--orange-dark);
}

.final-cta__contacts div {
  display: grid;
  gap: 3px;
}

.final-cta__contacts dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.final-cta__contacts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  font-weight: 700;
  line-height: 25.5px;
}

.final-cta__contacts div:not(:last-child) dd {
  color: var(--orange);
}

.partners {
  background: var(--off-white);
  padding: 10px 0 16px;
}

.partners__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.partners img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.is-desktop-only {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 49px 0 28px;
  background: var(--white);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
}

.site-footer__main {
  display: grid;
  gap: 30px;
}

.site-footer__brand {
  display: grid;
  gap: 11px;
}

.site-footer__brand > p {
  max-width: 308px;
  color: var(--flint);
  font-size: 13px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 1px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--flint);
  font-size: 18px;
  font-weight: 600;
  line-height: 20.8px;
  transition: color var(--transition);
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--orange);
}

.footer-contact span:first-child {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--warm-white);
}

.footer-contact img {
  width: 18px;
  height: 18px;
}

.footer-nav {
  display: grid;
  gap: 14px;
}

.footer-nav h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--stone);
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.footer-nav h2::before {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
}

.footer-nav ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  color: var(--flint);
  font-size: 13px;
  line-height: 19.5px;
  transition: color var(--transition);
}

.site-footer__extra {
  display: grid;
  gap: 20px;
  padding-top: 30px;
}

.footer-affiliation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-affiliation p {
  max-width: 192px;
  color: var(--stone);
  font-size: 10px;
  line-height: 14px;
}

.footer-affiliation strong {
  color: var(--flint);
  font-weight: 600;
}

.footer-affiliation img {
  width: 108px;
  height: 72px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-1px);
}

.site-footer__bottom {
  display: grid;
  gap: 10px;
  margin-top: 25px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  color: var(--stone);
  font-size: 11px;
  line-height: 16.5px;
}

.site-footer__bottom p{
  color: var(--stone);
  font-size: 11px;
  line-height: 16.5px;
}

@media (max-width: 374px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-nav {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-nav .menu-item > a {
    padding-left: 0;
  }

  .stats__cards,
  .benefits__cards,
  .projects__list,
  .reviews__list,
  .realizations__list,
  .process__cards {
    --mobile-scroll-bleed-right: 16px;
  }

  .hero {
    --hero-content-width: min(100% - 30px, var(--container));
  }

  .phone-pill {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  :root {
    --header-height: 120px;
    --header-height-scroll: 84px;
  }

  body {
    font-size: 15px;
  }

  .stats__cards,
  .benefits__cards,
  .projects__list,
  .reviews__list,
  .realizations__list,
  .process__cards {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .process__cards.container {
    width: min(100% - 60px, var(--container));
    margin-inline: auto;
  }

  h1 {
    font-size: 64px;
    line-height: 1.08;
  }

  h2 {
    font-size: 46px;
    line-height: 1.2;
  }

  h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .site-header__inner {
    gap: clamp(18px, 2.5vw, 40px);
  }

  .site-logo > span {
    width: 187px;
    height: auto;
  }

  .site-nav {
    position: static;
    z-index: auto;
    width: auto;
    max-height: none;
    overflow: visible;
    flex: 1 1 auto;
    padding: 0;
    background: transparent;
    color: var(--black);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 1.9vw, 31px);
  }

  .menu-item > a {
    min-height: auto;
    border-radius: 0;
    padding: 8px 0;
    font-size: 15px;
    line-height: 23.25px;
    white-space: nowrap;
  }

  .menu-item > a:hover,
  .menu-item > a:focus-visible {
    color: var(--orange);
    background: transparent;
  }

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

  .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 6px;
    margin-left: 6px;
    background-image: url("../img/icon-caret-down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform var(--transition);
  }

  .menu-item:hover > a::after,
  .menu-item:focus-within > a::after {
    transform: rotate(180deg);
  }

  .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: -18px;
    display: block;
    min-width: 220px;
    max-height: none;
    overflow: visible;
    border-radius: 14px;
    padding: 10px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(30, 28, 26, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .sub-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 10px;
    content: "";
  }

  .menu-item:hover > .sub-menu,
  .menu-item:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sub-menu .sub-menu {
    top: -10px;
    left: calc(100% + 10px);
  }

  .sub-menu .sub-menu::before {
    top: 0;
    right: 100%;
    bottom: 0;
    left: auto;
    width: 10px;
    height: auto;
  }

  .sub-menu .menu-item > a {
    min-height: 40px;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .site-header__actions {
    gap: 20px;
  }

  .phone-pill,
  .nav-toggle {
    display: none;
  }

  .icon-button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--warm-white);
    color: var(--orange);
    transition: background-color var(--transition), transform var(--transition);
  }

  .icon-button:hover,
  .icon-button:focus-visible {
    color: var(--white);
    background: var(--orange);
    transform: translateY(-1px);
  }

  .icon-button img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .site-header__actions .button {
    display: inline-flex;
    width: clamp(47px, 14vw, 219px);
    justify-content: space-between;
  }

  .site-header__actions .button span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    --hero-content-width: min(100% - 40px, var(--container));
    height: min(calc(100svh - var(--header-height) - 60px), 800px);
    min-height: 620px;
    max-height: 800px;
  }

  .hero__media img,
  video.hero__media {
    object-position: center bottom;
  }

  .hero__content {
    gap: 20px;
    padding-bottom: 60px;
  }

  .hero h1 {
    max-width: 470px;
  }

  .hero__price p {
    font-size: 36px;
  }

  .hero__price strong {
    font-size: 54px;
  }

  .hero__copy {
    max-width: 440px;
  }

  .hero__copy p {
    font-size: 14px;
    line-height: 20px;    
  }

  .hero__actions {
    width: auto;
    display: inline-flex;
  }

  .section-heading h2 {
    max-width: 364px;
  }

  .media-text {
    padding: 80px 0 100px;
  }

  .media-text__decor {
    top: -20px;
    right: calc(((100vw - min(100% - 60px, var(--container))) / 2) - 180px);
    width: 360px;
    height: 360px;
  }

  .media-text__inner {
    grid-template-columns: 528px minmax(0, 640px);
    align-items: stretch;
    gap: 112px;
  }

  .media-text.is-left .media-text__inner {
    grid-template-columns: minmax(0, 640px) 528px;
  }

  .media-text.is-left .media-card {
    order: 1;
  }

  .media-text.is-left .media-text__content {
    order: 2;
  }

  .media-text.is-right .media-text__content {
    order: 1;
  }

  .media-text.is-right .media-card {
    order: 2;
  }

  .feature-list,
  .is-wysiwyg > ul,
  .is-wysiwyg > ol {
    margin-top: 27px;
  }

  .feature-list li,
  .is-wysiwyg > ul > li,
  .is-wysiwyg > ol > li {
    min-height: 44px;
  }

  .comparison-table {
    width: 527px;
    margin-top: 40px;
  }

  .is-wysiwyg table {
    width: 527px;
  }

  .table-scroll {
    margin-top: 40px;
  }

  .comparison-table th,
  .comparison-table td,
  .is-wysiwyg table th,
  .is-wysiwyg table td {
    padding-inline: 20px;
  }

  .media-text__actions {
    margin-top: 40px;
  }

  .media-card {
    width: 100%;
    height: 100%;
    min-height: 630px;
  }

  .media-card > img:first-child {
    height: 100%;
    min-height: 630px;
  }

  .media-card > img:nth-child(2) {
    top: 33px;
    left: 34px;
    width: 214px;
  }

  .media-card figcaption {
    bottom: 33px;
    left: 20px;
  }

  .stats {
      padding: 80px 0;
  }

  .stats__inner {
    grid-template-columns: 344px 1fr;
    align-items: center;
    gap: 20px;
  }

  .stats__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    overflow: visible;
    padding-bottom: 0;
  }

  .stat-card {
    width: auto;
    flex: initial;
  }

  .stats--no-heading .stats__inner {
    grid-template-columns: 1fr;
  }

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

  .benefits {
    padding: 73px 0 120px;
  }

  .benefits__inner {
    gap: 50px;
  }

  .benefits__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    gap: 20px;
    overflow: visible;
    padding-bottom: 0;
  }

  .benefit-card {
    width: auto;
  }

  .projects {
      padding: 0 0 80px;
  }

  .projects__inner {
    gap: 50px;
  }

  .projects__carousel {
    overflow: visible;
  }

  .projects__carousel.swiper-initialized {
    margin-block: calc(var(--project-card-shadow-bleed) * -1);
    overflow: clip;
    overflow-clip-margin: var(--project-card-shadow-bleed);
    padding-block: var(--project-card-shadow-bleed);
  }

  .projects__list {
    display: flex !important;
    gap: 0;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .project-card {
    width: auto;
    flex-basis: auto;
  }

  .project-card a {
    min-height: 524px;
  }

  .project-card a > div {
    flex: 1;
  }

  .projects__controls {
    position: absolute;
    top: -90px;
    right: 0;
    z-index: 2;
    display: flex;
    gap: 10px;
  }

  .split-carousel {
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
  }

  .carousel-controls {
    display: flex;
    width: 302px;
    align-items: center;
    gap: 10px;
    margin-top: 33px;
  }

  .reviews {
    padding: 80px 0;
  }

  .reviews .split-carousel__content .button,
  .realizations .split-carousel__content .button {
    width: 160px;
    margin-top: 45px;
    padding: 5px 5px 5px 20px;
    justify-content: space-between;
  }

  .reviews__carousel,
  .realizations__carousel {
    overflow: visible;
  }

  .reviews__carousel.swiper-initialized {
    margin-block: calc(var(--review-card-shadow-bleed) * -1);
    overflow: clip;
    overflow-clip-margin: var(--review-card-shadow-bleed);
    padding-block: var(--review-card-shadow-bleed);
  }

  .realizations__carousel.swiper-initialized {
    overflow: hidden;
  }

  .reviews__list,
  .realizations__list {
    gap: 0;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .review-card {
    width: auto;
    min-height: 295px;
    flex-basis: auto;
  }

  .realizations {
    padding: 80px 0;
  }

  .realizations .split-carousel {
    grid-template-columns: 344px minmax(0, 1fr);
  }

  .realization-card {
    width: auto;
    height: 362px;
    flex-basis: auto;
  }

  .realizations__carousel .carousel-controls,
  .reviews__carousel .carousel-controls {
    width: fit-content;
    margin: 24px auto 0;
  }

  .process {
    padding: 80px 0;
  }

  .process__intro {
    grid-template-columns: 344px minmax(0, 599px);
    align-items: end;
    gap: 20px;
  }

  .process__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    overflow: visible;
    padding-top: 43px;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .process-card {
    width: auto;
    height: 367px;
    flex-basis: auto;
    padding: 27px 28px 28px;
  }

  .process-card > p {
    font-size: 80px;
    line-height: 68px;
  }

  .faq {
    padding: 0 0 80px;
  }

  .faq__inner {
    gap: 43px;
  }

  .section-heading.is-centered {
    align-items: center;
    justify-self: center;
    text-align: center;
  }

  .section-heading.is-centered .eyebrow {
    justify-content: center;
  }

  .section-heading.is-centered h2 {
    max-width: 383px;
  }

  .faq__list {
    width: min(100%, 915px);
    justify-self: center;
    gap: 12px;
  }

  .faq-item summary {
    padding-inline: 24px;
    font-size: 18px;
    line-height: 24px;
  }

  .faq-item p {
    padding-inline: 24px;
    padding-bottom: 24px;
  }

  .final-cta__container {
    width: min(calc(100% - 100px), 1500px);
  }

  .final-cta__box {
    min-height: 515px;
    border-radius: 28px;
  }

  .final-cta__content {
    width: min(100% - 80px, 467px);
    padding: 56px 0 57px;
  }

  .final-cta h2 {
    max-width: 540px;
    font-size: 60px;
    line-height: 66px;
    letter-spacing: 0;
  }

  .final-cta__content > p {
    margin-top: 15px;
  }

  .final-cta__actions {
    margin-top: 20px;
  }

  .final-cta__actions .button {
    min-height: 51px;
    padding-inline: 28px;
  }

  .final-cta__actions .button--primary {
    width: 190px;
  }

  .final-cta__actions .button--secondary {
    width: 156px;
    padding-inline: 28px;
  }

  .final-cta__contacts {
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
    padding-top: 29px;
  }

  .partners {
    padding: 30px 0 20px;
  }

  .partners__inner {
    justify-content: space-between;
    gap: 64px;
  }

  .partners img {
    width: 160px;
    height: 160px;
  }

  .is-mobile-only {
    display: none;
  }

  .is-desktop-only {
    display: block;
  }

  .site-footer {
    padding: 50px 0 30px;
  }

  .site-footer__main {
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
    gap: 40px;
  }

  .site-footer__brand {
    max-width: 460px;
  }

  .footer-contact {
    flex-direction: row;
    gap: 30px;
  }

  .site-footer__extra {
    grid-template-columns: 232px 131px;
    align-items: center;
    justify-content: space-between;
    min-height: 75px;
    padding-top: 28px;
  }

  .footer-affiliation {
    flex-direction: row-reverse;
  }

  .footer-affiliation p {
    text-align: right;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    margin-top: 0;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .container {
    width: min(100% - 24px, var(--wide-container));
  }

  .site-logo > span {
    width: 138px;
    height: auto;
  }

  .site-header.is-scroll .site-logo > span {
    width: 118px;
    height: auto;
  }

  .site-header__inner {
    gap: 10px;
  }

  .menu {
    gap: clamp(8px, 1vw, 12px);
  }

  .menu-item > a {
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: 20px;
  }

  .site-header__actions {
    width: 219px;
    flex: 0 0 219px;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .icon-button {
    display: none;
  }

  .phone-pill {
    display: inline-flex;
    min-height: auto;
    padding: 0;
    background: transparent;
    font-size: 12px;
    line-height: 16px;
  }

  .phone-pill:hover,
  .phone-pill:focus-visible {
    color: var(--orange-dark);
    background: transparent;
  }

  .site-header__actions .button {
    width: 219px;
    padding: 5px 5px 5px 18px;
    justify-content: space-between;
  }

  .site-header__actions .button span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .hero {
    --hero-content-width: min(100% - 4px, var(--wide-container));
  }

  .media-text__inner {
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 40px;
  }

  .media-text.is-left .media-text__inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  }

  .comparison-table,
  .is-wysiwyg table {
    width: 100%;
  }

  .media-card {
    width: 100%;
  }

  .stats__inner {
    grid-template-columns: 300px 1fr;
  }

  .stats--no-heading .stats__inner {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding-inline: 16px;
  }

  .benefits__cards {
    gap: 16px;
  }

  .benefit-card h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .projects__controls {
    top: -84px;
  }

  .process__intro {
    grid-template-columns: minmax(280px, 344px) minmax(0, 599px);
  }

  .process__cards {
    gap: 16px;
  }

  .process-card {
    padding-inline: 20px;
  }

  .process-card h3 {
    font-size: 18px;
    line-height: 23px;
  }

  .final-cta__container {
    width: min(calc(100% - 24px), var(--wide-container));
  }

  .partners__inner {
    gap: 24px;
  }

  .partners img {
    width: 140px;
    height: 140px;
  }

  .site-footer__main {
    grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
}
