@charset "UTF-8";
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../fonts/IBMPlexSansArabic-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../fonts/IBMPlexSansArabic-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../fonts/IBMPlexSansArabic-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../fonts/IBMPlexSansArabic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../fonts/IBMPlexSansArabic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../fonts/IBMPlexSansArabic-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../fonts/IBMPlexSansArabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f3eee6;
  color: #29251f;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
@media (max-width: 850px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 380px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

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

img {
  display: block;
  width: 100%;
}

button {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px clamp(28px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
.header .brand {
  display: flex;
  align-items: center;
  color: #f8f5ef;
}
.header .brand__logo {
  width: clamp(100px, 12vw, 150px);
  -o-object-fit: contain;
     object-fit: contain;
}
.header .navigation {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3vw, 55px);
  margin-left: auto;
  margin-right: clamp(35px, 4vw, 65px);
}
.header .navigation a {
  position: relative;
  color: rgba(248, 245, 239, 0.78);
  font-size: 10px;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.header .navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: #d5b27a;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.header .navigation a:hover, .header .navigation a:focus-visible {
  color: #f8f5ef;
}
.header .navigation a:hover::after, .header .navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header .header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header__actions .language-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(213, 178, 122, 0.75);
  border-radius: 12px;
  background: rgba(248, 245, 239, 0.05);
  color: rgba(248, 245, 239, 0.85);
  font-family: "IBM Plex Sans Arabic", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.header .header__actions .language-toggle .language-toggle__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b68a48;
}
.header .header__actions .language-toggle .language-toggle__text {
  display: block;
}
.header .header__actions .language-toggle:hover {
  background: #b68a48;
  border-color: #b68a48;
  color: #0d1b2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 138, 72, 0.35);
}
.header .header__actions .language-toggle:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 3px;
}
@media (max-width: 1100px) {
  .header .navigation {
    gap: 20px;
    margin-right: 25px;
  }
  .header .navigation a {
    font-size: 8px;
  }
}
@media (max-width: 850px) {
  .header {
    padding: 22px 25px;
  }
  .header .navigation {
    display: none;
  }
  .header .language {
    display: block;
  }
  .header .header__divider {
    display: block;
  }
}
@media (max-width: 600px) {
  .header .brand__logo {
    width: 180px;
  }
  .header .header__divider {
    display: none;
  }
}
@media (max-width: 380px) {
  .header {
    padding: 18px 18px;
  }
  .header .brand__logo {
    width: 88px;
  }
}

.bottom-nav {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 300;
  width: min(94vw, 430px);
  height: 66px;
  background: #0d1b2a;
  border-radius: 100px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(213, 178, 122, 0.12);
}
.bottom-nav__item {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
  color: rgba(248, 245, 239, 0.5);
  transition: color 0.4s ease, transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.bottom-nav__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.bottom-nav__item span {
  font-size: 9px;
  white-space: nowrap;
}
.bottom-nav__item:hover {
  color: rgba(248, 245, 239, 0.85);
}
.bottom-nav__item.active:not(.bottom-nav__item--cta) {
  color: #d5b27a;
}
.bottom-nav__item--cta {
  color: #0d1b2a;
}
.bottom-nav__item--cta svg {
  transform: translateY(-14px);
}
.bottom-nav__item--cta span {
  color: #d5b27a;
}
.bottom-nav__item--cta:hover {
  color: #0d1b2a;
}
.bottom-nav__selector {
  position: absolute;
  z-index: 0;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 6px solid #0d1b2a;
  background: linear-gradient(155deg, #d5b27a, #b68a48);
  box-shadow: 0 10px 22px rgba(182, 138, 72, 0.45);
}
@media (max-width: 850px) {
  .bottom-nav {
    display: flex;
    align-items: center;
    padding: 0 4px;
  }
}
@media (max-width: 380px) {
  .bottom-nav {
    height: 60px;
  }
  .bottom-nav__selector {
    top: -14px;
    width: 42px;
    height: 42px;
  }
  .bottom-nav__item--cta svg {
    transform: translateY(-12px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bottom-nav__item, .bottom-nav__item svg, .bottom-nav__selector {
    transition: none !important;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: #0d1b2a;
  color: #f8f5ef;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.08);
  will-change: transform;
  filter: saturate(0.78) contrast(1.04);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 19, 15, 0.94) 0%, rgba(24, 19, 15, 0.8) 22%, rgba(24, 19, 15, 0.32) 48%, rgba(24, 19, 15, 0.05) 75%, rgba(24, 19, 15, 0.28) 100%), linear-gradient(0deg, rgba(24, 19, 15, 0.72) 0%, transparent 35%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero__content {
  position: absolute;
  left: clamp(45px, 11vw, 175px);
  top: 50%;
  transform: translateY(-43%);
  z-index: 3;
  display: flex;
  gap: 45px;
  max-width: 100%;
}
.hero__copy {
  width: min(580px, 45vw);
}
.hero__eyebrow {
  display: block;
  margin-bottom: 25px;
  color: #d5b27a;
  font-size: 14px;
  font-weight: 400;
  opacity: 0;
}
.hero__title {
  margin: 0;
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 8vw - 10px, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: #f8f5ef;
}
.hero__title span {
  display: block;
}
.hero__title span:first-child, .hero__title span:last-child {
  transform: translateX(-80px);
  opacity: 0;
}
.hero__line {
  width: 65px;
  height: 1px;
  margin: 38px 0 28px;
  background: #b68a48;
  transform-origin: left;
  transform: scaleX(0);
}
.hero__description {
  max-width: 380px;
  margin-bottom: 32px;
  line-height: 1.8;
  color: rgba(248, 245, 239, 0.72);
  opacity: 0;
  transform: translateY(20px);
}
.hero__button {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border: 1px solid rgba(213, 178, 122, 0.75);
  border-radius: 100px;
  color: #f8f5ef;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.4s ease;
}
.hero__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b68a48;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}
.hero__button span {
  position: relative;
  z-index: 1;
  font-size: 10px;
}
.hero__button-arrow {
  font-size: 20px !important;
  transition: transform 0.35s ease;
}
.hero__button:hover, .hero__button:focus-visible {
  color: #0d1b2a;
}
.hero__button:hover::before, .hero__button:focus-visible::before {
  transform: translateX(0);
}
.hero__button:hover .hero__button-arrow, .hero__button:focus-visible .hero__button-arrow {
  transform: translateX(7px);
}
.hero__button--solid {
  color: #0d1b2a;
  border-color: #b68a48;
}
.hero__button--solid::before {
  background: #b68a48;
  transform: translateX(0);
}
.hero__button--solid:hover::before, .hero__button--solid:focus-visible::before {
  background: #d5b27a;
}
.hero__button--outline {
  border-color: rgba(248, 245, 239, 0.35);
}
.hero__button--outline::before {
  background: #f8f5ef;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px clamp(40px, 4vw, 65px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 5;
}
.hero__features {
  display: flex;
  gap: clamp(25px, 4vw, 70px);
}
.hero .feature {
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero .feature__icon {
  width: 33px;
  height: 33px;
  color: #d5b27a;
  flex-shrink: 0;
}
.hero .feature__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .feature__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero .feature__content strong {
  font-size: 16px;
  font-weight: 500;
  color: #d5b27a;
  white-space: nowrap;
}
.hero .feature__content span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(248, 245, 239, 0.58);
  white-space: nowrap;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll span {
  font-size: 8px;
  color: rgba(248, 245, 239, 0.6);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(248, 245, 239, 0.2);
  position: relative;
}
.hero__scroll-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 18px;
  background: #d5b27a;
  animation: scrollLine 2s infinite ease-in-out;
}
.hero__scroll-dot {
  position: absolute;
  bottom: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid #d5b27a;
  border-radius: 50%;
  background: #0d1b2a;
}
@media (max-width: 1300px) {
  .hero .hero__copy {
    width: min(520px, 48vw);
  }
}
@media (max-width: 1100px) {
  .hero__content {
    left: 8vw;
  }
  .hero .hero__copy {
    width: min(480px, 52vw);
  }
  .hero__features {
    gap: 25px;
  }
}
@media (max-width: 850px) {
  .hero__content {
    left: 35px;
    right: 35px;
    gap: 25px;
  }
  .hero .hero__copy {
    width: 100%;
  }
  .hero__title {
    font-size: clamp(55px, 13vw - 10px, 100px);
  }
  .hero__description {
    max-width: 100%;
  }
  .hero__bottom {
    justify-content: center;
    padding: 25px;
  }
  .hero__features {
    justify-content: center;
    gap: 20px;
    row-gap: 14px;
  }
  .hero .feature {
    gap: 10px;
  }
  .hero .feature__icon {
    width: 36px;
    height: 36px;
  }
  .hero .feature__content strong {
    font-size: 14px;
  }
  .hero .feature__content span {
    font-size: 10px;
  }
  .hero__scroll {
    display: none;
  }
}
@media (max-width: 700px) {
  .hero__content {
    left: 28px;
    right: 28px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 100svh;
  }
  .hero .hero__image {
    -o-object-position: center;
       object-position: center;
  }
  .hero__overlay {
    background: linear-gradient(90deg, rgba(24, 19, 15, 0.94), rgba(24, 19, 15, 0.6)), linear-gradient(0deg, rgba(24, 19, 15, 0.85), transparent 55%);
  }
  .hero__content {
    top: 48%;
    left: 22px;
    right: 22px;
    transform: translateY(-45%);
  }
  .hero .hero__copy {
    text-align: center;
  }
  .hero__title {
    font-size: clamp(40px, 17vw - 10px, 80px);
    line-height: 1.05;
  }
  .hero__eyebrow {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .hero__line {
    margin: 28px auto 20px;
  }
  .hero__description {
    font-size: 18px;
    max-width: 100%;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__button {
    min-width: 0;
    width: 100%;
    max-width: 260px;
    height: 52px;
  }
  .hero__bottom {
    justify-content: center;
    padding: 18px 22px;
  }
}
@media (max-width: 380px) {
  .hero__title {
    font-size: clamp(32px, 16vw - 10px, 60px);
  }
}
@media (max-height: 560px) and (max-width: 900px) {
  .hero__scroll {
    display: none;
  }
  .hero__content {
    top: 50%;
    transform: translateY(-50%);
  }
  .hero__eyebrow {
    margin-bottom: 12px;
  }
  .hero__title {
    font-size: clamp(40px, 8vw, 70px);
  }
  .hero__line {
    margin: 16px 0 14px;
  }
  .hero__description {
    margin-bottom: 16px;
    font-size: 12px;
  }
  .hero__button {
    height: 46px;
  }
}

.about-section {
  min-height: 100vh;
  padding: 80px 40px;
  display: flex;
  align-items: center;
}
.about-section .about-container {
  width: min(1450px, 100%);
  min-height: 780px;
  margin: auto;
  display: grid;
  grid-template-columns: 20% 50% 30%;
  border-radius: 28px;
  overflow: hidden;
  background: #f8f5ef;
  box-shadow: 0 30px 80px rgba(44, 34, 25, 0.12);
  opacity: 0;
  transform: translateY(80px);
}
.about-section .about-container .brand-card {
  position: relative;
  padding: 45px 42px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  background: linear-gradient(150deg, #7b6753 0%, #5c4938 55%, #30261f 100%);
  overflow: hidden;
}
.about-section .about-container .brand-card .brand-top {
  position: relative;
  z-index: 2;
}
.about-section .about-container .brand-card .brand-top .eyebrow {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.75);
}
.about-section .about-container .brand-card .brand-top .brand-name {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.48);
}
.about-section .about-container .brand-card .brand-top .brand-mark {
  width: 250px;
  margin-left: auto;
  margin-top: -5px;
  position: relative;
  border-radius: 50%;
  color: #d5b27a;
  opacity: 0.6;
}
.about-section .about-container .brand-card .brand-top .brand-mark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-section .about-container .brand-card .brand-stats {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 45px;
}
.about-section .about-container .brand-card .brand-stats .stat {
  position: relative;
  padding: 20px 0;
}
.about-section .about-container .brand-card .brand-stats .stat:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.about-section .about-container .brand-card .brand-stats .stat .stat-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 5vw, 90px);
  font-weight: 400;
  line-height: 0.8;
}
.about-section .about-container .brand-card .brand-stats .stat .stat-plus {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  color: #d5b27a;
}
.about-section .about-container .brand-card .brand-stats .stat p {
  margin-top: 17px;
  font-size: 10px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.about-section .about-container .brand-card .brand-values {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}
.about-section .about-container .brand-card .brand-values .value {
  padding: 0 14px;
  text-align: center;
}
.about-section .about-container .brand-card .brand-values .value:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.about-section .about-container .brand-card .brand-values .value:first-child {
  padding-left: 0;
}
.about-section .about-container .brand-card .brand-values .value:last-child {
  padding-right: 0;
}
.about-section .about-container .brand-card .brand-values .value-icon {
  height: 30px;
  font-size: 22px;
  color: #d5b27a;
  margin-bottom: 12px;
}
.about-section .about-container .brand-card .brand-values .value h4 {
  font-size: 9px;
  font-weight: 500;
  margin-bottom: 7px;
}
.about-section .about-container .brand-card .brand-values .value p {
  font-size: 8px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.about-section .about-container .about-content {
  padding: 80px 65px;
  display: flex;
  align-items: center;
  background: #f8f5ef;
}
.about-section .about-container .about-content .content-inner {
  width: 100%;
}
.about-section .about-container .about-content .content-inner .section-label {
  display: block;
  margin-bottom: 28px;
  color: #b68a48;
  font-size: 12px;
  font-weight: 500;
}
.about-section .about-container .about-content .content-inner .about-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.2vw, 76px);
  line-height: 0.98;
  margin-bottom: 20px;
  overflow: hidden;
  font-weight: 500;
}
.about-section .about-container .about-content .content-inner .about-title span {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}
.about-section .about-container .about-content .content-inner .gold-line {
  width: 65px;
  height: 1px;
  margin: 42px 0;
  background: #b68a48;
  transform-origin: left;
  transform: scaleX(0);
}
.about-section .about-container .about-content .content-inner .about-description {
  max-width: 520px;
}
.about-section .about-container .about-content .content-inner .about-description p {
  font-size: 14px;
  line-height: 1.8;
  color: #756e65;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
}
.about-section .about-container .about-content .content-inner .story-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 18px;
  min-width: 270px;
  height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(213, 178, 122, 0.75);
  border-radius: 100px;
  color: #b68a48;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.4s ease;
}
.about-section .about-container .about-content .content-inner .story-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b68a48;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}
.about-section .about-container .about-content .content-inner .story-button span {
  position: relative;
  z-index: 1;
  font-size: 10px;
}
.about-section .about-container .about-content .content-inner .story-button .arrow {
  font-size: 20px !important;
  transition: transform 0.35s ease;
}
.about-section .about-container .about-content .content-inner .story-button:hover {
  color: #ffffff;
}
.about-section .about-container .about-content .content-inner .story-button:hover::before {
  transform: translateX(0);
}
.about-section .about-container .about-content .content-inner .story-button:hover .arrow {
  transform: translateX(7px);
}
.about-section .about-container .about-content .content-inner .content-metrics {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid rgba(41, 37, 31, 0.12);
}
.about-section .about-container .about-content .content-inner .content-metrics .metric {
  display: flex;
  align-items: center;
  flex: 0 1 46%;
  gap: 15px;
}
.about-section .about-container .about-content .content-inner .content-metrics .metric:not(:last-child) {
  padding-right: 45px;
}
.about-section .about-container .about-content .content-inner .content-metrics .metric:hover .metric-icon {
  background: rgba(182, 138, 72, 0.25);
  transform: scale(1.1);
}
.about-section .about-container .about-content .content-inner .content-metrics .metric-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(182, 138, 72, 0.12);
  border-radius: 50%;
  color: #b68a48;
  transition: background 0.3s ease, transform 0.3s ease;
}
.about-section .about-container .about-content .content-inner .content-metrics .metric-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.about-section .about-container .about-content .content-inner .content-metrics .metric strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}
.about-section .about-container .about-content .content-inner .content-metrics .metric span {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  color: #756e65;
}
.about-section .about-container .image-card {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  clip-path: ellipse(100% 75% at 100% 50%);
  background: #b8aa98;
}
.about-section .about-container .image-card .image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.about-section .about-container .image-card .image-wrapper .interior-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.15);
  will-change: transform;
}
.about-section .about-container .image-card .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 30, 25, 0.12), transparent 40%);
}
@media (max-width: 1200px) {
  .about-section .about-container {
    grid-template-columns: 34% 36% 30%;
  }
  .about-section .about-content {
    padding: 60px 45px;
  }
}
@media (max-width: 1100px) {
  .about-section {
    padding: 40px 25px;
  }
  .about-section .about-container {
    grid-template-columns: 32% 38% 30%;
    min-height: 650px;
  }
  .about-section .brand-card {
    padding: 35px 25px 25px;
  }
  .about-section .about-content {
    padding: 50px 35px;
  }
  .about-section .content-metrics {
    gap: 20px;
  }
  .about-section .metric:not(:last-child) {
    padding-right: 20px;
  }
}
@media (max-width: 950px) {
  .about-section .about-container {
    grid-template-columns: 42% 58%;
  }
  .about-section .image-card {
    grid-column: 1/-1;
    min-height: 420px;
    clip-path: none;
  }
}
@media (max-width: 850px) {
  .about-section {
    padding: 30px 20px;
  }
  .about-section .about-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-section .brand-card {
    min-height: 500px;
  }
  .about-section .about-content {
    min-height: auto;
    padding: 55px 35px;
  }
  .about-section .image-card {
    display: none;
  }
  .about-section .content-metrics {
    flex-wrap: wrap;
    row-gap: 25px;
  }
}
@media (max-width: 650px) {
  .about-section .about-content {
    padding: 50px 28px;
  }
  .about-section .about-title {
    font-size: clamp(38px, 9vw, 52px);
  }
  .about-section .about-description p {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .about-section {
    padding: 15px;
  }
  .about-section .about-container {
    border-radius: 20px;
  }
  .about-section .brand-card {
    min-height: 460px;
    padding: 30px 22px;
  }
  .about-section .brand-stats {
    margin-bottom: 30px;
  }
  .about-section .brand-values .value p {
    display: none;
  }
  .about-section .about-content {
    padding: 45px 22px;
  }
  .about-section .about-title {
    font-size: clamp(32px, 10vw, 44px);
  }
  .about-section .content-metrics {
    gap: 16px;
    margin-top: 40px;
  }
  .about-section .metric {
    gap: 8px;
  }
  .about-section .metric:not(:last-child) {
    padding-right: 14px;
  }
  .about-section .metric-icon {
    width: 36px;
    height: 36px;
  }
  .about-section .metric-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
  }
  .about-section .metric:hover .metric-icon {
    background: rgba(182, 138, 72, 0.25);
    transform: scale(1.1);
  }
  .about-section .metric:hover strong {
    font-size: 20px;
  }
  .about-section .metric:hover span {
    font-size: 7.5px;
  }
  .about-section .story-button {
    gap: 20px;
    padding: 13px 18px;
  }
}
@media (max-width: 380px) {
  .about-section .brand-values {
    display: flex;
    flex-wrap: wrap;
    row-gap: 18px;
  }
  .about-section .brand-values .value {
    flex: 1 1 33%;
    border-right: none !important;
  }
  .about-section .content-metrics .metric {
    flex: 1 1 45%;
  }
  .about-section .content-metrics .metric:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
}

