:root {
  --color-bg: #f5f4ef;
  --color-surface: #ffffff;
  --color-text: #222222;
  --color-muted: #666666;
  --color-border: #d8d5cc;
  --color-accent: #9b7c4a;
  --color-hero: #111111;
  --container-width: 1180px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;
}

@font-face {
  font-family: "Montserrat UltraLight";
  src: url("/assets/fonts/montserrat-ultralight.woff2") format("woff2"),
    url("/assets/fonts/montserrat-ultralight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Bold";
  src: url("/assets/fonts/montserrat-bold.woff2") format("woff2"),
    url("/assets/fonts/montserrat-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/sourcesanspro-regular.woff2") format("woff2"),
    url("/assets/fonts/sourcesanspro-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/sourcesanspro-light.woff2") format("woff2"),
    url("/assets/fonts/sourcesanspro-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ElegantIcons";
  src: url("/assets/fonts/ElegantIcons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "MaterialDesignIcons";
  src: url("/assets/fonts/materialdesignicons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: linear-gradient(180deg, #f7f5ef 0%, #efede6 100%);
  font-family: "Source Sans Pro", sans-serif;
}

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

img {
  max-width: 100%;
}

main [id] {
  scroll-margin-top: 6.5rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(247, 245, 239, 0.9);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

body.page-has-slider-hero .site-header {
  position: fixed;
  inset: 0 0 auto 0;
}

body.page-has-slider-hero.is-scrolled .site-header {
  background: rgba(16, 22, 28, 0.76);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

body.page-has-slider-hero:not(.is-scrolled) .site-header {
  background: rgba(16, 22, 28, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.75rem;
  min-height: 5.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.site-logo-image {
  width: auto;
  display: block;
}

.site-logo-image-light {
  height: 3.25rem;
}

.site-logo-image-dark {
  display: none;
  height: 2.25rem;
}

.site-nav,
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.site-nav {
  justify-self: center;
  justify-content: center;
  gap: 2.25rem;
}

.lang-switcher {
  justify-self: end;
  gap: 0.85rem;
  position: relative;
}

.section-switcher {
  position: relative;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--color-text);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a,
.lang-switcher a,
.lang-current,
.section-current,
.section-menu a {
  color: var(--color-muted);
  font-family: "Montserrat Bold", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
}

.section-current {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem 0.25rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.lang-current::-webkit-details-marker {
  display: none;
}

.section-current::-webkit-details-marker {
  display: none;
}

.lang-current::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  border-left: 0.28rem solid transparent;
  border-right: 0.28rem solid transparent;
  border-top: 0.32rem solid currentColor;
  opacity: 0.85;
}

.section-current::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.48rem;
  width: 0;
  height: 0;
  border-left: 0.26rem solid transparent;
  border-right: 0.26rem solid transparent;
  border-top: 0.32rem solid currentColor;
  opacity: 0.72;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.section-current::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0.65rem;
  bottom: 0;
  height: 1px;
  background: rgba(34, 34, 34, 0.22);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(34, 34, 34, 0.22);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="true"],
.section-switcher:hover .section-current,
.section-switcher.is-active .section-current,
.section-switcher[open] .section-current {
  color: var(--color-text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="true"]::after,
.section-switcher:hover .section-current::before,
.section-switcher.is-active .section-current::before,
.section-switcher[open] .section-current::before {
  transform: scaleX(1);
}

.lang-switcher a[aria-current="page"],
.lang-current {
  color: var(--color-text);
}

.lang-switcher a,
.lang-current {
  font-size: 0.88rem;
}

.section-current,
.section-menu a {
  font-size: 0.96rem;
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  min-width: 13rem;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(26, 33, 46, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.section-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 18rem;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(26, 33, 46, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  z-index: 15;
}

.lang-switcher[open] .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section-switcher[open] .section-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.2rem;
  color: rgba(247, 245, 239, 0.78);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.section-menu a {
  display: flex;
  align-items: center;
  min-height: 4.2rem;
  padding: 0.95rem 1.2rem;
  color: rgba(247, 245, 239, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.section-menu a::after {
  content: none;
}

.lang-menu a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.section-menu a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-menu a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.section-menu a:hover,
.section-menu a.is-active,
.section-menu a[aria-current="true"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

body.page-has-slider-hero:not(.is-scrolled) .site-nav a,
body.page-has-slider-hero.is-scrolled .site-nav a,
body.page-has-slider-hero:not(.is-scrolled) .lang-switcher a,
body.page-has-slider-hero:not(.is-scrolled) .lang-current,
body.page-has-slider-hero:not(.is-scrolled) .section-current {
  color: rgba(247, 245, 239, 0.86);
}

body.page-has-slider-hero.is-scrolled .lang-switcher a,
body.page-has-slider-hero.is-scrolled .lang-current,
body.page-has-slider-hero.is-scrolled .section-current {
  color: rgba(247, 245, 239, 0.86);
}

body.page-has-slider-hero:not(.is-scrolled) .site-nav a::after,
body.page-has-slider-hero.is-scrolled .site-nav a::after,
body.page-has-slider-hero:not(.is-scrolled) .section-current::before,
body.page-has-slider-hero.is-scrolled .section-current::before {
  background: rgba(247, 245, 239, 0.78);
}

body.page-has-slider-hero:not(.is-scrolled) .site-nav a:hover,
body.page-has-slider-hero:not(.is-scrolled) .site-nav a.is-active,
body.page-has-slider-hero:not(.is-scrolled) .site-nav a[aria-current="true"],
body.page-has-slider-hero:not(.is-scrolled) .lang-switcher a[aria-current="page"],
body.page-has-slider-hero:not(.is-scrolled) .lang-current,
body.page-has-slider-hero:not(.is-scrolled) .section-switcher:hover .section-current,
body.page-has-slider-hero:not(.is-scrolled) .section-switcher.is-active .section-current,
body.page-has-slider-hero:not(.is-scrolled) .section-switcher[open] .section-current,
body.page-has-slider-hero.is-scrolled .site-nav a:hover,
body.page-has-slider-hero.is-scrolled .site-nav a.is-active,
body.page-has-slider-hero.is-scrolled .site-nav a[aria-current="true"],
body.page-has-slider-hero.is-scrolled .lang-switcher a[aria-current="page"],
body.page-has-slider-hero.is-scrolled .lang-current,
body.page-has-slider-hero.is-scrolled .section-switcher:hover .section-current,
body.page-has-slider-hero.is-scrolled .section-switcher.is-active .section-current,
body.page-has-slider-hero.is-scrolled .section-switcher[open] .section-current {
  color: #ffffff;
}

body.page-has-slider-hero:not(.is-scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.page-has-slider-hero:not(.is-scrolled) .site-logo-image-light {
  display: block;
}

body.page-has-slider-hero:not(.is-scrolled) .site-logo-image-dark {
  display: none;
}

body:not(.page-has-slider-hero) .site-logo-image-light {
  display: none;
}

body:not(.page-has-slider-hero) .site-logo-image-dark {
  display: block;
}

.hero {
  position: relative;
  min-height: min(58rem, 92vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #f7f5ef;
  background: var(--color-hero);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.78), rgba(12, 12, 12, 0.3)),
    url("/assets/img/hero/hero-house.jpg") center 30% / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.15), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-brand {
  display: block;
  width: min(36rem, 100%);
  height: auto;
  margin: 0 0 1.5rem;
}

.hero-title-prefix {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Montserrat Bold", sans-serif;
  font-size: clamp(0.92rem, 1.4vw, 1.15rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  margin-bottom: 1.5rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-badge img {
  width: 4.25rem;
  height: auto;
}

.hero-copy {
  max-width: 40rem;
  color: rgba(247, 245, 239, 0.82);
}

.hero-slider {
  min-height: 100vh;
  align-items: stretch;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 18, 0.22), rgba(6, 12, 18, 0.34)),
    var(--hero-image) center center / cover no-repeat;
  transform: scale(1.035);
  transition: transform 6500ms ease-out;
  will-change: transform;
}

.hero-slider:not(.is-ready) .hero-slide.is-active .hero-slide-media {
  transform: scale(1.035);
}

.hero-slider.is-ready .hero-slide.is-active .hero-slide-media {
  transform: scale(1);
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-panel {
  width: min(72rem, 100%);
  padding: clamp(1.8rem, 3vw, 3rem);
  background: rgba(22, 28, 33, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(5px);
}

.hero-panel > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-panel > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.is-active .hero-panel > :nth-child(1) {
  transition-delay: 110ms;
}

.hero-slide.is-active .hero-panel > :nth-child(2) {
  transition-delay: 180ms;
}

.hero-slide.is-active .hero-panel > :nth-child(3) {
  transition-delay: 250ms;
}

.hero-slide.is-active .hero-panel > :nth-child(4) {
  transition-delay: 320ms;
}

.hero-meta {
  margin: 0 0 1.25rem;
  color: rgba(247, 245, 239, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-display-title {
  margin: 0;
  text-align: center;
}

.hero-title-main {
  display: block;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.hero-subtitle {
  margin-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2.5rem);
  font-style: italic;
  line-height: 1.3;
}

.button-hero {
  border-color: rgba(247, 245, 239, 0.34);
  background: rgba(28, 35, 41, 0.3);
  color: #f7f5ef;
}

.button-hero:hover {
  background: rgba(247, 245, 239, 0.14);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(18, 24, 28, 0.2);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-arrow:hover {
  background: rgba(18, 24, 28, 0.42);
  border-color: rgba(255, 255, 255, 0.44);
}

.hero-arrow span {
  display: block;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-0.18rem);
}

.hero-arrow-prev {
  left: 1.5rem;
}

.hero-arrow-next {
  right: 1.5rem;
}

.hero-pagination {
  position: absolute;
  left: 50%;
  bottom: 2.25rem;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  transform: translateX(-50%);
}

.hero-dot {
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.hero-dot.is-active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.08);
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-mouse {
  position: relative;
  width: 1.05rem;
  height: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
}

.hero-scroll-mouse::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 50%;
  width: 0.2rem;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(-50%);
  animation: hero-scroll 1.6s ease-in-out infinite;
}

@keyframes hero-scroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 0.45rem);
  }
}

@keyframes hero-image-zoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

.hero-claims {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-claim {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(247, 245, 239, 0.9);
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button-primary {
  background: #f7f5ef;
  color: #171717;
}

.button-secondary {
  border-color: rgba(247, 245, 239, 0.28);
  color: #f7f5ef;
  background: rgba(255, 255, 255, 0.06);
}

.content-section {
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(34, 34, 34, 0.06);
}

.content-section .container {
  max-width: 72rem;
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.hero .eyebrow {
  color: rgba(247, 245, 239, 0.72);
}

h1,
h2 {
  margin: 0 0 var(--space-2);
  font-family: "Montserrat UltraLight", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.intro-section {
  position: relative;
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(4.5rem, 8vw, 7rem);
  background: #ffffff;
}

.about-heading {
  text-align: center;
}

.about-kicker {
  margin: 0;
  color: #444444;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.about-kicker span {
  color: #e0b98d;
  font-family: "Montserrat Bold", sans-serif;
}

.about-rule {
  width: min(54rem, 72vw);
  height: 2px;
  margin: clamp(2.6rem, 5vw, 3.8rem) auto clamp(4rem, 7vw, 5.4rem);
  background: #d79b4a;
}

.about-rule-secondary {
  margin-top: clamp(4rem, 7vw, 5.4rem);
  margin-bottom: clamp(3.6rem, 6vw, 5rem);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.6rem, 5vw, 5.2rem);
  align-items: start;
  max-width: 72rem;
  margin: 0 auto;
}

.about-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.2rem;
  color: #d1a777;
}

.about-icon::before {
  content: "";
  font-family: "ElegantIcons";
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}

.about-icon-home::before {
  content: "\e074";
}

.about-overview {
  max-width: none;
  margin: 0;
  text-align: center;
}

.about-overview h2,
.about-story h3 {
  margin: 0 0 1.4rem;
  color: #222222;
  font-family: "Montserrat Bold", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-overview p {
  max-width: 22rem;
  margin: 0 auto 1.4rem;
  color: #a5a5a5;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-media {
  margin: 0;
}

.about-media img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.5) contrast(0.92) brightness(1.12);
  opacity: 0.72;
}

.about-story {
  text-align: center;
}

.about-story p {
  color: #a5a5a5;
  font-size: 1.03rem;
  line-height: 1.85;
}

.about-story p + p {
  margin-top: 1rem;
}

.about-icon-idea::before {
  content: "\e007";
}

.about-icon-plan::before {
  content: "\e0e6";
}

.about-icon-check::before {
  content: "\5a";
}

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

.offer-timeline-section {
  position: relative;
  padding: clamp(5.5rem, 8vw, 7.5rem) 0 clamp(5rem, 8vw, 7rem);
  border-bottom: 0;
  background-color: #3b3b3b;
  background-image: url("/assets/img/offer/offer-bg.jpg");
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  overflow: hidden;
}

.offer-timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.56);
}

.offer-timeline-container {
  position: relative;
  z-index: 1;
}

.offer-timeline-header {
  text-align: center;
}

.offer-timeline-heading {
  margin: 0 0 2.5rem;
  color: #ffffff;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.35rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.offer-timeline-heading span {
  color: #e5be93;
  font-family: "Montserrat Bold", sans-serif;
}

.offer-timeline-intro {
  max-width: 72rem;
  margin: 0 auto;
  color: #ffffff;
  font-size: 1.07rem;
  line-height: 1.68;
}

.offer-timeline {
  position: relative;
  margin-top: clamp(3rem, 6vw, 4rem);
}

.offer-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #e3be92;
  transform: translateX(-50%);
}

.offer-timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  min-height: 16rem;
}

.offer-timeline-card {
  display: block;
  max-width: 29rem;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.offer-timeline-row.is-left .offer-timeline-card {
  justify-self: end;
}

.offer-timeline-row.is-right .offer-timeline-card {
  justify-self: start;
}

.offer-timeline-card h3 {
  margin: 0 0 1.1rem;
  color: #e3be92;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-timeline-card p {
  color: #ffffff;
  font-size: 1.04rem;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.offer-timeline-pin {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border: 3px solid #e3be92;
  border-radius: 50%;
  background: #e3be92;
  color: #ffffff;
  text-decoration: none;
}

.offer-timeline-pin.is-ghost {
  background: #ffffff;
  color: #e3be92;
}

.offer-timeline-pin svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.offer-timeline-card:hover h3,
.offer-timeline-card:focus-visible h3 {
  color: #f0d1ae;
}

.offer-timeline-card:focus-visible,
.offer-timeline-pin:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 0.35rem;
}

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

.narrative-grid {
  position: relative;
  z-index: 1;
  width: min(68rem, calc(100% - 2rem));
  margin: 6.5rem auto 0;
}

.section-intro {
  max-width: 60rem;
  margin-bottom: 2rem;
}

.feature-card,
.contact-box {
  padding: 1.5rem;
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(33, 29, 20, 0.06);
}

.intro-section .feature-card {
  position: relative;
  padding: 4.75rem 1.65rem 1.65rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 176, 128, 0.28);
  border-radius: 0.35rem;
  box-shadow: 0 28px 70px rgba(34, 26, 16, 0.12);
}

.intro-section .feature-card::before {
  content: "";
  position: absolute;
  top: 1.9rem;
  left: 50%;
  width: 3rem;
  height: 1px;
  background: rgba(217, 176, 128, 0.74);
  transform: translateX(-50%);
}

.feature-icon {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(217, 176, 128, 0.62);
  border-radius: 50%;
  background: #f8f5ef;
  box-shadow: 0 18px 36px rgba(36, 27, 15, 0.12);
  transform: translateX(-50%);
}

.feature-icon::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 2px solid #c99a68;
  border-radius: 0.24rem;
  transform: rotate(45deg);
}

.intro-section .feature-card:nth-child(2) .feature-icon::before {
  border-radius: 50%;
}

.intro-section .feature-card:nth-child(3) .feature-icon::before {
  width: 1.35rem;
  height: 0.85rem;
  border-top: 0;
  border-left: 0;
  border-radius: 0;
  transform: rotate(45deg) translate(-0.08rem, -0.1rem);
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat Bold", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-columns,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.offer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.offer-column {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(34, 34, 34, 0.08);
}

.offer-column h3,
.partners-group h3,
.contact-box h3 {
  margin: 0 0 1rem;
  font-family: "Montserrat Bold", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plain-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.offer-detail-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.comfort-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.comfort-showcase__container {
  width: min(calc(100% - 2rem), 1120px);
}

.comfort-showcase__hero {
  min-height: 22rem;
  padding-top: 0.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.94)),
    url("/assets/img/comfort/comfort-intro.jpg") center 0 / 40rem auto no-repeat;
}

.comfort-showcase__box {
  width: min(100%, 34.25rem);
  margin-left: clamp(5rem, 16vw, 12rem);
  padding: 2.3rem 2.5rem 2.2rem;
  background: rgba(185, 185, 185, 0.94);
}

.comfort-showcase__box h2 {
  margin: 0 0 2rem;
  color: #ffffff;
  font-family: "Montserrat Bold", sans-serif;
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.comfort-showcase__box p {
  margin: 0;
  max-width: 28rem;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.33;
}

.comfort-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(4rem, 8vw, 10rem);
  row-gap: 5.5rem;
  padding: 6.5rem 1.9rem 0;
}

.comfort-showcase__item {
  max-width: 28rem;
}

.comfort-showcase__icon {
  display: grid;
  place-items: center;
  width: 5.1rem;
  height: 5.1rem;
  margin: 0 0 2.3rem;
  border-radius: 50%;
  color: #ffffff;
  background: #e3be92;
  font-family: "MaterialDesignIcons", sans-serif;
  font-size: 2rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.comfort-showcase__item h3 {
  margin: 0 0 1.15rem;
  color: #e3be92;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(1.85rem, 2vw, 2.55rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.comfort-showcase__item p {
  margin: 0;
  color: #705030;
  font-size: 1.02rem;
  line-height: 1.48;
}

.health-showcase {
  position: relative;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(35, 37, 40, 0.72), rgba(35, 37, 40, 0.72)),
    url("/assets/img/health/health-bg.jpg") center center / cover no-repeat;
}

.health-showcase__container {
  width: min(calc(100% - 2rem), 1120px);
  padding-top: 2.8rem;
  padding-bottom: 3.1rem;
}

.health-showcase__intro {
  max-width: 44rem;
  margin-left: clamp(1rem, 7vw, 7rem);
  margin-bottom: 6.8rem;
}

.health-showcase__intro h2 {
  margin: 0 0 1.7rem;
  color: #e3be92;
  font-family: "Montserrat Bold", sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.health-showcase__intro p {
  margin: 0;
  max-width: 37rem;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.38;
}

.health-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.1rem 2.5rem;
}

.health-showcase__item {
  position: relative;
  min-height: 21.25rem;
  padding: 5.8rem 2rem 2.25rem;
  background: rgba(0, 0, 0, 0.15);
}

.health-showcase__icon {
  position: absolute;
  top: -2.25rem;
  left: 2rem;
  display: grid;
  place-items: center;
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 50%;
  color: #ffffff;
  background: #e3be92;
  font-family: "MaterialDesignIcons", sans-serif;
  font-size: 2rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.health-showcase__item h3 {
  margin: 0 0 1.15rem;
  color: #e3be92;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.45rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.health-showcase__item p {
  margin: 0;
  color: #ffffff;
  font-size: 1.03rem;
  line-height: 1.48;
}

.security-showcase {
  background: #ffffff;
}

.security-showcase__frame {
  width: min(calc(100% - 2rem), 1964px);
  margin: 0 auto;
  padding: 2.625rem;
  background: #ffffff;
}

.security-showcase__container {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0 0;
  color: #91785f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
    url("/assets/img/security/security-bg.jpg") center center / cover no-repeat;
}

.security-showcase__intro {
  max-width: 32rem;
  margin-left: clamp(1.5rem, 10vw, 27rem);
  margin-bottom: 1.75rem;
}

.security-showcase__intro h2 {
  margin: 0 0 1.7rem;
  color: #e3be92;
  font-family: "Montserrat Bold", sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.security-showcase__intro p {
  margin: 0;
  color: #91785f;
  font-size: 1.12rem;
  line-height: 1.37;
}

.security-showcase__panel {
  width: min(calc(100% - 3rem), 1100px);
  margin: 0 auto;
  padding: 4.25rem 2.5rem 3rem;
  background: rgba(255, 255, 255, 0.65);
}

.security-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.3rem 2.8rem;
}

.security-showcase__item {
  text-align: center;
}

.security-showcase__item:nth-child(4) {
  grid-column: 1 / 2;
}

.security-showcase__item:nth-child(5) {
  grid-column: 2 / 3;
}

.security-showcase__icon {
  display: grid;
  place-items: center;
  width: 5.1rem;
  height: 5.1rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  color: #ffffff;
  background: #e3be92;
  font-family: "MaterialDesignIcons", sans-serif;
  font-size: 2rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.security-showcase__item h3 {
  margin: 0 0 1.25rem;
  color: #e3be92;
  font-family: "Montserrat UltraLight", sans-serif;
  max-width: 13ch;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.5rem, 1.7vw, 2rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0.01em;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
  text-wrap: balance;
}

.security-showcase__item p {
  margin: 0;
  color: #91785f;
  font-size: 1rem;
  line-height: 1.5;
}

.mood-showcase {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    url("/assets/img/mood/mood-bg.jpg") center center / cover no-repeat;
}

.mood-showcase__container {
  width: min(calc(100% - 2rem), 1120px);
  padding-top: 2.8rem;
  padding-bottom: 3rem;
}

.mood-showcase__intro {
  max-width: 39rem;
  margin-left: clamp(1rem, 7vw, 5rem);
  margin-bottom: 6.8rem;
}

.mood-showcase__intro h2 {
  margin: 0 0 1.8rem;
  color: #e3be92;
  font-family: "Montserrat Bold", sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.mood-showcase__intro p {
  margin: 0;
  max-width: 36rem;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.38;
}

.mood-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.2rem 2.5rem;
}

.mood-showcase__item {
  position: relative;
  min-height: 19.5rem;
  padding: 5.7rem 2rem 2rem;
  background: rgba(0, 0, 0, 0.15);
}

.mood-showcase__icon {
  position: absolute;
  top: -2.35rem;
  left: 2rem;
  display: grid;
  place-items: center;
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 50%;
  color: #ffffff;
  background: #e3be92;
  font-family: "MaterialDesignIcons", sans-serif;
  font-size: 2rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mood-showcase__item h3 {
  margin: 0 0 1.2rem;
  color: #e3be92;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(1.85rem, 2vw, 2.45rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.mood-showcase__item p {
  margin: 0;
  color: #ffffff;
  font-size: 1.03rem;
  line-height: 1.48;
}

.control-showcase {
  background: #ffffff;
}

.control-showcase__container {
  width: min(calc(100% - 2rem), 1120px);
}

.control-showcase__hero {
  min-height: 21.2rem;
  padding-top: 2.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    url("/assets/img/control/control-hero.jpg") center center / cover no-repeat;
}

.control-showcase__box {
  width: min(100%, 34rem);
  margin-left: 2.6rem;
  padding: 2.2rem 2.5rem 2rem;
  background: rgba(34, 41, 48, 0.44);
}

.control-showcase__box h2 {
  margin: 0 0 2.05rem;
  color: #ffffff;
  font-family: "Montserrat Bold", sans-serif;
  font-size: clamp(2.45rem, 3.6vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.control-showcase__box p {
  margin: 0;
  max-width: 28rem;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.36;
}

.control-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 3rem;
  padding: 5.6rem 1.85rem 0;
}

.control-showcase__item {
  max-width: 20rem;
}

.control-showcase__icon {
  display: grid;
  place-items: center;
  width: 5.1rem;
  height: 5.1rem;
  margin: 0 0 2.15rem;
  border-radius: 50%;
  color: #ffffff;
  background: #e3be92;
  font-family: "MaterialDesignIcons", sans-serif;
  font-size: 2rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.control-showcase__item h3 {
  margin: 0 0 1.2rem;
  color: #e3be92;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.control-showcase__item p {
  margin: 0;
  color: #705030;
  font-size: 1.02rem;
  line-height: 1.48;
}

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

.detail-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(34, 34, 34, 0.08);
  box-shadow: 0 20px 50px rgba(33, 29, 20, 0.05);
}

.detail-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat Bold", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.projects-showcase {
  background: #3b3b3b;
}

.projects-showcase__container {
  width: min(calc(100% - 2rem), 1480px);
  margin: 0 auto;
  padding-top: 3.8rem;
  padding-bottom: 4.75rem;
}

.projects-showcase__header {
  margin-bottom: 2.3rem;
  text-align: center;
}

.projects-showcase__header h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(2.45rem, 3.5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.22em;
}

.projects-showcase__header h2 span {
  color: #e5be93;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.35rem;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.1rem;
  border: 0;
  border-radius: 0;
  color: #c4c0bc;
  background: #5c5c5c;
  cursor: pointer;
  font-family: "Montserrat Bold", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

button.filter-pill {
  appearance: none;
}

.filter-pill.is-active {
  color: #ffffff;
  background: #cea26f;
}

.filter-pill:hover {
  color: #ffffff;
  background: #756859;
  transform: translateY(-1px);
}

.offer-nav .filter-pill {
  border-radius: 999px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.7);
}

.offer-nav .filter-pill.is-active {
  color: var(--color-text);
  background: rgba(155, 124, 74, 0.12);
  border-color: rgba(155, 124, 74, 0.38);
}

.offer-nav .filter-pill:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.94);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  background: transparent;
}

.project-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #2f2f2f;
  border-radius: 0.2rem;
}

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

.project-card__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition:
    transform 420ms ease,
    filter 280ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.04), rgba(11, 11, 11, 0.52));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.project-card__caption {
  position: absolute;
  right: 1rem;
  bottom: 0.85rem;
  left: 1rem;
  z-index: 1;
  pointer-events: none;
  color: #ffffff;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(0.6rem);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.82);
}

.project-card:hover::after {
  opacity: 1;
}

.project-card:hover .project-card__caption {
  opacity: 1;
  transform: translateY(0);
}

.projects-note {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.95rem;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
}

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

.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 10, 14, 0.92);
  cursor: zoom-out;
}

.project-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(calc(100% - 2rem), 1280px);
  min-height: 100vh;
  margin: 0 auto;
  gap: 1rem;
}

.project-lightbox__figure {
  margin: 0;
}

.project-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.project-lightbox__caption {
  margin-top: 1rem;
  color: #ffffff;
  text-align: center;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.project-lightbox__close,
.project-lightbox__nav {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.project-lightbox__close:hover,
.project-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  transform: scale(1.04);
}

.project-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 0;
  z-index: 2;
  font-size: 2rem;
  line-height: 1;
}

.project-lightbox__nav {
  font-size: 2.4rem;
  line-height: 1;
}

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

.partners-section {
  background: rgba(255, 255, 255, 0.5);
}

.partners-group + .partners-group {
  margin-top: 2rem;
}

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

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

.logo-card {
  margin: 0;
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(34, 34, 34, 0.08);
}

.logo-card img {
  width: auto;
  max-width: 100%;
  max-height: 3rem;
  object-fit: contain;
}

.partners-showcase {
  background: #ffffff;
}

.partners-showcase__container {
  width: min(calc(100% - 2rem), 1120px);
  padding-top: 3.75rem;
  padding-bottom: 4rem;
}

.partners-showcase__header {
  text-align: center;
}

.partners-showcase__header h2 {
  margin: 0;
  color: #464646;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.15rem);
  font-weight: 300;
  letter-spacing: 0.22em;
}

.partners-showcase__header h2 span {
  color: #e5be93;
}

.partners-showcase__hero {
  margin-top: 3rem;
  padding: 2.1rem 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)),
    url("/assets/img/partners/partners-hero.jpg") center center / cover no-repeat;
}

.partners-showcase__hero-box {
  width: min(100%, 34rem);
  margin-left: 1.25rem;
  padding: 2rem 2.4rem 1.85rem;
  background: rgba(0, 0, 0, 0.3);
}

.partners-showcase__hero-box h3 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-family: "Montserrat Bold", sans-serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.partners-showcase__hero-box p {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.42;
}

.partners-showcase__group {
  margin-top: 2.5rem;
}

.partners-showcase__label {
  margin: 0 0 1.8rem;
  color: #464646;
  font-family: "Montserrat Bold", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partners-showcase__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 1rem;
}

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

.partners-showcase__logo {
  margin: 0;
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.partners-showcase__logo img {
  width: auto;
  max-width: 100%;
  max-height: 5.5rem;
  object-fit: contain;
}

.contact-showcase {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(32, 32, 32, 0.74), rgba(32, 32, 32, 0.74)),
    url("/assets/img/contact/contact-bg.jpg") center center / cover no-repeat;
}

.contact-showcase__container {
  width: min(calc(100% - 2rem), 1120px);
  padding-top: 3.75rem;
  padding-bottom: 5.5rem;
}

.contact-showcase__header {
  text-align: center;
}

.contact-showcase__header h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.15rem);
  font-weight: 300;
  letter-spacing: 0.22em;
}