.journey {
  position: relative;
  padding: 70px clamp(25px, 5vw, 80px);
  background: #f8f5ef;
  color: #0d1b2a;
  overflow: hidden;
}
.journey__intro {
  width: min(650px, 100%);
  margin: 0 auto 70px;
  text-align: center;
}
.journey__eyebrow {
  display: block;
  color: #b68a48;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
}
.journey__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(55px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.88;
}
.journey__title em {
  color: #b68a48;
  font-style: italic;
}
.journey__intro-text {
  max-width: 360px;
  margin: 20px auto 0;
  color: #756e65;
  font-weight: 500;
  line-height: 1.8;
}
.journey__experience {
  width: min(1350px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
  gap: 0;
}
.journey__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: clamp(30px, 5vw, 80px);
}
.journey__step {
  position: relative;
  min-height: 125px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(36, 30, 25, 0.12);
  opacity: 0.32;
  cursor: pointer;
  transition: opacity 0.6s ease;
}
.journey__step:last-child {
  border-bottom: 1px solid rgba(36, 30, 25, 0.12);
}
.journey__step:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: -2px;
}
.journey__step.active {
  opacity: 1;
}
.journey__step.active .journey__step-number {
  color: #b68a48;
}
.journey__step.active .journey__step-label {
  color: #b68a48;
}
.journey__step.active .journey__step-content h3 {
  transform: translateX(0);
}
.journey__step.active .journey__step-content p {
  opacity: 1;
}
.journey__step-number {
  padding-top: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #a99b8b;
  transition: color 0.5s ease;
}
.journey__step-content h3 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.7;
  transform: translateX(-10px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.journey__step-content p {
  max-width: 390px;
  margin: 13px 0 0;
  color: #756e65;
  font-size: 12px;
  line-height: 1.75;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.journey__step-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #756e65;
  transition: color 0.5s ease;
}
.journey__progress {
  position: absolute;
  left: -18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(36, 30, 25, 0.1);
  border-radius: 2px;
  overflow: hidden;
  display: none;
}
.journey__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: #b68a48;
  border-radius: 2px;
}
.journey__visual {
  position: relative;
  height: min(760px, 80vh);
  min-height: 600px;
  overflow: hidden;
  border-radius: 28px;
  background: #30261f;
}
.journey__image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.journey__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(0.78) contrast(1.03);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.journey__image.active {
  opacity: 1;
  transform: scale(1);
}
.journey__image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(24, 19, 15, 0.08), transparent 45%, rgba(24, 19, 15, 0.68));
}
.journey__visual-info {
  position: absolute;
  left: 35px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #f8f5ef;
  z-index: 2;
}
.journey__visual-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: #d5b27a;
}
.journey__visual-line {
  width: 45px;
  height: 1px;
  background: rgba(248, 245, 239, 0.45);
}
.journey__visual-category {
  font-size: 9px;
  color: rgba(248, 245, 239, 0.8);
}
.journey__counter {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(248, 245, 239, 0.65);
  font-size: 10px;
}
.journey__counter .current {
  color: #d5b27a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}
@media (min-width: 1001px) {
  .journey__steps {
    padding-left: 18px;
  }
  .journey__progress {
    display: block;
  }
}
@media (max-width: 1200px) {
  .journey__experience {
    grid-template-columns: 38% 62%;
  }
}
@media (max-width: 1000px) {
  .journey {
    padding: 110px 30px;
  }
  .journey__experience {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
  }
  .journey__visual {
    order: -1;
    height: 55vh;
    min-height: 420px;
    position: sticky;
    top: 20px;
    margin-bottom: 10px;
  }
  .journey__steps {
    min-height: auto;
    padding-right: 0;
    margin-bottom: 0;
  }
  .journey__step {
    min-height: 105px;
  }
}
@media (max-width: 650px) {
  .journey {
    padding: 90px 18px;
  }
  .journey__intro {
    margin-bottom: 65px;
  }
  .journey__title {
    font-size: clamp(52px, 16vw, 80px);
  }
  .journey__intro-text {
    font-size: 12px;
  }
  .journey__steps {
    margin-bottom: 25px;
  }
  .journey__step {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 23px 0;
    min-height: 95px;
  }
  .journey__step-number {
    font-size: 13px;
  }
  .journey__step-content h3 {
    font-size: 22px;
  }
  .journey__step-content p {
    font-size: 11px;
    line-height: 1.7;
  }
  .journey__visual {
    height: 42svh;
    min-height: 320px;
    border-radius: 20px;
    top: 14px;
  }
  .journey__visual-info {
    left: 22px;
    bottom: 22px;
  }
  .journey__counter {
    top: 22px;
    right: 22px;
  }
}
@media (max-width: 400px) {
  .journey__step {
    grid-template-columns: 30px 1fr;
  }
  .journey__step-content h3 {
    font-size: 14px;
  }
}

.what-we-do {
  position: relative;
  padding: clamp(100px, 10vw, 170px) clamp(18px, 5vw, 80px) 90px;
  background: #f8f5ef;
  color: #0d1b2a;
  overflow: hidden;
  min-height: 700px;
}
.what-we-do__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 90px);
}
.what-we-do__eyebrow {
  display: block;
  color: #b68a48;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.what-we-do__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.2vw, 76px);
  font-weight: 500;
  line-height: 0.98;
}
.what-we-do__intro {
  max-width: 520px;
  margin: 24px auto 0;
  color: #756e65;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.8;
}
.what-we-do__grid {
  width: min(1450px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.what-we-do__page {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 275px;
  gap: 20px;
}
.what-we-do .service-card {
  position: relative;
  min-width: 0;
  max-width: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  height: 275px;
  min-height: 200px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, box-shadow 0.5s ease;
}
.what-we-do .service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.what-we-do .service-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.what-we-do .service-card__icon img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
.what-we-do .service-card__number {
  color: #b68a48;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}
.what-we-do .service-card__content {
  margin-top: auto;
}
.what-we-do .service-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.1;
}
.what-we-do .service-card p {
  max-width: 240px;
  margin: 15px 0 0;
  color: #756e65;
  font-size: 12px;
  line-height: 1.75;
}
.what-we-do .service-card:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(13, 27, 42, 0.07);
}
.what-we-do .service-card:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 5px;
}
.what-we-do .service-card.is-active {
  background: #0d1b2a;
  color: #f8f5ef;
}
.what-we-do .service-card.is-active .service-card__number,
.what-we-do .service-card.is-active .service-card__icon {
  color: #d5b27a;
}
.what-we-do .service-card.is-active p {
  color: rgba(248, 245, 239, 0.65);
}
.what-we-do .service-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #a99b8b;
}
.what-we-do .service-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.what-we-do .service-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 27, 42, 0.25));
  pointer-events: none;
}
.what-we-do .service-image__number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(248, 245, 239, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}
.what-we-do .service-image:hover img {
  transform: scale(1.08);
}
.what-we-do .service-image {
  height: 275px;
  min-height: 200px;
}
.what-we-do .service-image--engineering {
  margin-bottom: 0;
}
@media (max-width: 1400px) {
  .what-we-do__page {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min(260px, 18vw);
  }
}
@media (max-width: 1200px) {
  .what-we-do {
    padding: clamp(80px, 8vw, 140px) clamp(18px, 4vw, 60px) clamp(60px, 6vw, 90px);
  }
  .what-we-do__grid {
    gap: clamp(12px, 1.5vw, 20px);
  }
  .what-we-do__page {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: min(220px, 20vw);
    gap: clamp(12px, 1.5vw, 20px);
  }
}
@media (max-width: 900px) {
  .what-we-do {
    padding: clamp(60px, 7vw, 100px) clamp(15px, 3vw, 40px) clamp(50px, 5vw, 80px);
  }
  .what-we-do__header {
    margin-bottom: clamp(40px, 5vw, 70px);
  }
  .what-we-do__title {
    font-size: clamp(38px, 5vw, 52px);
  }
  .what-we-do__grid {
    gap: clamp(10px, 1.2vw, 15px);
  }
  .what-we-do__page {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: min(200px, 22vw);
    gap: clamp(10px, 1.2vw, 15px);
  }
}
@media (max-width: 768px) {
  .what-we-do {
    padding: clamp(50px, 6vw, 80px) clamp(12px, 3vw, 25px) clamp(40px, 5vw, 70px);
  }
  .what-we-do__header {
    margin-bottom: clamp(35px, 4.5vw, 60px);
  }
  .what-we-do__title {
    font-size: clamp(32px, 5.5vw, 42px);
  }
  .what-we-do__page {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vw, 24px);
  }
}
@media (max-width: 650px) {
  .what-we-do {
    padding: clamp(45px, 6vw, 70px) clamp(10px, 2.5vw, 20px) clamp(35px, 5vw, 60px);
  }
  .what-we-do__header {
    margin-bottom: clamp(30px, 4.5vw, 50px);
  }
  .what-we-do__eyebrow {
    font-size: clamp(9px, 1.5vw, 10px);
    margin-bottom: clamp(15px, 2vw, 20px);
  }
  .what-we-do__title {
    font-size: clamp(28px, 6vw, 38px);
    line-height: 1.05;
  }
  .what-we-do__intro {
    font-size: clamp(11px, 1.5vw, 13px);
    max-width: 100%;
  }
  .what-we-do__grid {
    flex-direction: column;
    align-items: center;
  }
  .what-we-do__page {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vw, 24px);
  }
  .what-we-do .service-image {
    height: 250px;
    min-height: 200px;
  }
  .what-we-do .service-image--engineering {
    margin-bottom: clamp(6px, 1.2vw, 10px);
  }
  .what-we-do .service-card {
    padding: clamp(24px, 3.5vw, 32px);
    height: auto;
    min-height: 150px;
    gap: 12px;
  }
  .what-we-do .service-card h3 {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: clamp(8px, 1.2vw, 12px);
  }
  .what-we-do .service-card p {
    font-size: clamp(11px, 1.5vw, 13px);
    max-width: 100%;
    line-height: 1.7;
  }
  .what-we-do .service-card__icon {
    width: clamp(32px, 4.5vw, 40px);
    height: clamp(32px, 4.5vw, 40px);
  }
  .what-we-do .service-card__number {
    font-size: clamp(12px, 1.8vw, 14px);
  }
  .what-we-do .service-image__number {
    font-size: clamp(13px, 2vw, 16px);
    top: clamp(16px, 2.5vw, 22px);
    right: clamp(16px, 2.5vw, 22px);
  }
}
@media (max-width: 450px) {
  .what-we-do {
    padding: clamp(35px, 5vw, 50px) clamp(8px, 2vw, 15px) clamp(30px, 4vw, 50px);
  }
  .what-we-do__header {
    margin-bottom: clamp(25px, 4vw, 35px);
  }
  .what-we-do__eyebrow {
    font-size: clamp(8px, 1.2vw, 9px);
    margin-bottom: clamp(12px, 1.5vw, 15px);
  }
  .what-we-do__title {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .what-we-do__intro {
    font-size: clamp(10px, 1.4vw, 12px);
  }
  .what-we-do__page {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 18px);
  }
  .what-we-do .service-image {
    height: 220px;
    min-height: 180px;
  }
  .what-we-do .service-image--engineering {
    margin-bottom: clamp(5px, 1vw, 8px);
  }
  .what-we-do .service-card {
    padding: clamp(18px, 2.5vw, 24px);
    height: auto;
    min-height: 140px;
  }
  .what-we-do .service-card h3 {
    font-size: clamp(15px, 2.2vw, 18px);
  }
  .what-we-do .service-card p {
    font-size: clamp(10px, 1.3vw, 12px);
  }
  .what-we-do .service-card__icon {
    width: clamp(28px, 4vw, 36px);
    height: clamp(28px, 4vw, 36px);
  }
  .what-we-do .service-card__number {
    font-size: clamp(11px, 1.5vw, 13px);
  }
  .what-we-do .service-image__number {
    font-size: clamp(12px, 1.8vw, 14px);
    top: clamp(14px, 2vw, 18px);
    right: clamp(14px, 2vw, 18px);
  }
}
@media (max-width: 380px) {
  .what-we-do {
    padding: 30px 10px 30px;
  }
  .what-we-do__header {
    margin-bottom: 25px;
  }
  .what-we-do__eyebrow {
    font-size: 8px;
    margin-bottom: 12px;
  }
  .what-we-do__title {
    font-size: clamp(20px, 6vw, 26px);
  }
  .what-we-do__intro {
    font-size: 10px;
  }
  .what-we-do__page {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .what-we-do .service-image {
    height: 200px;
    min-height: 160px;
  }
  .what-we-do .service-image--engineering {
    margin-bottom: 5px;
  }
  .what-we-do .service-card {
    padding: 18px 16px;
    height: auto;
    min-height: 130px;
  }
  .what-we-do .service-card h3 {
    font-size: 14px;
  }
  .what-we-do .service-card p {
    font-size: 10px;
  }
  .what-we-do .service-card__icon {
    width: 28px;
    height: 28px;
  }
  .what-we-do .service-card__number {
    font-size: 11px;
  }
  .what-we-do .service-image__number {
    font-size: 12px;
    top: 14px;
    right: 14px;
  }
}

.scope-section {
  --bg: #f5f0e8;
  --card: #faf8f4;
  --gold: #bd8c42;
  --gold-light: #d8bb8c;
  --text: #28251f;
  --muted: #706a61;
  --border: rgba(151, 123, 82, 0.22);
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 110px 0 120px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.7), transparent 38%), var(--bg);
  color: var(--text);
  isolation: isolate;
}
.scope-section__container {
  position: relative;
  z-index: 2;
  width: min(1400px, 100% - 80px);
  margin-inline: auto;
}
.scope-section__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.scope-section__decor--right {
  top: 120px;
  right: -160px;
  width: 320px;
  height: 650px;
  border: 1px solid rgba(189, 140, 66, 0.777);
  border-radius: 50%;
  transform: rotate(12deg);
}
.scope-section__decor--right::before {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(189, 140, 66, 0.777);
  border-radius: 50%;
}
.scope-section__decor--left {
  bottom: -160px;
  left: -80px;
  width: 300px;
  height: 300px;
  opacity: 0.35;
  background-image: radial-gradient(circle at 30% 30%, rgba(189, 140, 66, 0.2) 1px, transparent 1.5px);
  background-size: 14px 14px;
  -webkit-mask-image: linear-gradient(to right, transparent, black);
          mask-image: linear-gradient(to right, transparent, black);
}
.scope-section .scope-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 62px;
}
.scope-section .scope-header__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}
.scope-section .scope-header__eyebrow span:first-child,
.scope-section .scope-header__eyebrow span:last-child {
  width: 42px;
  height: 1px;
  background: var(--gold-light);
}
.scope-section .scope-header__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.1;
}
.scope-section .scope-header__star {
  margin-top: 16px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}
.scope-section .scope-header__description {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 2;
  font-weight: 400;
}
.scope-section .scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: stretch;
}
.scope-section .scope-card {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(74, 55, 30, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}
.scope-section .scope-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(74, 55, 30, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.scope-section .scope-card:hover .scope-card__image img {
  transform: scale(1.05);
}
.scope-section .scope-card:hover .scope-card__cta-arrow {
  transform: translateX(-5px);
}
.scope-section .scope-card__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 50px 36px 30px;
  text-align: center;
}
.scope-section .scope-card__image {
  position: relative;
  flex: 0 0 230px;
  width: 230px;
  overflow: hidden;
  border-radius: 28px;
  margin: 9px;
}
.scope-section .scope-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scope-section .scope-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 8, 0.03), rgba(20, 15, 8, 0.16));
  pointer-events: none;
}
.scope-section .scope-card__icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #d7ad65, #b98232);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(189, 140, 66, 0.25);
  font-size: 34px;
}
.scope-section .scope-card__icon span {
  transform: rotate(-20deg);
}
.scope-section .scope-card__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 2.3vw, 36px);
  font-weight: 600;
  line-height: 1.4;
}
.scope-section .scope-card__divider {
  display: flex;
  align-items: center;
  width: 85px;
  margin: 14px 0 27px;
  gap: 6px;
  color: var(--gold);
}
.scope-section .scope-card__divider span {
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}
.scope-section .scope-card__divider i {
  font-size: 7px;
  font-style: normal;
}
.scope-section .scope-card__items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.scope-section .scope-card__cta {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: auto;
  padding: 10px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--gold-light);
  border-radius: 15px;
  background: rgba(255, 253, 249, 0.55);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.scope-section .scope-card__cta:hover {
  background: rgba(189, 140, 66, 0.07);
  border-color: var(--gold);
}
.scope-section .scope-card__cta-arrow {
  color: var(--gold);
  font-size: 21px;
  transition: transform 0.3s ease;
}
.scope-section .scope-card .scope-item {
  min-width: 105px;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 253, 249, 0.75);
  border: 1px solid rgba(189, 140, 66, 0.18);
  border-radius: 15px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.scope-section .scope-card .scope-item:hover, .scope-section .scope-card .scope-item:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.95);
}
.scope-section .scope-card .scope-item__icon {
  display: block;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}