.contact-showcase__header h2 span {
  color: #e5be93;
}

.contact-showcase__header h3 {
  margin: 4rem 0 1rem;
  color: #ffffff;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.contact-showcase__header p {
  margin: 0;
  color: #ffffff;
  font-size: 1.06rem;
  line-height: 1.45;
}

.contact-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(18rem, 24rem));
  justify-content: center;
  gap: 2.5rem;
  margin-top: 5rem;
}

.contact-showcase__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  justify-self: center;
  width: 100%;
}

.contact-showcase__icon {
  flex: 0 0 auto;
  color: #ffffff;
  font-family: "MaterialDesignIcons", sans-serif;
  font-size: 3rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contact-showcase__content h4 {
  margin: 0 0 0.9rem;
  color: #dbb081;
  font-family: "Montserrat UltraLight", sans-serif;
  font-size: 1.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.contact-showcase__content p {
  margin: 0.25rem 0;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.55;
}

.contact-showcase__content a {
  color: inherit;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.site-footer p {
  font-size: 0.92rem;
  text-align: center;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: var(--space-2);
  text-align: center;
  padding: var(--space-4);
}

@media (max-width: 860px) {
  .site-header .container {
    min-height: auto;
    padding: 1rem 0;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    row-gap: 0.5rem;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .lang-switcher {
    width: 100%;
    grid-column: 1 / -1;
    display: none;
  }

  .section-switcher {
    width: 100%;
  }

  .site-logo-image-light {
    height: 2.5rem;
  }

  .site-logo-image-dark {
    height: 1.9rem;
  }

  .site-header.is-nav-open .site-nav,
  .site-header.is-nav-open .lang-switcher {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .site-header.is-nav-open .site-nav a,
  .site-header.is-nav-open .lang-current,
  .site-header.is-nav-open .section-current {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 2.75rem;
  }

  .site-header.is-nav-open .site-nav a {
    padding: 0.35rem 0;
  }

  .site-header.is-nav-open .site-nav {
    padding-top: 1rem;
  }

  .site-header.is-nav-open .lang-switcher {
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
  }

  .lang-current,
  .section-current {
    min-height: 2.5rem;
  }

  .lang-menu,
  .section-menu {
    position: static;
    width: min(100%, 18rem);
    margin-top: 0.5rem;
    transform: none;
  }

  .lang-switcher[open] .lang-menu,
  .section-switcher[open] .section-menu {
    transform: none;
  }

  body.page-has-slider-hero .site-header.is-nav-open {
    background: rgba(18, 22, 27, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero-stage {
    min-height: 42rem;
    padding-top: 8rem;
    padding-bottom: 6.5rem;
  }

  .hero-panel {
    width: 100%;
    padding: 1.6rem 1.25rem;
  }

  .hero-title-main {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    margin-top: 1rem;
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .hero-arrow {
    width: 3rem;
    height: 3rem;
  }

  .hero-arrow-prev {
    left: 0.75rem;
  }

  .hero-arrow-next {
    right: 0.75rem;
  }

  .hero-scroll-indicator {
    bottom: 1.15rem;
  }

  .intro-section {
    padding-top: 0;
    background: #ffffff;
  }

  .narrative-grid {
    width: 100%;
    margin-top: 4rem;
  }

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

  .about-kicker {
    font-size: 2rem;
    letter-spacing: 0.28em;
  }

  .about-rule {
    width: min(24rem, 76vw);
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .about-rule-secondary {
    margin-top: 3.5rem;
    margin-bottom: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    max-width: 28rem;
  }

  .about-media {
    max-width: 21rem;
    margin: 0 auto;
  }

  .about-overview p {
    max-width: 24rem;
  }

  .offer-timeline-section {
    background-size: auto 100%;
  }

  .offer-timeline-heading {
    font-size: 2.15rem;
    letter-spacing: 0.2em;
  }

  .projects-showcase__container {
    width: min(calc(100% - 1rem), 1600px);
    padding-top: 3.2rem;
    padding-bottom: 3.8rem;
  }

  .projects-showcase__header {
    margin-bottom: 1.7rem;
  }

  .project-filters {
    margin-bottom: 1.35rem;
  }

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

  .project-card::after,
  .project-card__caption {
    opacity: 1;
    transform: none;
  }

  .project-card::after {
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.08), rgba(11, 11, 11, 0.52));
  }

  .offer-timeline-intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .offer-timeline::before {
    left: 2.4rem;
    transform: none;
  }

  .offer-timeline-row {
    grid-template-columns: 4.8rem minmax(0, 1fr);
    gap: 1.25rem;
    min-height: 0;
    padding: 1.15rem 0;
  }

  .offer-timeline-row > [aria-hidden="true"] {
    display: none;
  }

  .offer-timeline-pin {
    grid-column: 1;
    grid-row: 1;
    width: 4.2rem;
    height: 4.2rem;
    justify-self: center;
  }

  .offer-timeline-card {
    grid-column: 2;
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .offer-timeline-card h3 {
    font-size: 1.8rem;
  }

  .offer-timeline-card p {
    font-size: 1rem;
  }

  .intro-grid,
  .feature-grid,
  .projects-grid,
  .offer-columns,
  .contact-grid,
  .contact-showcase__grid,
  .detail-grid,
  .comfort-showcase__grid,
  .health-showcase__grid,
  .security-showcase__grid,
  .mood-showcase__grid,
  .control-showcase__grid,
  .logos-grid,
  .logos-grid-architects,
  .partners-showcase__logos,
  .partners-showcase__logos--architects {
    grid-template-columns: 1fr;
  }

  .comfort-showcase {
    padding-top: 2rem;
  }

  .comfort-showcase__hero {
    min-height: 0;
    padding-top: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
      url("/assets/img/comfort/comfort-intro.jpg") center top / 30rem auto no-repeat;
  }

  .comfort-showcase__box {
    margin-left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .comfort-showcase__box p {
    max-width: none;
    font-size: 1rem;
  }

  .comfort-showcase__grid {
    row-gap: 4rem;
    padding: 4.5rem 0 0;
  }

  .comfort-showcase__item {
    max-width: none;
  }

  .health-showcase__container {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .health-showcase__intro {
    margin-left: 0;
    margin-bottom: 4.5rem;
  }

  .health-showcase__intro p {
    max-width: none;
    font-size: 1rem;
  }

  .health-showcase__grid {
    gap: 4rem;
  }

  .health-showcase__item {
    min-height: 0;
    padding: 5.25rem 1.5rem 1.75rem;
  }

  .health-showcase__icon {
    left: 1.5rem;
  }

  .security-showcase__frame {
    width: min(calc(100% - 1rem), 1920px);
    padding: 0.75rem;
  }

  .security-showcase__container {
    padding-top: 1.5rem;
  }

  .security-showcase__intro {
    margin-left: 0;
    max-width: none;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .security-showcase__intro p {
    font-size: 1rem;
  }

  .security-showcase__panel {
    width: calc(100% - 1.5rem);
    padding: 2.5rem 1.25rem 2rem;
  }

  .security-showcase__item:nth-child(4),
  .security-showcase__item:nth-child(5) {
    grid-column: auto;
  }

  .mood-showcase__container {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .mood-showcase__intro {
    margin-left: 0;
    margin-bottom: 4.5rem;
  }

  .mood-showcase__intro p {
    max-width: none;
    font-size: 1rem;
  }

  .mood-showcase__grid {
    gap: 4rem;
  }

  .mood-showcase__item {
    min-height: 0;
    padding: 5.2rem 1.5rem 1.75rem;
  }

  .mood-showcase__icon {
    left: 1.5rem;
  }

  .control-showcase__hero {
    min-height: 0;
    padding-top: 1rem;
  }

  .control-showcase__box {
    width: calc(100% - 1rem);
    margin-left: 0.5rem;
    padding: 1.75rem 1.5rem;
  }

  .control-showcase__box p {
    max-width: none;
    font-size: 1rem;
  }

  .control-showcase__grid {
    padding: 4.25rem 0 0;
    gap: 4rem;
  }

  .projects-showcase__header h2 {
    font-size: clamp(2rem, 10vw, 2.55rem);
    letter-spacing: 0.16em;
  }

  .project-filters {
    gap: 0.55rem;
  }

  .filter-pill {
    min-height: 2.55rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.84rem;
  }

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

  .project-card__caption {
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
    font-size: 0.98rem;
  }

  .projects-note {
    text-align: left;
    font-size: 0.9rem;
  }

  .project-lightbox__dialog {
    width: min(calc(100% - 1rem), 1000px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.8rem;
    padding: 5rem 0 1.5rem;
  }

  .project-lightbox__close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .project-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .project-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.04);
  }

  .project-lightbox__nav--prev {
    left: 0.5rem;
  }

  .project-lightbox__nav--next {
    right: 0.5rem;
  }

  .control-showcase__item {
    max-width: none;
  }

  .partners-showcase__container {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .partners-showcase__header h2,
  .contact-showcase__header h2 {
    letter-spacing: 0.14em;
  }

  .partners-showcase__hero {
    margin-top: 2rem;
    padding: 1rem 0;
  }

  .partners-showcase__hero-box {
    width: calc(100% - 1rem);
    margin-left: 0.5rem;
    padding: 1.5rem;
  }

  .partners-showcase__hero-box p {
    font-size: 1rem;
  }

  .partners-showcase__group {
    margin-top: 2rem;
  }

  .partners-showcase__logos {
    gap: 1rem;
  }

  .partners-showcase__logo {
    min-height: 5.5rem;
  }

  .contact-showcase__container {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .contact-showcase__header h3 {
    margin-top: 2.5rem;
    font-size: 1.45rem;
  }

  .contact-showcase__grid {
    margin-top: 3.25rem;
    gap: 2rem;
  }

  .contact-showcase__item {
    gap: 1rem;
  }

  .contact-showcase__icon {
    font-size: 2.4rem;
  }

  .contact-showcase__content h4 {
    font-size: 1.4rem;
  }

  .project-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .hero-stage {
    min-height: 36rem;
    padding-top: 7rem;
    padding-bottom: 5.5rem;
  }

  .hero-panel {
    padding: 1.35rem 1rem;
  }

  .hero-title-main {
    font-size: clamp(2.35rem, 14vw, 3.4rem);
    letter-spacing: 0.06em;
  }

  .hero-subtitle {
    font-size: clamp(1.05rem, 5.2vw, 1.45rem);
  }

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

  .project-lightbox__nav {
    width: 2.9rem;
    height: 2.9rem;
    font-size: 2rem;
  }
}