.scope-section .scope-card--wood .scope-card__image {
  order: 1;
}
.scope-section .scope-card--wood .scope-card__content {
  order: 2;
}
.scope-section .scope-card--furniture .scope-card__image {
  order: 2;
}
.scope-section .scope-card--furniture .scope-card__content {
  order: 1;
}
@media (max-width: 1100px) {
  .scope-section__container {
    width: min(100% - 48px, 900px);
  }
  .scope-section .scope-grid {
    gap: 24px;
  }
  .scope-section .scope-card {
    min-height: 470px;
  }
  .scope-section .scope-card__image {
    flex-basis: 180px;
    width: 180px;
  }
  .scope-section .scope-card__content {
    padding: 40px 22px 25px;
  }
  .scope-section .scope-card .scope-item {
    min-width: 90px;
    padding-inline: 10px;
  }
}
@media (max-width: 768px) {
  .scope-section {
    padding: 75px 0 80px;
  }
  .scope-section__container {
    width: calc(100% - 32px);
  }
  .scope-section__decor {
    display: none;
  }
  .scope-section .scope-header {
    margin-bottom: 42px;
  }
  .scope-section .scope-header__eyebrow {
    margin-bottom: 15px;
    font-size: 12px;
    gap: 12px;
  }
  .scope-section .scope-header__eyebrow span:first-child,
  .scope-section .scope-header__eyebrow span:last-child {
    width: 28px;
  }
  .scope-section .scope-header__title {
    font-size: 48px;
  }
  .scope-section .scope-header__description {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.9;
  }
  .scope-section .scope-header__description br {
    display: none;
  }
  .scope-section .scope-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scope-section .scope-card {
    min-height: auto;
    flex-direction: column;
    border-radius: 24px;
  }
  .scope-section .scope-card__image {
    order: 2;
    flex: none;
    width: calc(100% - 18px);
    height: 280px;
    min-height: 280px;
    margin: 9px;
    border-radius: 20px;
  }
  .scope-section .scope-card__content {
    order: 1;
    padding: 32px 22px 22px;
  }
  .scope-section .scope-card--wood .scope-card__image {
    order: 2;
  }
  .scope-section .scope-card--wood .scope-card__content {
    order: 1;
  }
  .scope-section .scope-card__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    font-size: 28px;
  }
  .scope-section .scope-card__title {
    font-size: 28px;
  }
  .scope-section .scope-card__divider {
    margin-bottom: 22px;
  }
  .scope-section .scope-card__items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
  }
  .scope-section .scope-card .scope-item {
    flex: 1;
    max-width: calc(50% - 3px);
    min-height: 65px;
    flex-direction: row;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .scope-section .scope-card__cta {
    min-height: 54px;
    font-size: 13px;
  }
}
@media (max-width: 420px) {
  .scope-section .scope-card__image {
    height: 240px;
    min-height: 240px;
  }
  .scope-section .scope-card__content {
    padding-inline: 16px;
  }
  .scope-section .scope-card__title {
    font-size: 26px;
  }
}

.space-explorer {
  position: relative;
  padding: clamp(100px, 10vw, 160px) 24px;
  background: #0d1b2a;
  color: #f8f5ef;
  overflow: hidden;
}
.space-explorer__container {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.space-explorer__header {
  max-width: 580px;
  margin: 0;
  text-align: left;
}
.space-explorer__eyebrow {
  display: block;
  margin-bottom: 28px;
  color: #b68a48;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.space-explorer__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.2vw, 76px);
  font-weight: 500;
  line-height: 0.98;
}
.space-explorer__title em {
  color: #d5b27a;
  font-style: italic;
}
.space-explorer__description {
  max-width: 480px;
  margin: 30px 0 0;
  color: rgba(248, 245, 239, 0.58);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.8;
}
.space-explorer__stage {
  position: relative;
  height: min(650px, 48vw);
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  background: #a99b8b;
}
.space-explorer__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.space-explorer__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.03);
}
.space-explorer__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.32), transparent 45%, rgba(13, 27, 42, 0.12)), linear-gradient(0deg, rgba(13, 27, 42, 0.55), transparent 45%);
}
.space-explorer .space-preview {
  position: absolute;
  left: clamp(25px, 4vw, 60px);
  top: 50%;
  width: clamp(280px, 22vw, 350px);
  padding: 10px;
  transform: translateY(-50%);
  background: rgba(248, 245, 239, 0.95);
  color: #0d1b2a;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}
.space-explorer .space-preview__image {
  position: relative;
  height: clamp(190px, 17vw, 260px);
  overflow: hidden;
  border-radius: 13px;
}
.space-explorer .space-preview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.space-explorer .space-preview__content {
  padding: 20px 16px 18px;
}
.space-explorer .space-preview__number {
  display: block;
  margin-bottom: 8px;
  color: #b68a48;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}
.space-explorer .space-preview h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.space-explorer .space-preview p {
  max-width: 270px;
  margin: 0;
  color: #756e65;
  font-size: 11px;
  line-height: 1.65;
}
.space-explorer__indicator {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(248, 245, 239, 0.75);
  font-size: 8px;
}
.space-explorer__indicator-line {
  width: 45px;
  height: 1px;
  background: #b68a48;
}
.space-explorer .space-categories {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px;
  border-radius: 100px;
  background: rgba(248, 245, 239, 0.18);
  border: 1px solid rgba(248, 245, 239, 0.2);
  backdrop-filter: blur(14px);
  max-width: calc(100% - 32px);
  overflow-x: auto;
  scrollbar-width: none;
}
.space-explorer .space-categories::-webkit-scrollbar {
  display: none;
}
.space-explorer .space-category {
  position: relative;
  flex-shrink: 0;
  border: 0;
  padding: 10px 19px;
  border-radius: 30px;
  background: transparent;
  color: rgba(248, 245, 239, 0.75);
  font-family: inherit;
  font-size: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.space-explorer .space-category:hover {
  color: #f8f5ef;
  transform: translateY(-2px);
}
.space-explorer .space-category.is-active {
  background: #f8f5ef;
  color: #0d1b2a;
}
.space-explorer .space-category:focus-visible {
  outline: 2px solid #d5b27a;
  outline-offset: 4px;
}
@media (max-width: 1100px) {
  .space-explorer__container {
    grid-template-columns: 1fr;
    gap: clamp(30px, 4vw, 50px);
  }
  .space-explorer__header {
    max-width: 100%;
    text-align: center;
    margin-bottom: clamp(20px, 3vw, 35px);
  }
  .space-explorer__description {
    max-width: 100%;
    margin: 25px auto 0;
  }
  .space-explorer__stage {
    height: min(550px, 60vw);
    min-height: 450px;
  }
  .space-explorer .space-preview {
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(260px, 35vw, 320px);
  }
}
@media (max-width: 768px) {
  .space-explorer {
    padding: clamp(60px, 8vw, 100px) 20px;
  }
  .space-explorer__stage {
    height: min(450px, 70vw);
    min-height: 380px;
    border-radius: 20px;
  }
  .space-explorer .space-preview {
    width: clamp(240px, 40vw, 280px);
    padding: 8px;
    border-radius: 16px;
  }
  .space-explorer .space-preview__image {
    height: clamp(160px, 25vw, 200px);
    border-radius: 11px;
  }
  .space-explorer .space-categories {
    bottom: 20px;
    padding: 5px;
    gap: 5px;
  }
  .space-explorer .space-category {
    padding: 8px 15px;
    font-size: 9px;
  }
  .space-explorer__indicator {
    top: 25px;
    right: 25px;
    gap: 10px;
  }
  .space-explorer__indicator-line {
    width: 35px;
  }
}
@media (max-width: 480px) {
  .space-explorer__title {
    font-size: clamp(40px, 9vw, 65px);
  }
  .space-explorer__stage {
    height: auto;
    min-height: 0;
    aspect-ratio: 3/4;
  }
  .space-explorer .space-preview {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 16px;
  }
  .space-explorer .space-preview h3 {
    font-size: 24px;
  }
}

.why-celia {
  position: relative;
  padding: 110px clamp(25px, 5vw, 80px);
  background: #f8f5ef;
  color: #29251f;
  overflow: hidden;
}
.why-celia__container {
  position: relative;
  z-index: 1;
  width: min(1380px, 100%);
  margin-inline: auto;
}
.why-celia__header {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(55px, 7vw, 95px);
  text-align: center;
}
.why-celia .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
  color: #b68a48;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.why-celia .section-label span:not(:nth-child(2)) {
  width: 70px;
  height: 1px;
  background: rgba(182, 138, 72, 0.55);
}
.why-celia__header h2 {
  margin: 0;
  color: #29251f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.96;
}
.why-celia__header h2 em {
  color: #b68a48;
  font-style: italic;
}
.why-celia__header p {
  max-width: 620px;
  margin: 28px auto 0;
  color: #756e65;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}
.why-celia__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: clamp(20px, 2.4vw, 34px);
  padding: 26px 14px 40px;
  perspective: 1800px;
}
.why-celia .why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  color: #ffffff;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.why-celia .why-card:nth-child(1) {
  transform: rotate(-1.4deg);
}
.why-celia .why-card:nth-child(2) {
  transform: rotate(1.2deg);
}
.why-celia .why-card:nth-child(3) {
  transform: rotate(-1deg);
}
.why-celia .why-card:nth-child(4) {
  transform: rotate(1.4deg);
}
.why-celia .why-card__back {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 28px;
  transform: translate(10px, -12px) rotate(4deg);
  opacity: 0.55;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.why-celia .why-card__image {
  position: relative;
  z-index: 2;
  height: 220px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  isolation: isolate;
}
.why-celia .why-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}
.why-celia .why-card__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -50% -70%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.38) 50%, transparent 58%);
  transform: translateX(-130%);
  pointer-events: none;
}
.why-celia .why-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.why-celia .why-card__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 28px;
  border-radius: 0 0 28px 28px;
}
.why-celia .why-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.why-celia .why-card__top h3 {
  flex: 1;
  text-align: center;
}
.why-celia .why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #ffffff;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease, background 0.4s ease;
}
.why-celia .why-card__icon svg {
  width: 22px;
  height: 22px;
}
.why-celia .why-card__number {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: color 0.4s ease, transform 0.4s ease;
}
.why-celia .why-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 400;
  line-height: 1;
}
.why-celia .why-card p {
  max-width: 260px;
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.why-celia .why-card--manufacturing .why-card__back {
  background: rgba(109, 89, 71, 0.8);
}
.why-celia .why-card--manufacturing .why-card__content {
  background: #6d5947;
}
.why-celia .why-card--materials .why-card__back {
  background: rgba(182, 138, 72, 0.9);
}
.why-celia .why-card--materials .why-card__content {
  background: #b68a48;
}
.why-celia .why-card--design .why-card__back {
  background: rgba(13, 27, 42, 0.9);
}
.why-celia .why-card--design .why-card__content {
  background: #0d1b2a;
}
.why-celia .why-card--delivery .why-card__back {
  background: rgba(65.7633333333, 53.6966666667, 42.8366666667, 0.9);
}
.why-celia .why-card--delivery .why-card__content {
  background: rgb(65.7633333333, 53.6966666667, 42.8366666667);
}
.why-celia .why-card:hover, .why-celia .why-card:focus-within, .why-celia .why-card.is-active {
  z-index: 5;
  filter: drop-shadow(0 26px 40px rgba(25, 20, 15, 0.22));
}
.why-celia .why-card:hover .why-card__back, .why-celia .why-card:focus-within .why-card__back, .why-celia .why-card.is-active .why-card__back {
  transform: translate(0px, -26px) rotate(8deg);
  opacity: 0.8;
}
.why-celia .why-card:hover .why-card__image::before, .why-celia .why-card:focus-within .why-card__image::before, .why-celia .why-card.is-active .why-card__image::before {
  transform: translateX(130%);
  transition: transform 0.85s ease;
}
.why-celia .why-card:hover .why-card__icon, .why-celia .why-card:focus-within .why-card__icon, .why-celia .why-card.is-active .why-card__icon {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.14);
}
.why-celia .why-card:hover .why-card__number, .why-celia .why-card:focus-within .why-card__number, .why-celia .why-card.is-active .why-card__number {
  color: #ffffff;
  transform: translateX(3px);
}
.why-celia .why-card:not(:hover):not(:focus-within):not(.is-active) .why-card__image::before {
  transition: transform 0.5s ease;
}
.why-celia__cta {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.why-celia__button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 24px;
  border-radius: 100px;
  background: #0d1b2a;
  color: #f8f5ef;
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.why-celia__button:hover {
  transform: translateY(-4px);
  background: #172635;
  box-shadow: 0 15px 30px rgba(13, 27, 42, 0.18);
}
.why-celia__button:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 5px;
}
.why-celia__button-star {
  color: #d5b27a;
  font-size: 14px;
}
.why-celia__button-arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.why-celia__button:hover .why-celia__button-arrow {
  transform: translateX(4px);
}
@media (max-width: 1300px) {
  .why-celia__cards {
    gap: 18px;
  }
}
@media (max-width: 1100px) {
  .why-celia__cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-inline: auto;
    row-gap: 50px;
  }
  .why-celia .why-card__image {
    height: 200px;
  }
}
@media (max-width: 640px) {
  .why-celia {
    padding: 90px 16px;
  }
  .why-celia__header {
    margin-bottom: 45px;
  }
  .why-celia .section-label {
    gap: 10px;
    font-size: 8px;
  }
  .why-celia .section-label span:not(:nth-child(2)) {
    width: 35px;
  }
  .why-celia__header h2 {
    font-size: clamp(40px, 13vw, 60px);
  }
  .why-celia__header p {
    font-size: 13px;
    padding-inline: 10px;
  }
  .why-celia__cards {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 10px 6px 20px;
  }
  .why-celia .why-card {
    width: min(100%, 390px);
    margin-inline: auto;
  }
  .why-celia .why-card:nth-child(1) {
    transform: rotate(-1deg);
  }
  .why-celia .why-card:nth-child(2) {
    transform: rotate(1deg);
  }
  .why-celia .why-card:nth-child(3) {
    transform: rotate(-1deg);
  }
  .why-celia .why-card:nth-child(4) {
    transform: rotate(1deg);
  }
  .why-celia .why-card__image {
    height: 190px;
  }
  .why-celia .why-card__content {
    padding: 22px 20px 26px;
  }
  .why-celia .why-card h3 {
    font-size: 20px;
  }
  .why-celia .why-card__number {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  .why-celia {
    padding: 75px 12px;
  }
  .why-celia .why-card__image {
    height: 170px;
  }
  .why-celia .why-card__icon {
    width: 38px;
    height: 38px;
  }
  .why-celia .why-card__icon svg {
    width: 19px;
    height: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .why-celia .why-card,
  .why-celia .why-card__back,
  .why-celia .why-card__image img,
  .why-celia .why-card__image::before,
  .why-celia .why-card__icon {
    transition: none !important;
  }
}

.projects {
  padding: clamp(100px, 10vw, 170px) clamp(18px, 5vw, 80px) 90px;
  background: #f8f5ef;
  color: #29251f;
}
.projects__intro {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 90px);
}
.projects__eyebrow {
  display: block;
  margin-bottom: 28px;
  color: #b68a48;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.projects__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.2vw, 76px);
  font-weight: 500;
  line-height: 0.98;
}
.projects__title span {
  display: block;
}
.projects__layout {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 50px;
}
.projects__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.projects__filters {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 130px;
}
.projects__filters-label {
  color: #756e65;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.projects__filters-label svg {
  flex-shrink: 0;
  color: #b68a48;
}
.projects__filters-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
}
.projects__filter {
  position: relative;
  align-self: flex-start;
  padding: 2px 0;
  border: none;
  background: none;
  color: #756e65;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.projects__filter:hover {
  color: #b68a48;
}
.projects__filter:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 3px;
}
.projects__filter.is-active {
  color: #b68a48;
  font-weight: 700;
}
.projects__filter-group {
  display: flex;
  flex-direction: column;
}
.projects__filter--parent {
  display: flex;
  align-items: center;
  gap: 8px;
}
.projects__filter--parent::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.projects__view-more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #29251f;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.projects__view-more:hover {
  color: #b68a48;
  gap: 14px;
}
.projects__view-more:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 4px;
}
.projects__view-more-arrow {
  font-size: 15px;
  line-height: 1;
}
.projects__view-more-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.projects__view-more.cta-button-style {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 260px;
  padding: 15px 26px;
  border: 1px solid rgba(182, 138, 72, 0.75);
  border-radius: 100px;
  background: none;
  color: #b68a48;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.4s ease, gap 0.3s ease;
  position: relative;
  overflow: hidden;
}
.projects__view-more.cta-button-style::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b68a48;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: -1;
}
.projects__view-more.cta-button-style:hover {
  color: #0d1b2a;
  gap: 28px;
}
.projects__view-more.cta-button-style:hover::before {
  transform: translateX(0);
}
.projects__view-more.cta-button-style:hover .projects__view-more-arrow svg {
  transform: translateX(6px);
}
.projects__view-more.cta-button-style:focus-visible {
  outline: 2px solid #d5b27a;
  outline-offset: 5px;
}
.projects__view-more.contact-style {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 240px;
  height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(182, 138, 72, 0.75);
  border-radius: 100px;
  background: none;
  color: #b68a48;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  transition: color 0.3s ease;
}
.projects__view-more.contact-style span {
  position: relative;
  z-index: 1;
}
.projects__view-more.contact-style-arrow {
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.projects__view-more.contact-style::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b68a48;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.projects__view-more.contact-style:hover {
  color: #ffffff;
}
.projects__view-more.contact-style:hover::before {
  transform: translateX(0);
}
.projects__view-more.contact-style:hover .projects__view-more-arrow {
  transform: translateX(7px);
}
.projects__view-more.contact-style:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 4px;
}
.projects .project-card {
  display: flex;
  flex-direction: column;
}
.projects .project-card__media {
  position: relative;
  aspect-ratio: 4/3.4;
  border-radius: 20px;
  overflow: hidden;
  background: #6d5947;
}
.projects .project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 19, 15, 0.85) 0%, rgba(24, 19, 15, 0) 55%);
}
.projects .project-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.projects .project-card__image img {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 124%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.projects .project-card__overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ffffff;
}
.projects .project-card__category {
  font-size: 9px;
  text-transform: uppercase;
  color: #d5b27a;
}
.projects .project-card__location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.projects .project-card__name {
  margin: 16px 2px 0;
  color: #29251f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
  transition: color 0.3s ease;
}
.projects .project-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #d5b27a;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
}
.projects .project-card__cta-arrow {
  font-size: 13px;
  line-height: 1;
}
.projects .project-card__index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  background: rgba(13, 27, 42, 0.3);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.projects .project-card__view {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(13, 27, 42, 0.3);
  backdrop-filter: blur(6px);
  color: #ffffff;
  opacity: 0;
  transform: translateY(-8px) scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.35s ease, border-color 0.35s ease;
}
.projects .project-card__view svg {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
  transition: transform 0.35s ease;
}
.projects .project-card:hover .project-card__image img, .projects .project-card:focus-visible .project-card__image img {
  transform: scale(1.1);
}
.projects .project-card:hover .project-card__view, .projects .project-card:focus-visible .project-card__view {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: #b68a48;
  border-color: #b68a48;
}
.projects .project-card:hover .project-card__view svg, .projects .project-card:focus-visible .project-card__view svg {
  transform: rotate(0deg);
}
.projects .project-card:hover .project-card__index, .projects .project-card:focus-visible .project-card__index {
  background: #b68a48;
  border-color: #b68a48;
  color: #0d1b2a;
}
.projects .project-card:hover .project-card__cta, .projects .project-card:focus-visible .project-card__cta {
  gap: 12px;
  color: #b68a48;
}
.projects .project-card:hover .project-card__name, .projects .project-card:focus-visible .project-card__name {
  color: #b68a48;
}
.projects .project-card--featured .project-card__overlay {
  left: 32px;
  right: 32px;
  bottom: 30px;
  gap: 10px;
}
.projects .project-card--featured .project-card__name {
  font-size: clamp(22px, 2.2vw, 28px);
}
.projects .project-card:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 4px;
}
.projects .project-card.is-hidden {
  display: none;
}
@media (max-width: 1200px) {
  .projects {
    padding: clamp(80px, 8vw, 140px) clamp(18px, 4vw, 60px) 70px;
  }
  .projects__intro {
    margin-bottom: clamp(40px, 5vw, 70px);
  }
  .projects__title {
    font-size: clamp(38px, 5vw, 52px);
  }
  .projects__layout {
    grid-template-columns: 180px 1fr;
    gap: 34px;
  }
}
@media (max-width: 900px) {
  .projects {
    padding: clamp(60px, 7vw, 100px) clamp(15px, 3vw, 40px) 60px;
  }
  .projects__intro {
    margin-bottom: clamp(40px, 5vw, 70px);
  }
  .projects__eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .projects__title {
    font-size: clamp(38px, 5vw, 52px);
  }
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .projects__filters {
    position: static;
  }
  .projects__filters-list {
    flex-direction: row;
    gap: 10px 22px;
    padding-bottom: 20px;
  }
  .projects__view-more {
    align-self: center;
  }
}
@media (max-width: 650px) {
  .projects {
    padding: clamp(50px, 6vw, 80px) clamp(12px, 3vw, 30px) 50px;
  }
  .projects__intro {
    margin-bottom: clamp(35px, 5vw, 55px);
  }
  .projects__eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .projects__title {
    font-size: clamp(32px, 6vw, 42px);
    line-height: 1.05;
  }
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
  }
  .projects .project-card__overlay {
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
    gap: 4px;
    background: linear-gradient(0deg, rgba(24, 19, 15, 0.9) 0%, rgba(24, 19, 15, 0.3) 50%, transparent 100%);
  }
  .projects .project-card__category {
    font-size: 8px;
  }
  .projects .project-card__location {
    font-size: 10px;
  }
  .projects .project-card__name {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
  }
}
@media (max-width: 380px) {
  .projects__grid {
    gap: 10px 12px;
  }
  .projects .project-card__name {
    margin-top: 8px;
    font-size: 13px;
  }
}

.cta-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(circle at 80% 40%, rgba(182, 138, 72, 0.08), transparent 30%), #0d1b2a;
  color: #f8f5ef;
  padding: clamp(70px, 8vw, 110px) 7% 40px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.cta-section__noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.cta-section .cta-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 5vw, 90px);
}
.cta-section .cta-content {
  position: relative;
  z-index: 3;
  padding-left: clamp(10px, 2vw, 35px);
}
.cta-section .cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  color: #b68a48;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.cta-section .cta-eyebrow__line {
  width: 45px;
  height: 1px;
  background: rgba(182, 138, 72, 0.5);
}
.cta-section .cta-eyebrow__star {
  font-size: 14px;
  margin-left: -4px;
}
.cta-section .cta-title {
  max-width: 720px;
  margin: 28px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.6vw, 92px);
  font-weight: 400;
  line-height: 1.2;
  color: #f8f5ef;
  text-wrap: balance;
}
.cta-section .cta-title span {
  display: block;
  margin-top: 8px;
  color: #b68a48;
  font-style: italic;
  font-weight: 400;
}
.cta-section .cta-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(280px, 80%);
  margin: 28px 0 22px;
  color: #b68a48;
}
.cta-section .cta-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(182, 138, 72, 0.65));
}
.cta-section .cta-divider span:last-child {
  background: linear-gradient(90deg, rgba(182, 138, 72, 0.65), transparent);
}
.cta-section .cta-divider i {
  font-size: 16px;
  font-style: normal;
  animation: ctaStarPulse 3s ease-in-out infinite;
}
.cta-section .cta-description {
  max-width: 460px;
  margin: 0 0 30px;
  color: rgba(248, 245, 239, 0.58);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}
.cta-section .cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 260px;
  padding: 15px 26px;
  border: 1px solid rgba(182, 138, 72, 0.75);
  border-radius: 100px;
  background: none;
  color: #b68a48;
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  animation: ctaButtonPulse 2.6s ease-in-out infinite;
  transition: color 0.4s ease;
}
.cta-section .cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b68a48;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: -1;
}
.cta-section .cta-button:hover, .cta-section .cta-button:focus-visible {
  color: #0d1b2a;
  animation-play-state: paused;
  box-shadow: none;
}
.cta-section .cta-button:hover::before, .cta-section .cta-button:focus-visible::before {
  transform: translateX(0);
}
.cta-section .cta-button:hover .cta-button__arrow, .cta-section .cta-button:focus-visible .cta-button__arrow {
  transform: translateX(6px);
}
.cta-section .cta-button:focus-visible {
  outline: 2px solid #d5b27a;
  outline-offset: 5px;
}
.cta-section .cta-button__arrow {
  display: grid;
  place-items: center;
  transition: transform 0.35s ease;
}
.cta-section .cta-button__arrow svg {
  width: 18px;
  height: 18px;
}
.cta-section .cta-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .cta-image-frame {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 0.82;
  z-index: 2;
  border-radius: 42% 58% 48% 52%/40% 38% 62% 60%;
  clip-path: url(#cta-wave-shape);
  padding: 1px;
  background: linear-gradient(135deg, #b68a48, rgba(182, 138, 72, 0.15), #b68a48);
  transform: rotate(-2deg);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-section .cta-image-frame:hover {
  transform: rotate(0deg) scale(1.015);
}
.cta-section .cta-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 42% 58% 48% 52%/40% 38% 62% 60%;
  background: #171717;
}
.cta-section .cta-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.82);
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}
.cta-section .cta-image-frame:hover img {
  transform: scale(1.08);
  filter: saturate(0.95) contrast(1.05) brightness(0.9);
}
.cta-section .cta-image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.25));
}
.cta-section .cta-visual__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 138, 72, 0.12), transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}
.cta-section .cta-image-star {
  position: absolute;
  right: -15px;
  top: 42%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0d1b2a;
  border: 1px solid rgba(182, 138, 72, 0.65);
  color: #b68a48;
  font-size: 18px;
  box-shadow: 0 0 0 8px rgba(13, 27, 42, 0.7);
  z-index: 5;
  animation: ctaFloat 4s ease-in-out infinite;
}
.cta-section .cta-bottom {
  width: 100%;
  max-width: 1100px;
  margin: 42px auto 0;
  text-align: center;
}
.cta-section .cta-services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: #b68a48;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}
.cta-section .cta-services span {
  transition: color 0.3s ease;
}
.cta-section .cta-services span:hover {
  color: #f8f5ef;
}
.cta-section .cta-services i {
  color: rgba(182, 138, 72, 0.5);
  font-style: normal;
}
.cta-section .cta-bottom-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.cta-section .cta-bottom-decoration span {
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 138, 72, 0.35));
}
.cta-section .cta-bottom-decoration span:last-child {
  background: linear-gradient(90deg, rgba(182, 138, 72, 0.35), transparent);
}
.cta-section .cta-bottom-decoration i {
  color: #b68a48;
  font-size: 18px;
  font-style: normal;
}
@media (max-width: 1100px) {
  .cta-section {
    padding-inline: 5%;
  }
  .cta-section .cta-container {
    grid-template-columns: minmax(350px, 0.9fr) minmax(400px, 1.1fr);
    gap: 32px;
  }
  .cta-section .cta-title {
    font-size: clamp(24px, 6vw, 52px);
  }
  .cta-section .cta-visual {
    min-height: 460px;
  }
}
@media (max-width: 768px) {
  .cta-section {
    min-height: auto;
    padding: 60px 20px 30px;
  }
  .cta-section .cta-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }
  .cta-section .cta-content {
    padding: 0;
    text-align: center;
  }
  .cta-section .cta-eyebrow {
    justify-content: center;
    margin-bottom: 24px;
    font-size: 10px;
  }
  .cta-section .cta-eyebrow__line {
    width: 25px;
  }
  .cta-section .cta-title {
    font-size: clamp(38px, 12vw, 54px);
  }
  .cta-section .cta-divider {
    margin: 22px auto 18px;
  }
  .cta-section .cta-description {
    margin-inline: auto;
    font-size: 14px;
    line-height: 1.7;
  }
  .cta-section .cta-button {
    width: 100%;
    min-width: 0;
    max-width: 360px;
  }
  .cta-section .cta-visual {
    min-height: auto;
    width: 100%;
    padding: 0 25px;
  }
  .cta-section .cta-image-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 0.85;
    margin: auto;
  }
  .cta-section .cta-image-star {
    width: 45px;
    height: 45px;
    right: -5px;
    font-size: 15px;
  }
  .cta-section .cta-services {
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 11px;
  }
  .cta-section .cta-bottom-decoration span {
    width: 56px;
  }
}
@media (max-width: 420px) {
  .cta-section {
    padding-inline: 16px;
  }
  .cta-section .cta-title {
    font-size: 40px;
  }
  .cta-section .cta-description {
    font-size: 13px;
  }
  .cta-section .cta-button {
    padding: 13px 20px;
    font-size: 10px;
    width: auto;
  }
  .cta-section .cta-button__arrow svg {
    width: 15px;
    height: 15px;
  }
  .cta-section .cta-visual {
    padding-inline: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-section .cta-image-star,
  .cta-section .cta-divider i,
  .cta-section .cta-button {
    animation: none;
  }
  .cta-section .cta-button,
  .cta-section .cta-image-wrapper img,
  .cta-section .cta-image-frame {
    transition: none;
  }
}

@keyframes ctaStarPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
@keyframes ctaFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes ctaButtonPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(182, 138, 72, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(182, 138, 72, 0);
  }
}
@keyframes contactSubmitSpin {
  to {
    transform: rotate(360deg);
  }
}
.contact {
  padding: 110px clamp(25px, 5vw, 80px);
  display: grid;
  grid-template-columns: 42% 58%;
  -moz-column-gap: 60px;
       column-gap: 60px;
  background: #f3eee6;
  color: #29251f;
}
.contact__info {
  grid-column: 1;
  grid-row: 1;
}
.contact__eyebrow {
  display: block;
  margin-bottom: 24px;
  color: #b68a48;
  font-size: 12px;
  font-weight: 500;
}
.contact__title {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
}
.contact__title span {
  display: block;
}
.contact__text {
  font-size: 15px;
  line-height: 1.8;
  color: #756e65;
}
.contact__details {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact .contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(41, 37, 31, 0.15);
}
.contact .contact-detail__label {
  font-size: 11px;
  color: #b68a48;
}
.contact .contact-detail__value {
  font-size: 15px;
  color: #29251f;
}
.contact__form {
  grid-column: 2;
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
  padding: 42px clamp(28px, 3vw, 50px);
  background: #f8f5ef;
  border-radius: 28px;
}
.contact__form-status {
  min-height: 16px;
  font-size: 12px;
  color: #756e65;
}
.contact__form-status.is-success {
  color: #4c7a4f;
}
.contact__form-status.is-error {
  color: #b3452f;
}
.contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact__fieldset {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
}
.contact__form.is-submitting .contact__fieldset {
  opacity: 0.6;
  pointer-events: none;
}
.contact .field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact .field__label {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #b68a48;
}
.contact .field__optional {
  font-weight: 400;
  text-transform: none;
  color: #756e65;
}
.contact .field__hint {
  font-size: 13px;
  line-height: 1.5;
  color: #756e65;
}
.contact .field__error {
  min-height: 12px;
  font-size: 11px;
  line-height: 1.2;
  color: #b3452f;
}
.contact .field.is-error .field__input,
.contact .field.is-error .custom-select__trigger {
  border-color: #b3452f;
}
.contact .field__input {
  width: 100%;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid rgba(41, 37, 31, 0.2);
  background: transparent;
  color: #29251f;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  resize: none;
  transition: border-color 0.3s ease;
}
.contact .field__input::-moz-placeholder {
  color: #756e65;
}
.contact .field__input::placeholder {
  color: #756e65;
}
.contact .field__input:focus {
  outline: none;
  border-color: #b68a48;
}
.contact .field__input:disabled {
  color: #756e65;
  cursor: not-allowed;
}
.contact .custom-select {
  position: relative;
}
.contact .custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid rgba(41, 37, 31, 0.2);
  background: transparent;
  cursor: pointer;
  color: #756e65;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-align: left;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.contact .custom-select__trigger.has-value {
  color: #29251f;
}
.contact .custom-select__trigger:hover {
  border-color: rgba(182, 138, 72, 0.6);
}
.contact .custom-select.is-open .custom-select__trigger {
  border-color: #b68a48;
}
.contact .custom-select__arrow {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #b68a48;
}
.contact .custom-select__arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.contact .custom-select.is-open .custom-select__arrow svg {
  transform: rotate(180deg);
}
.contact .custom-select__options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  background: #f8f5ef;
  border: 1px solid rgba(182, 138, 72, 0.25);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
.contact .custom-select.is-open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.contact .custom-select__option {
  padding: 10px 18px;
  color: #29251f;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.contact .custom-select__option:hover, .contact .custom-select__option:focus-visible {
  background: rgba(182, 138, 72, 0.08);
  color: #b68a48;
  outline: none;
}
.contact .custom-select__option.is-selected {
  color: #b68a48;
  font-weight: 600;
}
.contact__submit {
  position: relative;
  align-self: flex-start;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 240px;
  height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(182, 138, 72, 0.75);
  border-radius: 100px;
  color: #b68a48;
  background: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease;
}
.contact__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b68a48;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}
.contact__submit span {
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.contact__submit-arrow {
  font-size: 18px !important;
  transition: transform 0.35s ease;
}
.contact__submit:hover, .contact__submit:focus-visible {
  color: #ffffff;
}
.contact__submit:hover::before, .contact__submit:focus-visible::before {
  transform: translateX(0);
}
.contact__submit:hover .contact__submit-arrow, .contact__submit:focus-visible .contact__submit-arrow {
  transform: translateX(7px);
}
.contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact__submit.is-loading .contact__submit-arrow {
  opacity: 0;
}
.contact__submit.is-loading::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 22px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border: 2px solid rgba(182, 138, 72, 0.3);
  border-top-color: #b68a48;
  border-radius: 50%;
  animation: contactSubmitSpin 0.7s linear infinite;
}
@media (max-width: 950px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .contact__info, .contact__form, .contact__details {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 550px) {
  .contact {
    padding: 80px 20px;
  }
  .contact .form-row {
    grid-template-columns: 1fr;
  }
  .contact__form {
    padding: 35px 22px;
  }
  .contact__title {
    font-size: clamp(36px, 8vw, 48px);
  }
  .contact__text {
    font-size: 14px;
  }
  .contact .contact-detail__value {
    font-size: 14px;
  }
  .contact .field__input {
    font-size: 14px;
  }
  .contact .custom-select__trigger {
    font-size: 14px;
  }
}

.contact-visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(25px, 5vw, 80px) clamp(90px, 9vw, 150px);
  background: #f3eee6;
}
.contact-visit__media {
  border-radius: 28px;
  overflow: hidden;
}
.contact-visit__media img {
  display: block;
  width: 100%;
  height: clamp(320px, 32vw, 480px);
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-visit__content .contact__eyebrow,
.contact-visit__content .contact__title,
.contact-visit__content .contact__text {
  margin-left: 0;
  margin-right: 0;
}
.contact-visit__content .contact__title {
  margin-bottom: 18px;
}
.contact-visit__content .contact__text {
  max-width: 460px;
  margin-bottom: 32px;
}
@media (max-width: 950px) {
  .contact-visit {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-visit__media img {
    height: 320px;
  }
}

.site-footer {
  width: 100%;
  padding: 80px 4vw 30px;
  background: #f3eee6;
  overflow: hidden;
}
.site-footer__shape {
  position: relative;
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
  padding: 125px 8% 45px;
  background: #f8f5ef;
  border-radius: 150px 150px 120px 120px;
  overflow: hidden;
}
.site-footer__shape::before {
  content: "";
  position: absolute;
  top: -95px;
  left: 10%;
  width: 80%;
  height: 150px;
  background: #f3eee6;
  border-radius: 0 0 50% 50%;
  transform: rotate(-1deg);
  pointer-events: none;
}
.site-footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
}
.site-footer__brand-logo {
  display: block;
  margin-bottom: 20px;
  width: 180px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-footer__brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.site-footer__brand-logo:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.site-footer__brand-description {
  max-width: 280px;
  margin-bottom: 20px;
  color: #756e65;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}
.site-footer__brand-address {
  font-style: normal;
  color: #756e65;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}
.site-footer__column h3 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  color: #29251f;
}
.site-footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__column ul li {
  margin-bottom: 12px;
}
.site-footer__column ul li a {
  position: relative;
  display: inline-block;
  color: #756e65;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.site-footer__column ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #b68a48;
  transition: width 0.3s ease;
}
.site-footer__column ul li a:hover, .site-footer__column ul li a:focus-visible {
  color: #b68a48;
  transform: translateX(4px);
}
.site-footer__column ul li a:hover::after, .site-footer__column ul li a:focus-visible::after {
  width: 100%;
}
.site-footer__column ul li a:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 3px;
  border-radius: 2px;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 20px 0;
  border-top: 1px solid rgba(41, 37, 31, 0.1);
}
.site-footer__bottom span {
  color: #756e65;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.site-footer__legal {
  display: flex;
  gap: 24px;
}
.site-footer__legal a {
  color: #756e65;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__legal a:hover, .site-footer__legal a:focus-visible {
  color: #b68a48;
}
@media (max-width: 1100px) {
  .site-footer__shape {
    padding-inline: 6%;
  }
  .site-footer__content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px 30px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
    max-width: 420px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .site-footer__shape {
    padding: 90px 28px 30px;
    border-radius: 70px 70px 60px 60px;
  }
  .site-footer__shape::before {
    top: -55px;
    left: 0;
    width: 100%;
    height: 95px;
  }
  .site-footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
    max-width: none;
  }
  .site-footer__brand-logo {
    width: 150px;
  }
  .site-footer__brand-description {
    max-width: 360px;
  }
  .site-footer__bottom {
    padding-top: 20px;
  }
}
@media (max-width: 600px) {
  .site-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .site-footer__legal {
    gap: 20px;
    justify-content: center;
  }
}
@media (max-width: 550px) {
  .site-footer {
    padding: 50px 14px 20px;
  }
  .site-footer__shape {
    padding: 70px 20px 30px;
    border-radius: 60px 60px 50px 50px;
  }
  .site-footer__shape::before {
    top: -40px;
    height: 75px;
  }
  .site-footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    margin-bottom: 36px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
  }
  .site-footer__brand-logo {
    width: 130px;
  }
  .site-footer__brand-description {
    max-width: 100%;
  }
}
@media (max-width: 380px) {
  .site-footer {
    padding: 40px 10px 16px;
  }
  .site-footer__shape {
    padding: 56px 18px 26px;
    border-radius: 46px 46px 40px 40px;
  }
  .site-footer__shape::before {
    top: -30px;
    height: 60px;
  }
  .site-footer__legal {
    flex-direction: column;
    gap: 10px;
  }
}

.header--solid {
  position: sticky;
  background: #0d1b2a;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 14vw, 210px) clamp(18px, 5vw, 80px) clamp(60px, 7vw, 100px);
  background: #f3eee6;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -12%;
  left: 50%;
  width: min(1000px, 150%);
  height: 480px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(182, 138, 72, 0.12), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero__accent {
  position: absolute;
  top: 22%;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  color: #b68a48;
  font-size: 20px;
  opacity: 0.55;
  animation: pageHeroAccentFloat 5s ease-in-out infinite;
}
.page-hero__breadcrumb {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
  text-align: left;
  width: 100%;
}
.page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: #756e65;
  font-family: "IBM Plex Sans Arabic", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-hero__back:hover {
  color: #b68a48;
}
.page-hero__back:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 4px;
}
.page-hero__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #b68a48;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.page-hero__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 5vw, 52px);
  font-weight: 500;
  line-height: 1;
}
.page-hero__intro {
  max-width: 620px;
  margin: 26px auto 0;
  color: #756e65;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}
.page-hero--project {
  padding-bottom: clamp(40px, 5vw, 60px);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #756e65;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: rgba(117, 110, 101, 0.5);
}
.breadcrumb__item a {
  color: #756e65;
  transition: color 0.3s ease;
}
.breadcrumb__item a:hover, .breadcrumb__item a:focus-visible {
  color: #b68a48;
}
.breadcrumb__item.is-current {
  color: #29251f;
  font-weight: 600;
}

.projects--page {
  padding-top: clamp(20px, 3vw, 40px);
}

.project-details {
  padding-bottom: clamp(40px, 5vw, 60px);
}
.project-details .project-facts {
  position: relative;
  z-index: 2;
  width: min(1300px, 100%);
  margin: clamp(-70px, -6vw, -50px) auto 0;
  padding: 0 clamp(18px, 5vw, 80px);
}
.project-details .project-facts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 44px);
  background: #0d1b2a;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(13, 27, 42, 0.28);
}
.project-details .project-facts__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 20px;
}
.project-details .project-facts__item:not(:last-child) {
  border-right: 1px solid rgba(248, 245, 239, 0.14);
}
.project-details .project-facts__item:first-child {
  padding-left: 0;
}
.project-details .project-facts__item:last-child {
  padding-right: 0;
}
.project-details .project-facts__item dt {
  margin-bottom: 6px;
  font-size: 9px;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.5);
}
.project-details .project-facts__item dd {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
  color: #f8f5ef;
}
.project-details .project-facts__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(182, 138, 72, 0.16);
  color: #d5b27a;
}
.project-details .project-facts__icon svg {
  width: 17px;
  height: 17px;
}
@media (max-width: 900px) {
  .project-details .project-facts {
    margin-top: clamp(-45px, -6vw, -30px);
  }
  .project-details .project-facts__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }
  .project-details .project-facts__item {
    padding: 0 16px;
  }
  .project-details .project-facts__item:nth-child(2n) {
    border-right: 0;
  }
  .project-details .project-facts__item:nth-child(-n+2) {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(248, 245, 239, 0.14);
  }
  .project-details .project-facts__item:nth-child(n+3) {
    padding-top: 4px;
  }
  .project-details .project-facts__item:first-child, .project-details .project-facts__item:nth-child(2) {
    padding-left: 0;
  }
  .project-details .project-facts__item:nth-child(2n) {
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  .project-details .project-facts__list {
    grid-template-columns: 1fr;
    row-gap: 22px;
    border-radius: 20px;
  }
  .project-details .project-facts__item {
    padding: 0 !important;
    border: 0 !important;
  }
  .project-details .project-facts__item:not(:last-child) {
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(248, 245, 239, 0.14) !important;
  }
}
.project-details .project-detail__hero-image {
  width: min(1400px, 100%);
  margin: clamp(50px, 6vw, 80px) auto 0;
  padding: 0 clamp(18px, 5vw, 80px);
  overflow: hidden;
  border-radius: 28px;
}
.project-details .project-detail__hero-image img {
  width: 100%;
  height: clamp(320px, 55vw, 640px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-details .project-detail__hero-image:hover img {
  transform: scale(1.035);
}
.project-details .project-detail__description {
  width: min(1400px, 100%);
  margin: clamp(70px, 8vw, 110px) auto clamp(60px, 7vw, 100px);
  padding: 0 clamp(18px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}
.project-details .project-detail__description-label {
  display: block;
  margin-bottom: 22px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #b68a48;
}
.project-details .project-detail__description-aside {
  padding-left: 22px;
  border-left: 2px solid rgba(182, 138, 72, 0.55);
}
.project-details .project-detail__description-content p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 2;
  color: #29251f;
}
@media (max-width: 900px) {
  .project-details .project-detail__description {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .project-details .project-detail__description-aside {
    padding-left: 18px;
  }
}
.project-details .project-detail__quote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.9vw, 27px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: #6d5947;
  quotes: "“" "”";
}
.project-details .project-detail__quote::before {
  content: open-quote;
  color: #b68a48;
}
.project-details .project-detail__quote::after {
  content: close-quote;
  color: #b68a48;
}
.project-details .project-detail__materials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.project-details .project-detail__materials li {
  padding: 9px 20px;
  border: 1px solid rgba(182, 138, 72, 0.4);
  border-radius: 100px;
  background: rgba(182, 138, 72, 0.07);
  color: #6d5947;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.project-details .project-detail__gallery-section {
  width: min(1400px, 100%);
  margin: 0 auto clamp(80px, 8vw, 140px);
  padding: 20px clamp(18px, 5vw, 80px);
}
.project-details .project-detail__section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.project-details .project-detail__section-label {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #b68a48;
}
.project-details .project-detail__section-heading {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
}
.project-details .project-detail__gallery-count {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1px solid rgba(182, 138, 72, 0.4);
  border-radius: 100px;
  background: rgba(182, 138, 72, 0.07);
  color: #6d5947;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.project-details .project-detail__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 20px;
}
.project-details .project-detail__gallery-item {
  margin: 0;
  cursor: pointer;
}
.project-details .project-detail__gallery-item--feature {
  grid-column: span 2;
  grid-row: span 2;
}
.project-details .project-detail__gallery-item--wide {
  grid-column: span 2;
}
.project-details .project-detail__gallery-item:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 4px;
  border-radius: 20px;
}
.project-details .project-detail__gallery-media {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.project-details .project-detail__gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(13, 27, 42, 0.78) 0%, rgba(13, 27, 42, 0) 50%);
  transition: opacity 0.4s ease;
}
.project-details .project-detail__gallery-index {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  background: rgba(13, 27, 42, 0.35);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.project-details .project-detail__gallery-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(13, 27, 42, 0.35);
  backdrop-filter: blur(4px);
  color: #ffffff;
  opacity: 0;
  transform: translateY(-6px) scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.project-details .project-detail__gallery-zoom svg {
  width: 16px;
  height: 16px;
}
.project-details .project-detail__gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-details .project-detail__gallery-item:hover .project-detail__gallery-media img, .project-details .project-detail__gallery-item:focus-visible .project-detail__gallery-media img {
  transform: scale(1.1);
}
.project-details .project-detail__gallery-item:hover .project-detail__gallery-index, .project-details .project-detail__gallery-item:focus-visible .project-detail__gallery-index {
  background: #b68a48;
  border-color: #b68a48;
  color: #0d1b2a;
}
.project-details .project-detail__gallery-item:hover .project-detail__gallery-zoom, .project-details .project-detail__gallery-item:focus-visible .project-detail__gallery-zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: #b68a48;
  border-color: #b68a48;
}
.project-details .project-detail__gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.35s ease;
}
.project-details .project-detail__gallery-item:hover figcaption, .project-details .project-detail__gallery-item:focus-visible figcaption {
  transform: translateY(-2px);
  color: #d5b27a;
}
@media (max-width: 1200px) {
  .project-details .project-detail__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .project-details .project-detail__gallery-item--feature, .project-details .project-detail__gallery-item--wide {
    grid-column: 1/-1;
    grid-row: span 1;
    height: 280px;
  }
  .project-details .project-detail__gallery-item--feature .project-detail__gallery-media, .project-details .project-detail__gallery-item--wide .project-detail__gallery-media {
    height: 280px;
  }
}
@media (max-width: 600px) {
  .project-details .project-detail__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: clamp(10px, 3vw, 16px);
  }
  .project-details .project-detail__gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .project-details .project-detail__gallery .project-detail__gallery-media, .project-details .project-detail__gallery-item--feature .project-detail__gallery-media, .project-details .project-detail__gallery-item--wide .project-detail__gallery-media {
    height: 170px;
  }
}
.project-details .related-projects {
  padding: 60px clamp(20px, 4vw, 80px) 80px;
  background: #f3eee6;
}
.project-details .related-projects__intro {
  max-width: 1400px;
  margin: 0 auto 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.project-details .related-projects__eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #b68a48;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.project-details .related-projects__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 500;
}
.project-details .related-projects__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-details .related-projects .related-card {
  display: flex;
  flex-direction: column;
}
.project-details .related-projects .related-card__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: #6d5947;
}
.project-details .related-projects .related-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 27, 42, 0.85) 0%, rgba(13, 27, 42, 0) 60%);
}
.project-details .related-projects .related-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.project-details .related-projects .related-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-details .related-projects .related-card__overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ffffff;
}
.project-details .related-projects .related-card__category {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #d5b27a;
}
.project-details .related-projects .related-card__location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.project-details .related-projects .related-card__content {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.project-details .related-projects .related-card__title {
  margin: 0;
  color: #29251f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.2;
}
.project-details .related-projects .related-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #d5b27a;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
}
.project-details .related-projects .related-card__cta-arrow {
  font-size: 14px;
  line-height: 1;
}
.project-details .related-projects .related-card:hover .project-details .related-projects .related-card__image img {
  transform: scale(1.08);
}
.project-details .related-projects .related-card:hover .project-details .related-projects .related-card__cta {
  gap: 12px;
  color: #b68a48;
}
.project-details .related-projects .related-card:hover .project-details .related-projects .related-card__title {
  color: #b68a48;
}
.project-details .related-projects .related-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.project-details .related-projects .related-card:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 4px;
}
@media (max-width: 1200px) {
  .project-details .related-projects {
    padding: 50px clamp(18px, 3vw, 60px) 70px;
  }
  .project-details .related-projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .project-details .related-projects .related-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media (max-width: 900px) {
  .project-details .related-projects {
    padding: 40px clamp(16px, 3vw, 50px) 60px;
  }
  .project-details .related-projects__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .project-details .related-projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .project-details .related-projects .related-card--featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@media (max-width: 650px) {
  .project-details .related-projects {
    padding: 35px clamp(14px, 3vw, 40px) 50px;
  }
  .project-details .related-projects__intro {
    margin-bottom: 35px;
  }
  .project-details .related-projects__eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
  }
  .project-details .related-projects__title {
    font-size: clamp(24px, 4vw, 32px);
  }
  .project-details .related-projects__grid {
    gap: 16px;
  }
  .project-details .related-projects .related-card__content {
    margin-top: 12px;
  }
  .project-details .related-projects .related-card__title {
    font-size: clamp(16px, 2.5vw, 20px);
  }
}
@media (max-width: 450px) {
  .project-details .related-projects {
    padding: 30px 12px 40px;
  }
  .project-details .related-projects__title {
    font-size: clamp(20px, 5vw, 28px);
  }
  .project-details .related-projects__grid {
    gap: 14px;
  }
  .project-details .related-projects .related-card__content {
    margin-top: 10px;
  }
  .project-details .related-projects .related-card__category {
    font-size: 9px;
  }
  .project-details .related-projects .related-card__title {
    font-size: clamp(15px, 2.2vw, 18px);
  }
  .project-details .related-projects .related-card__location {
    font-size: 12px;
  }
}
.project-details .lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}
.project-details .lightbox.is-open {
  display: flex;
}
.project-details .lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.93);
  backdrop-filter: blur(8px);
}
.project-details .lightbox__frame {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 88vw);
  margin: 0 clamp(60px, 8vw, 110px);
}
.project-details .lightbox__image {
  display: block;
  width: 100%;
  max-height: 78vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}
.project-details .lightbox__caption {
  margin-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.project-details .lightbox__close, .project-details .lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.project-details .lightbox__close svg, .project-details .lightbox__nav svg {
  width: 18px;
  height: 18px;
}
.project-details .lightbox__close:hover, .project-details .lightbox__close:focus-visible, .project-details .lightbox__nav:hover, .project-details .lightbox__nav:focus-visible {
  background: #b68a48;
  border-color: #b68a48;
  color: #0d1b2a;
}
.project-details .lightbox__close:focus-visible, .project-details .lightbox__nav:focus-visible {
  outline: 2px solid #b68a48;
  outline-offset: 3px;
}
.project-details .lightbox__close {
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
}
.project-details .lightbox__nav--prev {
  left: clamp(10px, 2vw, 30px);
  top: 50%;
  transform: translateY(-50%);
}
.project-details .lightbox__nav--next {
  right: clamp(10px, 2vw, 30px);
  top: 50%;
  transform: translateY(-50%);
}
.project-details .lightbox__count {
  position: absolute;
  bottom: clamp(16px, 3vw, 30px);
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .project-details .lightbox__close, .project-details .lightbox__nav {
    width: 38px;
    height: 38px;
  }
}

.partners {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background: #ffffff;
}
.partners__intro {
  width: min(650px, 100%);
  margin: 0 auto 55px;
  padding: 0 clamp(25px, 5vw, 80px);
  text-align: center;
}
.partners__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #b68a48;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.9;
}
.partners__title {
  margin: 0;
  color: #0d1b2a;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.3;
}
.partners__marquees {
  display: grid;
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
}
.partners__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.partners__marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.partners__marquee--left .partners__marquee-track {
  animation: partnersMarqueeLeft 34s linear infinite;
}
.partners__marquee--right .partners__marquee-track {
  animation: partnersMarqueeRight 34s linear infinite;
}
.partners__marquee-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding-inline-end: clamp(30px, 5vw, 70px);
}
.partners__logo {
  display: flex;
  flex: 0 0 170px;
  align-items: center;
  justify-content: center;
}
.partners__logo img {
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.4s ease, transform 0.4s ease;
}
.partners__logo:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}
@media (max-width: 700px) {
  .partners__logo {
    flex-basis: 120px;
  }
  .partners__logo img {
    height: 90px;
  }
  .partners__marquee--left .partners__marquee-track, .partners__marquee--right .partners__marquee-track {
    animation-duration: 26s;
  }
}

html[lang=ar] #contact .contact__text--interest {
  max-width: 440px;
  font-size: 13px;
  line-height: 1.9;
}

#contact .contact__title--interest {
  font-size: clamp(32px, 4vw - 8px, 44px);
}

@media (max-width: 550px) {
  #contact .contact__title--interest {
    font-size: clamp(22px, 7vw, 32px);
  }
  html[lang=ar] #contact .contact__text--interest {
    font-size: 12px;
    line-height: 1.85;
  }
}
@keyframes partnersMarqueeLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-25%, 0, 0);
  }
}
@keyframes partnersMarqueeRight {
  from {
    transform: translate3d(-25%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(32px);
    opacity: 0;
  }
}
@keyframes pageHeroAccentFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) rotate(12deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}/*# sourceMappingURL=style.css.map */