:root {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --panel: rgba(0, 0, 0, 0.91);
  --panel-border: rgba(255, 255, 255, 0.11);
  --control: #df8d3f;
  --control-dark: #050505;
  --page-x: max(15px, calc((100vw - 1600px) / 2 + 40px));
  --ease-draven: cubic-bezier(0.44, 0, 0.56, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(223, 141, 63, 0.54) transparent;
}

html.is-site-loading {
  height: 100%;
  overflow: hidden;
  scrollbar-gutter: auto;
}

*::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  min-height: 44px;
  border: 3px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) padding-box,
    rgba(223, 141, 63, 0.54) border-box;
  background-clip: content-box, border-box;
}

*::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)) padding-box,
    rgba(223, 141, 63, 0.76) border-box;
  background-clip: content-box, border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #050505;
  font-family: Manrope, "Manrope Placeholder", sans-serif;
  color: var(--text);
  touch-action: pan-y;
}

body {
  overflow-x: visible;
}

html.is-site-loading body,
body.is-site-loading {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

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

.not-found-page {
  min-height: 100svh;
  overflow-x: clip;
  background: #050505;
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(20px, 4vw, 58px);
  isolation: isolate;
  overflow: hidden;
}

.not-found::before,
.not-found::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.not-found::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 45%, rgba(5, 5, 5, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.76));
}

.not-found::after {
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, #050505);
}

.not-found__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.92) contrast(1.05);
}

.not-found__background--mobile {
  display: none;
}

.not-found__panel {
  align-self: center;
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(223, 141, 63, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 10, 0.78);
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.not-found__brand {
  display: inline-flex;
  width: clamp(128px, 16vw, 186px);
  margin-bottom: clamp(38px, 7vw, 76px);
}

.not-found__brand img {
  width: 100%;
  height: auto;
}

.not-found__kicker {
  margin: 0 0 14px;
  color: var(--control);
  font-family: Orbitron, Manrope, sans-serif;
  font-size: clamp(48px, 10vw, 118px);
  font-weight: 700;
  line-height: 0.82;
}

.not-found h1 {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.not-found__copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.38;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(30px, 4vw, 46px);
}

.not-found__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 6px;
  color: inherit;
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease-draven),
    background 0.3s var(--ease-draven),
    color 0.3s var(--ease-draven),
    transform 0.3s var(--ease-draven),
    filter 0.3s var(--ease-draven);
}

.not-found__button:hover,
.not-found__button:focus-visible {
  transform: translateY(-1px);
}

.not-found__button--primary {
  border: 1px solid rgba(223, 141, 63, 0.96);
  background: var(--control);
  color: #111111;
}

.not-found__button--primary:hover,
.not-found__button--primary:focus-visible {
  filter: brightness(1.07);
}

.not-found__button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.not-found__button--ghost:hover,
.not-found__button--ghost:focus-visible {
  border-color: rgba(223, 141, 63, 0.62);
  background: rgba(223, 141, 63, 0.12);
}

.not-found__card {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: clamp(20px, 4vw, 58px);
  display: grid;
  gap: 10px;
  width: min(380px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.68);
  backdrop-filter: blur(12px);
}

.not-found__card span {
  color: var(--control);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.not-found__card strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.34;
}

.villa-explorer,
.how-work,
.latest-projects,
.final-cta,
.faq-section,
.footer-video,
.site-footer,
.services {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.capabilities {
  contain: layout paint;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: clamp(58px, 7vh, 76px);
  background: #050505;
  color: rgba(255, 255, 255, 0.86);
  pointer-events: auto;
  transform: translateZ(0);
  animation: site-loader-exit 0.78s var(--ease-draven) 0.58s both;
}

.site-loader::before,
.site-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-loader::before {
  background:
    linear-gradient(90deg, transparent, rgba(223, 141, 63, 0.18), transparent),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.08), transparent 34%);
  transform: translateX(-28%);
  animation: site-loader-sweep 0.94s var(--ease-draven) both;
}

.site-loader::after {
  top: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 141, 63, 0.86), transparent);
  transform: scaleX(0);
  animation: site-loader-line 0.72s var(--ease-draven) 0.08s both;
}

.site-loader__mark {
  position: relative;
  z-index: 1;
  width: clamp(104px, 7.8vw, 126px);
  aspect-ratio: 127 / 80;
  overflow: hidden;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(223, 141, 63, 0.22),
    0 22px 68px rgba(238, 124, 12, 0.16);
  animation: site-loader-mark 0.74s var(--ease-draven) both;
}

.site-loader__logo-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-loader p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(10px, 0.74vw, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: site-loader-text 0.68s var(--ease-draven) 0.12s both;
}

[dir="rtl"] body {
  direction: rtl;
}

a,
button {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.hero__video,
.hero__poster,
.hero__shade {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero__video {
  top: 0;
  bottom: 0;
  left: -10vw;
  right: auto;
  width: 120vw;
  z-index: -2;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 1;
  filter: saturate(0.9) contrast(0.95);
  transform: none;
  transition: opacity 0.7s var(--ease-draven), filter 0.7s var(--ease-draven);
}

.hero.is-video-loading .hero__video {
  opacity: 0;
}

.hero__poster {
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.46)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.36)),
    url("./assets/hero-poster.jpg") 50% 50% / cover no-repeat;
  filter: saturate(0.92) contrast(0.98);
  opacity: 1;
  transform: scale(1.012);
  transition: opacity 0.72s var(--ease-draven), transform 1.1s var(--ease-draven);
  will-change: opacity, transform;
}

.hero.is-video-ready .hero__poster {
  opacity: 0;
  transform: scale(1.035);
}

.hero__shade {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.14) 38%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.28) 100%),
    rgba(0, 0, 0, 0.19);
}

.hero__header {
  position: absolute;
  z-index: 2;
  top: clamp(8px, 0.74vw, 16px);
  left: var(--page-x);
  right: clamp(22px, 5.85vw, 120px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: clamp(132px, 8.2vw, 168px);
  margin-top: 0;
  line-height: 0;
  animation: hero-reveal 0.9s var(--ease-draven) 0.08s both;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 34px);
  margin: 10px auto 0;
  padding: 0 10px;
  animation: hero-reveal 0.9s var(--ease-draven) 0.1s both;
}

.header-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.3s var(--ease-draven),
    transform 0.3s var(--ease-draven);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.18em;
  bottom: 1px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.34s var(--ease-draven);
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: hero-reveal 0.9s var(--ease-draven) 0.12s both;
}

.play-button,
.whatsapp-button,
.project-card__button {
  border-radius: 4px;
  text-decoration: none;
}

.play-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--control);
  color: #171717;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.4s var(--ease-draven),
    filter 0.4s var(--ease-draven);
}

.play-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 163px;
  height: 40px;
  padding: 2px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.86);
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.62);
  overflow: hidden;
  transition:
    border-color 0.4s var(--ease-draven),
    box-shadow 0.4s var(--ease-draven),
    transform 0.4s var(--ease-draven);
}

.button-label {
  display: block;
  height: 1.2em;
  overflow: hidden;
  line-height: 1.2;
}

.button-label__track {
  display: grid;
  grid-auto-rows: 1.2em;
  transform: translateY(0);
  will-change: transform;
  transition:
    transform 0.4s var(--ease-draven);
}

.button-label__track > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.2em;
}

.hero__content {
  position: absolute;
  left: var(--page-x);
  top: clamp(285px, 32.9vh, 340px);
  z-index: 1;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  animation: hero-reveal 0.9s var(--ease-draven) 0.22s both;
}

.award-wreath {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: invert(66%) sepia(45%) saturate(740%) hue-rotate(340deg) brightness(94%) contrast(92%);
}

.hero__wreath {
  width: 18px;
  height: 18px;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.42px;
}

.hero h1 span {
  display: inline-block;
  animation: word-rise 0.72s var(--ease-draven) calc(0.26s + (var(--word-index) * 0.055s)) both;
}

.hero__copy {
  position: absolute;
  z-index: 1;
  left: var(--page-x);
  bottom: clamp(48px, 5.05vh, 78px);
  width: clamp(214px, 11.2vw, 230px);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  animation: hero-reveal 0.95s var(--ease-draven) 0.66s both;
}

.project-card {
  position: absolute;
  right: clamp(24px, 5.85vw, 120px);
  bottom: clamp(34px, 4.05vh, 42px);
  z-index: 2;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  width: min(520px, calc(100vw - 48px));
  min-height: 178px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.92);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  animation: hero-reveal 0.95s var(--ease-draven) 0.78s both;
}

.project-card__media {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.project-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity 0.45s var(--ease-draven),
    transform 0.45s var(--ease-draven);
}

.project-card__image--default {
  opacity: 1;
  transform: scale(1);
}

.project-card__image--hover {
  opacity: 0;
  transform: scale(1.04);
}

.project-card:hover .project-card__image--default {
  opacity: 0;
  transform: scale(1.04);
}

.project-card:hover .project-card__image--hover {
  opacity: 1;
  transform: scale(1);
}

.project-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
}

.project-card h2 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.3px;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
}

.project-card__meta {
  display: grid;
  gap: 5px;
}

.project-card__meta p {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.project-card__meta span {
  color: rgba(255, 255, 255, 0.42);
}

.project-card__meta strong {
  min-width: 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.project-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 2px 15px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.015);
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  transition:
    border-color 0.4s var(--ease-draven),
    box-shadow 0.4s var(--ease-draven),
    transform 0.4s var(--ease-draven);
}

.whatsapp-button,
.project-card__button {
  position: relative;
}

.whatsapp-button:hover,
.project-card__button:hover {
  border-color: rgba(223, 141, 63, 0.72);
  box-shadow:
    0 0 0 1px rgba(223, 141, 63, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.whatsapp-button:hover .button-label__track,
.project-card__button:hover .button-label__track {
  transform: translateY(-1.2em);
}

.project-card__button:hover,
.whatsapp-button:hover,
.play-button:hover {
  filter: brightness(1.08);
}

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

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
  animation: modal-fade 0.35s var(--ease-draven) both;
}

.consultation-form {
  position: relative;
  z-index: 1;
  width: min(548px, calc(100vw - 48px));
  max-height: calc(100svh - 48px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 50px 40px 40px;
  border: 1px solid rgba(223, 141, 63, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(13, 13, 13, 0.94);
  box-shadow:
    0 24px 100px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: modal-rise 0.45s var(--ease-draven) both;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition:
    background 0.3s var(--ease-draven),
    transform 0.3s var(--ease-draven);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.04);
}

.modal__close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.consultation-form__eyebrow {
  margin: 0 0 12px;
  color: var(--control);
  font-size: 16px;
  line-height: 1.2;
}

.consultation-form h2 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.consultation-form__copy {
  width: min(440px, 100%);
  margin: 0 0 31px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.35;
}

.consultation-form label {
  display: grid;
  gap: 9px;
  margin: 0 0 19px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.2;
}

.consultation-form__trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.94);
  font: inherit;
  outline: none;
  transition:
    border-color 0.25s var(--ease-draven),
    box-shadow 0.25s var(--ease-draven),
    background 0.25s var(--ease-draven);
}

.consultation-form input,
.consultation-form select {
  height: 58px;
}

.consultation-form__select-field {
  position: relative;
  display: block;
}

.consultation-form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 52px;
  background-image: none;
  color-scheme: dark;
}

.consultation-form select::-ms-expand {
  display: none;
}

.consultation-form__select-field::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(223, 141, 63, 0.92);
  border-bottom: 2px solid rgba(223, 141, 63, 0.92);
  pointer-events: none;
  transform: translateY(-62%) rotate(45deg);
  transition:
    border-color 0.25s var(--ease-draven),
    opacity 0.25s var(--ease-draven);
}

.consultation-form__select-field:focus-within::after {
  border-color: rgba(255, 187, 105, 0.96);
  opacity: 1;
}

.consultation-form textarea {
  min-height: 104px;
  max-height: 180px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
  line-height: 1.35;
}

.consultation-form__phone-field {
  position: relative;
  display: block;
}

.consultation-form__phone-field input {
  padding-left: 96px;
}

.consultation-form__country {
  position: absolute;
  left: 12px;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 70px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.consultation-form__country[hidden] {
  display: none;
}

.consultation-form__country[hidden] + input {
  padding-left: 16px;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--control);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 2px rgba(223, 141, 63, 0.25),
    0 0 0 5px rgba(223, 141, 63, 0.08);
}

.consultation-form__submit {
  width: 100%;
  height: 58px;
  margin-top: 6px;
  border: 0;
  border-radius: 6px;
  background: var(--control);
  color: #111111;
  font-size: 18px;
  line-height: 1.2;
  cursor: pointer;
  transition:
    filter 0.3s var(--ease-draven),
    transform 0.3s var(--ease-draven);
}

.consultation-form__submit:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.consultation-form__submit:disabled {
  cursor: progress;
  filter: grayscale(0.25);
  opacity: 0.62;
  transform: none;
}

.consultation-form__status {
  min-height: 20px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.35;
}

.project-popup {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100vw - 48px));
  max-height: calc(100svh - 48px);
  overflow: auto;
  padding: clamp(34px, 3vw, 50px);
  border: 1px solid rgba(223, 141, 63, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0)),
    rgba(10, 10, 10, 0.95);
  box-shadow:
    0 28px 110px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: modal-rise 0.45s var(--ease-draven) both;
}

.project-popup__eyebrow {
  margin: 0 0 12px;
  color: var(--control);
  font-size: 16px;
  line-height: 1.2;
}

.project-popup h2 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.5px;
}

.project-popup__copy {
  max-width: 760px;
  margin: 0 0 clamp(28px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.35;
}

.project-popup__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(18px, 2.2vw, 30px);
  align-items: stretch;
}

.project-popup__hero,
.project-popup__summary,
.project-popup__gallery figure,
.project-popup__scope section {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.project-popup__hero,
.project-popup__gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.project-popup__hero {
  min-height: clamp(360px, 42vw, 560px);
}

.project-popup__hero::after,
.project-popup__gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

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

.project-popup__hero img {
  min-height: inherit;
  filter: brightness(0.9) saturate(0.95);
}

.project-popup__hero figcaption,
.project-popup__gallery figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 2vw, 30px);
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  display: grid;
  gap: 7px;
}

.project-popup__hero span,
.project-popup__gallery span,
.project-popup__summary dt {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.project-popup__hero span,
.project-popup__gallery span {
  color: rgba(255, 255, 255, 0.58);
}

.project-popup__hero strong {
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 300;
  line-height: 1;
}

.project-popup__summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 42px);
}

.project-popup__summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 300;
  line-height: 1.3;
}

.project-popup__summary dl {
  display: grid;
  gap: 0;
  margin: clamp(34px, 4vw, 56px) 0 0;
}

.project-popup__summary dl div {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-popup__summary dt {
  color: rgba(255, 255, 255, 0.42);
}

.project-popup__summary dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.24;
}

.project-popup__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.project-popup__gallery figure {
  min-height: clamp(180px, 18vw, 270px);
}

.project-popup__gallery strong {
  color: #ffffff;
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 400;
  line-height: 1.08;
}

.project-popup__scope {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 14px;
  margin-top: 14px;
}

.project-popup__scope section {
  padding: clamp(22px, 2.3vw, 34px);
}

.project-popup__scope h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(23px, 2.2vw, 36px);
  font-weight: 300;
  line-height: 1.08;
}

.project-popup__scope ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-popup__scope li,
.project-popup__scope p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(16px, 1.14vw, 19px);
  line-height: 1.38;
}

.project-popup__scope li {
  position: relative;
  padding-left: 18px;
}

.project-popup__scope li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--control);
}

[dir="rtl"] .project-popup__scope li {
  padding-right: 18px;
  padding-left: 0;
}

[dir="rtl"] .project-popup__scope li::before {
  right: 0;
  left: auto;
}

.video-popup {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 64px));
  max-height: calc(100dvh - 48px);
  padding: clamp(18px, 2vw, 24px) clamp(16px, 1.5vw, 22px) clamp(14px, 1.4vw, 20px);
  border: 1px solid rgba(223, 141, 63, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0)),
    rgba(10, 10, 10, 0.96);
  box-shadow:
    0 28px 110px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  animation: modal-rise 0.45s var(--ease-draven) both;
}

.video-modal {
  z-index: 22;
  overscroll-behavior: contain;
}

.video-modal > .modal__close {
  position: fixed;
  z-index: 3;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  background: rgba(17, 17, 17, 0.9);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.video-popup__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(14px, 1.8vw, 24px);
}

.video-popup__item {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  align-items: start;
}

.video-popup__poster {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(420px, calc(100dvh - 220px), 640px);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 50% 45%, rgba(223, 141, 63, 0.13), transparent 38%),
    var(--popup-video-poster) 50% 50% / contain no-repeat,
    #040404;
  opacity: 1;
  pointer-events: none;
  transform: translateZ(0) scale(1.004);
  transition: opacity 0.45s var(--ease-draven), transform 0.65s var(--ease-draven);
}

.video-popup__item.is-video-ready .video-popup__poster {
  opacity: 0;
  transform: translateZ(0) scale(1.025);
}

.video-popup__media {
  display: block;
  width: 100%;
  height: clamp(420px, calc(100dvh - 220px), 640px);
  border-radius: 6px;
  background: #050505;
  object-fit: contain;
  object-position: 50% 50%;
  opacity: 1;
  touch-action: pan-y;
  transition: opacity 0.38s var(--ease-draven);
}

.video-popup__item.is-video-loading .video-popup__media {
  opacity: 0;
}

.video-popup__caption {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.35;
  text-align: center;
}

.language-dock {
  position: fixed;
  z-index: 8;
  top: 45%;
  right: 0;
  display: flex;
  align-items: stretch;
  border-radius: 18px 0 0 18px;
  background:
    linear-gradient(135deg, rgba(255, 190, 108, 0.96), rgba(223, 141, 63, 0.96));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateX(calc(100% - 46px));
  transition:
    transform 0.45s var(--ease-draven),
    box-shadow 0.45s var(--ease-draven);
}

.language-dock:hover,
.language-dock.is-open {
  transform: translateX(0);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.language-dock__current,
.language-dock__menu button {
  border: 0;
  background: transparent;
  color: #15110c;
  cursor: pointer;
}

.language-dock__current {
  display: grid;
  place-items: center;
  width: 46px;
  min-height: 84px;
  padding: 0;
  border-radius: 18px 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.language-dock__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 11px 9px 2px;
}

.language-dock__menu button {
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.language-dock__menu button:hover,
.language-dock__menu button:focus-visible,
.language-dock__menu button.is-active {
  background: rgba(0, 0, 0, 0.82);
  color: #ffffff;
  outline: 0;
  transform: translateY(-1px);
}

[dir="rtl"] .language-dock {
  right: auto;
  left: 0;
  border-radius: 0 18px 18px 0;
  transform: translateX(calc(-100% + 46px));
}

[dir="rtl"] .language-dock:hover,
[dir="rtl"] .language-dock.is-open {
  transform: translateX(0);
}

[dir="rtl"] .language-dock__current {
  border-radius: 0 18px 18px 0;
}

[dir="rtl"] .language-dock__menu {
  padding: 9px 2px 9px 11px;
}

.manager-widget {
  position: fixed;
  z-index: 12;
  left: clamp(14px, 2vw, 32px);
  bottom: max(16px, env(safe-area-inset-bottom));
  display: grid;
  width: min(260px, calc(100vw - 30px));
  gap: 7px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-18px, 18px, 0) scale(0.96);
  transition:
    opacity 0.42s var(--ease-draven),
    transform 0.42s var(--ease-draven);
}

.manager-widget[hidden] {
  display: none;
}

.manager-widget.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.manager-widget__toggle,
.manager-widget__panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(22, 22, 22, 0.84), rgba(8, 8, 8, 0.76));
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.manager-widget__toggle {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 7px 9px 7px 7px;
  border-radius: 8px;
  color: #f7f4ef;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.manager-widget__toggle:hover,
.manager-widget__toggle:focus-visible {
  border-color: rgba(223, 145, 70, 0.68);
  outline: 0;
  transform: translateY(-2px);
}

.manager-widget__photo {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.manager-widget__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.manager-widget__label {
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.14;
}

.manager-widget__arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(223, 145, 70, 0.42);
  background: rgba(223, 145, 70, 0.1);
  color: rgba(255, 186, 105, 0.92);
  box-shadow: none;
  transform: translateX(0);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.34s var(--ease-draven),
    filter 0.25s ease;
  animation: manager-arrow-float 1.8s ease-in-out infinite;
}

.manager-widget__arrow svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manager-widget__toggle:hover .manager-widget__arrow,
.manager-widget__toggle:focus-visible .manager-widget__arrow {
  border-color: rgba(255, 196, 126, 0.72);
  background: rgba(223, 145, 70, 0.16);
  color: rgba(255, 210, 156, 0.98);
  filter: none;
  transform: translateX(2px);
}

.manager-widget.is-open .manager-widget__arrow {
  animation: none;
  transform: rotate(90deg);
}

.manager-widget__panel {
  display: grid;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  padding: 0 8px;
  border-radius: 10px;
  border-color: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(0.98);
  transform-origin: left bottom;
  transition:
    max-height 0.34s var(--ease-draven),
    padding 0.34s var(--ease-draven),
    border-color 0.34s ease,
    opacity 0.34s var(--ease-draven),
    transform 0.34s var(--ease-draven);
}

.manager-widget.is-open .manager-widget__panel {
  max-height: 190px;
  padding: 8px;
  border-color: rgba(255, 255, 255, 0.14);
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.manager-widget__option {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f1ec;
  font: inherit;
  font-size: 14px;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.manager-widget__option:hover,
.manager-widget__option:focus-visible {
  border-color: rgba(223, 145, 70, 0.58);
  background: rgba(223, 145, 70, 0.16);
  color: #ffffff;
  outline: 0;
  transform: translateX(2px);
}

[dir="rtl"] .manager-widget {
  right: clamp(14px, 2vw, 32px);
  left: auto;
  text-align: right;
  transform: translate3d(18px, 18px, 0) scale(0.96);
}

[dir="rtl"] .manager-widget.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

[dir="rtl"] .manager-widget__toggle {
  grid-template-columns: 28px minmax(0, 1fr) 42px;
  padding: 7px 7px 7px 9px;
  text-align: right;
}

[dir="rtl"] .manager-widget__photo {
  grid-column: 3;
  grid-row: 1;
}

[dir="rtl"] .manager-widget__label {
  grid-column: 2;
  grid-row: 1;
}

[dir="rtl"] .manager-widget__arrow {
  grid-column: 1;
  grid-row: 1;
  transform: scaleX(-1);
}

[dir="rtl"] .manager-widget__toggle:hover .manager-widget__arrow,
[dir="rtl"] .manager-widget__toggle:focus-visible .manager-widget__arrow {
  transform: scaleX(-1) translateX(2px);
}

[dir="rtl"] .manager-widget.is-open .manager-widget__arrow {
  transform: rotate(-90deg);
}

[dir="rtl"] .manager-widget__panel {
  transform-origin: right bottom;
}

[dir="rtl"] .manager-widget__option:hover,
[dir="rtl"] .manager-widget__option:focus-visible {
  transform: translateX(-2px);
}

[dir="rtl"] .hero__content,
[dir="rtl"] .hero__copy {
  right: var(--page-x);
  left: auto;
  text-align: right;
}

[dir="rtl"] .project-card,
[dir="rtl"] .consultation-form,
[dir="rtl"] .project-popup,
[dir="rtl"] .villa-feature-panel,
[dir="rtl"] .how-work,
[dir="rtl"] .latest-projects,
[dir="rtl"] .services,
[dir="rtl"] .capabilities {
  text-align: right;
}

[dir="rtl"] .project-card__button .button-label__track > span,
[dir="rtl"] .whatsapp-button .button-label__track > span {
  direction: rtl;
}

.capabilities {
  background: #050505;
  color: var(--text);
  padding: clamp(92px, 11.4vh, 124px) 0 clamp(70px, 8.4vh, 92px);
}

.capabilities__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  align-items: start;
  column-gap: clamp(72px, 8vw, 150px);
  row-gap: clamp(92px, 12vh, 138px);
  width: min(1600px, calc(100vw - 80px));
  margin: 0 auto;
}

.capabilities__quote {
  position: relative;
  padding-left: clamp(58px, 5vw, 92px);
}

.capabilities__quote::before,
.capabilities__quote::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  border-radius: 999px;
}

.capabilities__quote::before {
  top: 0.08em;
  bottom: 0.12em;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.28) 18%,
    rgba(255, 255, 255, 0.16) 54%,
    rgba(255, 255, 255, 0.04)
  );
}

.capabilities__quote::after {
  top: 0.08em;
  bottom: 0.12em;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.64) 18%,
    rgba(255, 255, 255, 0.98) 42%,
    rgba(223, 141, 63, 0.92) 54%,
    rgba(255, 255, 255, 0.7) 72%,
    rgba(255, 255, 255, 0)
  );
  background-repeat: no-repeat;
  background-size: 100% 34%;
  background-position: 0 -40%;
  box-shadow:
    0 0 28px rgba(223, 141, 63, 0.18),
    0 0 18px rgba(255, 255, 255, 0.12);
  animation: capability-rail-pulse 3.6s var(--ease-draven) 0.25s infinite;
  will-change: background-position, opacity, filter;
}

.capabilities h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  max-width: 1080px;
  font-size: clamp(44px, 4.4vw, 86px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.capabilities-title__word {
  display: inline-block;
  color: rgba(255, 255, 255, var(--word-opacity, 0.5));
  transform: translateY(14px);
  animation: capability-word-rise 0.9s var(--ease-draven) both;
  animation-delay: calc(var(--word-index, 0) * 22ms);
}

[dir="rtl"] .capabilities__quote {
  padding-right: clamp(58px, 5vw, 92px);
  padding-left: 0;
}

[dir="rtl"] .capabilities__quote::before,
[dir="rtl"] .capabilities__quote::after {
  right: 0;
  left: auto;
}

.capabilities__signature {
  align-self: center;
  padding-top: clamp(84px, 11.2vh, 128px);
}

.capabilities__credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

.capabilities__wreath {
  width: 46px;
  height: 46px;
  margin-top: 2px;
}

.capabilities__credential strong,
.capabilities__credential span {
  display: block;
}

.capabilities__credential strong {
  margin: 1px 0 6px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.25px;
}

.capabilities__credential span {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.28;
  letter-spacing: 0;
}

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

.capability-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: #171717;
}

.capability-card p {
  margin: 0;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 18px;
  line-height: 1.28;
}

.capability-card strong {
  display: block;
  margin-top: 56px;
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(70px, 5.65vw, 108px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -2px;
}

.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;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.2;
}

.section-kicker--dark {
  color: rgba(17, 17, 17, 0.7);
}

.section-kicker span {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--control);
}

.villa-explorer {
  position: relative;
  z-index: 13;
  overflow: hidden;
  padding: clamp(94px, 12vh, 132px) 0 clamp(72px, 8.8vh, 104px);
  background: #050505;
  color: var(--text);
}

.villa-explorer__inner {
  width: min(1780px, calc(100vw - 80px));
  margin: 0 auto;
}

.villa-explorer__heading {
  margin-bottom: clamp(18px, 2.35vw, 34px);
}

.villa-explorer h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(42px, 3vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.44px;
}

.villa-explorer__stage {
  position: relative;
  z-index: 13;
  isolation: isolate;
}

.villa-explorer__visual {
  position: relative;
  min-height: clamp(620px, 72vh, 820px);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 54% 44%, rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    #030303;
}

.villa-explorer__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 28%, rgba(0, 0, 0, 0.2));
}

.villa-explorer__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--villa-position, 50% 50%);
  filter: brightness(0.82) contrast(1.03) saturate(0.98);
  transform: translate3d(0, 0, 0) scale(1.015);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  transition:
    opacity 0.42s var(--ease-draven),
    filter 0.42s var(--ease-draven),
    transform 0.62s var(--ease-draven);
  will-change: transform, opacity, filter, object-position;
}

.villa-explorer__image--current {
  z-index: 0;
  opacity: 1;
}

.villa-explorer__image--next {
  z-index: 0;
  opacity: 0;
  filter: brightness(0.88) contrast(1.04) saturate(1.02);
  transform: translate3d(0, 0, 0) scale(1.045);
}

.villa-explorer__stage.is-switching .villa-explorer__image--current {
  opacity: 0;
  filter: brightness(0.74) contrast(1.07) saturate(0.96);
  transform: translate3d(0, 0, 0) scale(0.992);
}

.villa-explorer__stage.is-switching .villa-explorer__image--next {
  opacity: 1;
  filter: brightness(0.84) contrast(1.05) saturate(1.02);
  transform: translate3d(0, 0, 0) scale(1.015);
}

.villa-hotspot {
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--control);
  color: #111111;
  cursor: pointer;
  box-shadow:
    0 0 0 9px rgba(223, 141, 63, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  transition:
    background 0.28s var(--ease-draven),
    box-shadow 0.28s var(--ease-draven),
    transform 0.28s var(--ease-draven);
}

.villa-hotspot::before {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.villa-hotspot::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px solid rgba(223, 141, 63, 0);
  opacity: 0;
  pointer-events: none;
}

.villa-hotspot:hover,
.villa-hotspot.is-active {
  background: #f3a04b;
  box-shadow:
    0 0 0 10px rgba(223, 141, 63, 0.18),
    0 18px 34px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%) scale(1.08);
}

.villa-hotspot.is-active::before {
  content: "−";
}

.villa-hotspot.is-active::after {
  animation: hotspot-pulse 1.6s var(--ease-draven) infinite;
}

.villa-feature-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  width: min(335px, calc(100% - 48px));
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(8, 8, 8, 0.94);
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
  transform: translateY(0) scale(1);
  opacity: 1;
  transition:
    opacity 0.28s var(--ease-draven),
    transform 0.28s var(--ease-draven);
}

.villa-feature-panel.is-closing {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.985);
}

.villa-feature-panel__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.villa-feature-panel__topline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.25;
}

.villa-feature-panel__close,
.villa-feature-panel__arrow,
.villa-feature-panel__next {
  cursor: pointer;
  transition:
    filter 0.28s var(--ease-draven),
    transform 0.28s var(--ease-draven),
    border-color 0.28s var(--ease-draven);
}

.villa-feature-panel__close {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #171717;
  font-size: 20px;
  line-height: 1;
}

.villa-feature-panel h3 {
  margin: 28px 0 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.32px;
}

.villa-feature-panel > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.32;
}

.villa-feature-panel__actions {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  margin-top: auto;
  padding-top: 34px;
}

.villa-feature-panel__arrow,
.villa-feature-panel__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.villa-feature-panel__arrow {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: #151515;
}

.villa-feature-panel__next {
  gap: 14px;
  border: 1px solid rgba(223, 141, 63, 0.42);
  background: var(--control);
  color: #111111;
}

.villa-feature-panel__close:hover,
.villa-feature-panel__arrow:hover,
.villa-feature-panel__next:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.how-work {
  overflow: visible;
  position: relative;
  padding: clamp(82px, 10vh, 112px) 0 clamp(88px, 10vh, 116px);
  background: #ffffff;
  color: #101010;
}

.how-work__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1.5fr);
  align-items: start;
  column-gap: clamp(40px, 5.2vw, 96px);
  width: min(1600px, calc(100vw - 80px));
  margin: 0 auto;
}

.how-work__intro {
  position: sticky;
  top: 92px;
  align-self: start;
  padding-top: 6px;
}

.how-work h2 {
  max-width: 470px;
  margin: 0;
  color: rgba(5, 5, 5, 0.94);
  font-size: clamp(46px, 4.2vw, 64px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.45px;
}

.how-work .section-kicker {
  color: rgba(5, 5, 5, 0.68);
}

.how-work__intro > p:not(.section-kicker) {
  max-width: 460px;
  margin: 30px 0 0;
  color: rgba(5, 5, 5, 0.56);
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: 0;
}

.how-work__steps {
  display: grid;
  min-width: 0;
  overflow: visible;
  padding: 0;
}

.how-work__stack {
  display: grid;
  gap: clamp(22px, 4vh, 42px);
}

.how-work__steps:focus-visible {
  outline: 2px solid rgba(223, 141, 63, 0.7);
  outline-offset: 8px;
}

.how-work-card {
  position: relative;
  top: auto;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.82fr);
  gap: clamp(22px, 2.2vw, 34px);
  min-height: 292px;
  margin-bottom: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0) 56%),
    #1a1a1b;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  opacity: 0.001;
  transform: translate3d(0, 36px, 0) scale(0.988);
  transition:
    opacity 0.76s var(--ease-draven) var(--step-delay, 0ms),
    transform 0.76s var(--ease-draven) var(--step-delay, 0ms),
    border-color 0.3s var(--ease-draven),
    box-shadow 0.3s var(--ease-draven);
}

.how-work-card:nth-child(1) {
  z-index: 1;
}

.how-work-card:nth-child(2) {
  z-index: 2;
}

.how-work-card:nth-child(3) {
  z-index: 3;
}

.how-work-card:nth-child(4) {
  z-index: 4;
}

.how-work-card:nth-child(5) {
  z-index: 5;
}

.how-work-card:last-child {
  margin-bottom: 0;
}

.how-work-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.how-work-card:hover {
  border-color: rgba(223, 141, 63, 0.36);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.how-work-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.how-work-card__number {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.46);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.8px;
}

.how-work-card h3 {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(30px, 2.7vw, 40px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.28px;
}

.how-work-card__copy {
  max-width: 430px;
  margin: 14px 0 auto;
  color: rgba(255, 255, 255, 0.56);
  font-size: 17px;
  line-height: 1.35;
}

.how-work-card ul {
  display: grid;
  gap: 0;
  max-width: 460px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.how-work-card li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.58);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.how-work-card__media {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  background: #070707;
  align-self: stretch;
}

.how-work-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.how-work-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.52) contrast(1.03) brightness(0.8);
  transform: scale(1.01);
  transition:
    filter 0.45s var(--ease-draven),
    transform 0.45s var(--ease-draven);
}

.how-work-card:hover .how-work-card__media img {
  filter: grayscale(0.28) contrast(1.05) brightness(0.88);
  transform: scale(1.045);
}

.latest-projects {
  overflow: clip;
  margin-top: -1px;
  padding: clamp(106px, 12vh, 156px) 0 clamp(110px, 12vh, 150px);
  background: #050505;
  color: var(--text);
}

.latest-projects__inner {
  width: min(1500px, calc(100vw - 80px));
  margin: 0 auto;
}

.latest-projects__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 84px);
}

.latest-projects h2 {
  max-width: 940px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(58px, 7.4vw, 126px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.8px;
}

.latest-projects__header p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.36;
}

.latest-projects__stack {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}

.latest-project {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.76fr);
  gap: clamp(18px, 2vw, 28px);
  min-height: clamp(410px, 38vw, 560px);
}

.latest-project--reversed {
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1.12fr);
}

.latest-project--reversed .latest-project__media {
  grid-column: 2;
  grid-row: 1;
}

.latest-project--reversed .latest-project__info {
  grid-column: 1;
  grid-row: 1;
}

.latest-project__media,
.latest-project__info {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  border-radius: 8px;
}

.latest-project__media {
  margin: 0;
  background: #101010;
}

.latest-project__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.latest-project__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.88);
  transform: scale(1.01);
  transition:
    filter 0.5s var(--ease-draven),
    transform 0.5s var(--ease-draven);
}

.latest-project:hover .latest-project__media img {
  filter: brightness(0.86) saturate(0.98);
  transform: scale(1.045);
}

.latest-project__media figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 2.6vw, 42px);
  right: clamp(22px, 2.6vw, 42px);
  top: clamp(22px, 2.6vw, 40px);
  display: grid;
  gap: 7px;
}

.latest-project__media span,
.latest-project__number,
.latest-project dt {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.latest-project__media span {
  color: rgba(255, 255, 255, 0.58);
}

.latest-project__media strong {
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.3px;
}

.latest-project__info {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 48px);
  background: #f2f3f3;
  color: #070707;
}

.latest-project__number {
  margin: 0 0 clamp(48px, 6vw, 92px);
  color: rgba(0, 0, 0, 0.42);
}

.latest-project__info h3 {
  max-width: 560px;
  margin: 0;
  color: #070707;
  font-size: clamp(36px, 4.2vw, 68px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.5px;
}

.latest-project__copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(16px, 1.22vw, 20px);
  line-height: 1.34;
}

.latest-project dl {
  display: grid;
  gap: 0;
  margin: clamp(34px, 4vw, 56px) 0 0;
  padding: 0;
}

.latest-project dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.latest-project dt,
.latest-project dd {
  margin: 0;
}

.latest-project dt {
  color: rgba(0, 0, 0, 0.42);
}

.latest-project dd {
  color: rgba(0, 0, 0, 0.82);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.2;
}

.latest-project__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  margin-top: auto;
  padding: 2px 40px 2px 18px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.36s var(--ease-draven),
    background 0.36s var(--ease-draven),
    border-color 0.36s var(--ease-draven),
    color 0.36s var(--ease-draven);
}

.latest-project__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--control);
  transform: translateY(-50%);
  transition:
    transform 0.36s var(--ease-draven),
    background 0.36s var(--ease-draven);
}

.latest-project__button span {
  display: block;
  transition: transform 0.36s var(--ease-draven);
}

.latest-project__button span:last-child {
  position: absolute;
  transform: translateY(145%);
}

.latest-project__button:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 141, 63, 0.55);
  background: var(--control);
  color: #050505;
}

.latest-project__button:hover::after {
  background: #050505;
  transform: translateY(-50%) scale(1.12);
}

.latest-project__button:hover span:first-child {
  transform: translateY(-145%);
}

.latest-project__button:hover span:last-child {
  transform: translateY(0);
}

.final-cta {
  position: relative;
  overflow: clip;
  min-height: clamp(720px, 104svh, 980px);
  padding: clamp(128px, 16vh, 190px) 0 0;
  background: #050505;
  color: #ffffff;
}

.final-cta__frame {
  --final-cta-radius-x-start: 50%;
  --final-cta-radius-y-start: 30%;
  --final-cta-radius-x: var(--final-cta-radius-x-start);
  --final-cta-radius-y: var(--final-cta-radius-y-start);
  --final-cta-image-y: 7vh;
  --final-cta-image-scale: 1.08;
  position: relative;
  width: 112%;
  min-height: clamp(620px, 86svh, 840px);
  margin-left: -6%;
  overflow: hidden;
  border-radius: var(--final-cta-radius-x) var(--final-cta-radius-x) 0 0 / var(--final-cta-radius-y) var(--final-cta-radius-y) 0 0;
  isolation: isolate;
  background: #111111;
  will-change: border-radius;
}

.final-cta__frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(170px, 25vh, 270px);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.72) 58%, #050505 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0));
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.final-cta__picture,
.final-cta__shade {
  position: absolute;
  inset: 0;
}

.final-cta__picture {
  z-index: -3;
  display: block;
  overflow: hidden;
}

.final-cta__image {
  position: absolute;
  inset: 0;
  display: block;
  top: -10vh;
  width: 100%;
  height: calc(100% + 10vh);
  object-fit: cover;
  object-position: 50% 54%;
  filter: brightness(0.68) saturate(0.9) contrast(1.02);
  transform: translate3d(0, var(--final-cta-image-y), 0) scale(var(--final-cta-image-scale));
  transform-origin: 50% 58%;
  will-change: transform, filter;
  transition:
    transform 0.14s linear,
    filter 1.35s var(--ease-draven);
}

.final-cta__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.48) 62%, rgba(5, 5, 5, 0.92) 100%);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: inherit;
  width: min(1500px, calc(100vw - 80px));
  margin: 0 auto;
  padding: clamp(120px, 18vh, 190px) 0 clamp(64px, 9vh, 110px);
}

.final-cta h2 {
  max-width: min(900px, 68vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(46px, 5.1vw, 86px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.62px;
}

.final-cta__content p {
  max-width: 560px;
  margin: clamp(20px, 2.2vw, 34px) 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.38;
}

.final-cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 174px;
  height: 48px;
  margin-top: clamp(28px, 3.2vw, 42px);
  padding: 2px 42px 2px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.84);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.58),
    0 18px 42px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.36s var(--ease-draven),
    background 0.36s var(--ease-draven),
    border-color 0.36s var(--ease-draven),
    box-shadow 0.36s var(--ease-draven),
    color 0.36s var(--ease-draven);
}

.final-cta__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.78;
  transform: translateY(-50%);
  transition:
    background 0.36s var(--ease-draven),
    opacity 0.36s var(--ease-draven),
    transform 0.36s var(--ease-draven);
}

.final-cta__button:hover,
.final-cta__button:focus-visible {
  border-color: rgba(223, 141, 63, 0.76);
  background: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(223, 141, 63, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 46px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.final-cta__button:hover::after,
.final-cta__button:focus-visible::after {
  background: var(--control);
  opacity: 1;
  transform: translate(4px, -50%) scale(0.86);
}

.final-cta__button:hover .button-label__track,
.final-cta__button:focus-visible .button-label__track {
  transform: translateY(-1.2em);
}

.faq-section {
  position: relative;
  margin-top: -1px;
  padding: clamp(70px, 9vh, 112px) 0 clamp(72px, 9vh, 112px);
  background: #050505;
  color: #ffffff;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: start;
  width: min(1500px, calc(100vw - 80px));
  margin: 0 auto;
}

.faq-section__intro {
  position: sticky;
  top: 98px;
}

.faq-section .section-kicker {
  color: rgba(255, 255, 255, 0.56);
}

.faq-section h2 {
  max-width: 460px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(38px, 3.8vw, 64px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.32px;
}

.faq-section__intro > p:last-child {
  max-width: 400px;
  margin: clamp(22px, 3vw, 38px) 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.45;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: clamp(20px, 2.4vw, 32px) 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: clamp(20px, 1.55vw, 27px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: start;
  cursor: pointer;
}

.faq-item button:focus-visible {
  outline: 2px solid rgba(223, 141, 63, 0.68);
  outline-offset: 6px;
}

.faq-item__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--control);
  transition:
    transform 0.32s var(--ease-draven),
    background 0.32s var(--ease-draven);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  transition: transform 0.32s var(--ease-draven);
}

.faq-item__icon::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.92);
}

.faq-item button[aria-expanded="true"] .faq-item__icon::before,
.faq-item button[aria-expanded="true"] .faq-item__icon::after {
  background: #111111;
}

.faq-item__answer {
  overflow: hidden;
  max-width: 680px;
  padding: 0 64px clamp(22px, 2.4vw, 32px) 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.46;
}

.faq-item__answer p {
  margin: 0;
}

.footer-video {
  overflow: hidden;
  padding: clamp(74px, 10vh, 130px) 0 clamp(74px, 10vh, 130px);
  background: #050505;
}

.footer-video__frame {
  position: relative;
  width: min(1780px, calc(100vw - 120px));
  aspect-ratio: 16 / 7;
  margin: 0 auto;
  overflow: hidden;
  background: #111111;
}

.footer-video__media {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 1;
  filter: saturate(0.95) contrast(1.04) brightness(0.88);
  transition: opacity 0.7s var(--ease-draven), filter 0.7s var(--ease-draven);
}

.footer-video__frame.is-video-loading .footer-video__media {
  opacity: 0;
}

.footer-video__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)),
    radial-gradient(circle at 50% 45%, rgba(223, 141, 63, 0.14), transparent 36%),
    url("./assets/footer-video-poster.jpg") 50% 50% / cover no-repeat,
    #070707;
  opacity: 1;
  pointer-events: none;
  transform: translateZ(0) scale(1.01);
  transition: opacity 0.72s var(--ease-draven), transform 1.1s var(--ease-draven);
  will-change: opacity, transform;
}

.footer-video__frame.is-video-ready .footer-video__poster {
  opacity: 0;
  transform: translateZ(0) scale(1.035);
}

.site-footer {
  padding: 0 0 clamp(24px, 3.2vh, 42px);
  background: #050505;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner,
.site-footer__bottom {
  width: min(1780px, calc(100vw - 112px));
  margin: 0 auto;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.42fr) minmax(140px, 0.28fr);
  gap: clamp(38px, 7vw, 136px);
  padding: clamp(34px, 4.4vw, 54px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__logo {
  display: block;
  width: clamp(106px, 7.2vw, 136px);
  height: auto;
  margin-bottom: 28px;
}

.site-footer p {
  margin: 0;
}

.site-footer__brand p,
.site-footer__address-link,
.site-footer__contact-link,
.site-footer__social-link {
  font-size: clamp(13px, 0.86vw, 16px);
  line-height: 1.45;
}

.site-footer__contact-link + .site-footer__contact-link,
.site-footer__social-link + .site-footer__social-link {
  margin-top: 6px;
}

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

.site-footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__address-link {
  display: grid;
  width: fit-content;
  max-width: 500px;
  gap: 9px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition:
    color 0.28s var(--ease-draven),
    transform 0.28s var(--ease-draven);
}

.site-footer__address-text {
  display: block;
}

.site-footer__google-note {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer__google-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.site-footer__address-link:hover,
.site-footer__address-link:focus-visible {
  color: var(--control);
  transform: translateY(-1px);
}

.site-footer__address-link:hover .site-footer__google-note,
.site-footer__address-link:focus-visible .site-footer__google-note {
  color: rgba(223, 141, 63, 0.84);
}

.site-footer__label {
  margin-bottom: 26px !important;
  color: rgba(255, 255, 255, 0.44);
  font-size: clamp(13px, 0.9vw, 15px) !important;
}

.site-footer__contact-link,
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  text-underline-offset: 5px;
  transition: color 0.28s var(--ease-draven);
}

.site-footer__contact-link {
  display: flex;
  width: fit-content;
  text-decoration: none;
}

.site-footer__contact-link--phone svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: var(--control);
}

.site-footer__social-link {
  display: flex;
  width: fit-content;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible,
.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  color: var(--control);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 20px;
}

.site-footer__bottom p,
.site-footer__license {
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
}

.site-footer__license {
  justify-self: center;
  text-align: center;
}

.site-footer__policy {
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 12px;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
  transition: color 0.28s var(--ease-draven);
}

.site-footer__policy:hover,
.site-footer__policy:focus-visible {
  color: var(--control);
}

.policy-popup {
  position: relative;
  width: min(920px, calc(100vw - 40px));
  max-height: min(82svh, 760px);
  overflow: auto;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.98);
  color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: modal-rise 0.42s var(--ease-draven) both;
}

.policy-popup__eyebrow,
.policy-popup__updated {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.policy-popup h2 {
  max-width: 620px;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.24px;
}

.policy-popup__updated {
  margin-top: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}

.policy-popup__body {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.policy-popup__section {
  padding: 17px 56px 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.policy-popup__section h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.policy-popup__section p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.55;
}

[dir="rtl"] .policy-popup {
  text-align: right;
}

[dir="rtl"] .policy-popup__section {
  padding-right: 0;
  padding-left: 56px;
}

.services {
  overflow: hidden;
  padding: clamp(96px, 12vh, 132px) 0;
  background: #050505;
  color: var(--text);
}

.services__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1.5fr);
  align-items: start;
  column-gap: clamp(40px, 5.2vw, 96px);
  width: min(1600px, calc(100vw - 80px));
  margin: 0 auto;
}

.services__header {
  position: sticky;
  top: 96px;
  margin: 0;
}

.services h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(40px, 3vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.44px;
}

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

.service-card {
  display: flex;
  min-height: clamp(198px, 13.4vw, 236px);
  flex-direction: column;
  padding: clamp(18px, 1.35vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: #171717;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: clamp(34px, 4.3vw, 56px);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--control);
}

.service-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(20px, 1.28vw, 25px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.18px;
}

.service-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.32;
}

.has-reveal-observer .reveal-on-scroll {
  opacity: 0.001;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  will-change: opacity, transform, filter;
  transition:
    opacity 0.86s var(--ease-draven) var(--reveal-delay, 0ms),
    transform 0.86s var(--ease-draven) var(--reveal-delay, 0ms),
    filter 0.86s var(--ease-draven) var(--reveal-delay, 0ms);
}

.has-reveal-observer .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.has-reveal-observer .reveal-on-scroll[data-reveal-kind="section"] {
  transform: translate3d(0, 52px, 0) scale(0.99);
}

.has-reveal-observer .reveal-on-scroll[data-reveal-kind="media"] {
  transform: translate3d(0, 28px, 0) scale(0.965);
}

.has-reveal-observer .final-cta__frame.reveal-on-scroll {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
  transition:
    opacity 1.15s var(--ease-draven) var(--reveal-delay, 0ms),
    filter 1.15s var(--ease-draven) var(--reveal-delay, 0ms);
}

.has-reveal-observer .final-cta__frame.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.has-reveal-observer .final-cta__frame.reveal-on-scroll.is-visible .final-cta__image {
  filter: brightness(0.74) saturate(0.96) contrast(1.04);
}

@keyframes hotspot-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.85);
    border-color: rgba(223, 141, 63, 0.42);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
    border-color: rgba(223, 141, 63, 0);
  }
}

@keyframes manager-arrow-float {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}

@keyframes hero-reveal {
  from {
    opacity: 0.001;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes word-rise {
  from {
    opacity: 0.001;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes site-loader-sweep {
  from {
    opacity: 0;
    transform: translateX(-36%);
  }

  45% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateX(36%);
  }
}

@keyframes site-loader-line {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  52% {
    opacity: 1;
    transform: scaleX(0.42);
  }

  to {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes site-loader-mark {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.82) rotate(-12deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes site-loader-text {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes site-loader-exit {
  0%,
  68% {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes capability-word-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes capability-rail-pulse {
  0% {
    opacity: 0;
    background-position: 0 -42%;
    filter: blur(0.5px);
  }

  14% {
    opacity: 1;
    filter: blur(0);
  }

  52% {
    opacity: 0.98;
    background-position: 0 64%;
  }

  86% {
    opacity: 0.56;
    background-position: 0 128%;
    filter: blur(0.5px);
  }

  100% {
    opacity: 0;
    background-position: 0 142%;
    filter: blur(1px);
  }
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal-rise {
  from {
    opacity: 0.001;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .site-loader {
    display: none;
  }

  .has-reveal-observer .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .how-work-card {
    opacity: 1;
    transform: none;
  }
}

.play-button:focus-visible,
.whatsapp-button:focus-visible,
.project-card__button:focus-visible,
.final-cta__button:focus-visible,
.villa-hotspot:focus-visible,
.villa-feature-panel__close:focus-visible,
.villa-feature-panel__arrow:focus-visible,
.villa-feature-panel__next:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  :root {
    --page-x: 15px;
  }

  .not-found {
    align-content: stretch;
    min-height: 100svh;
    padding: max(18px, env(safe-area-inset-top)) 15px max(18px, env(safe-area-inset-bottom));
  }

  .not-found::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.52) 0%, rgba(5, 5, 5, 0.9) 58%, #050505 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.38), rgba(5, 5, 5, 0.18));
  }

  .not-found__background--desktop {
    display: none;
  }

  .not-found__background--mobile {
    display: block;
    object-position: 54% 50%;
  }

  .not-found__panel {
    align-self: center;
    padding: 28px 22px;
  }

  .not-found__brand {
    width: 126px;
    margin-bottom: 78px;
  }

  .not-found__copy {
    max-width: 390px;
  }

  .not-found__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .not-found__button {
    width: 100%;
    min-height: 50px;
  }

  .not-found__card {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    width: 100%;
    margin-top: 18px;
    padding: 18px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__video {
    object-position: 54% 50%;
    transform: translateX(-6vw) scale(1.08);
  }

  .hero__poster {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.44)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.32)),
      url("./assets/hero-poster-mobile.jpg") 54% 50% / cover no-repeat;
    transform: translateX(-6vw) scale(1.08);
  }

  .hero__header {
    top: 14px;
    left: 15px;
    right: 15px;
    align-items: center;
  }

  .brand {
    align-items: center;
    width: 126px;
    height: 30px;
  }

  .brand img {
    max-height: 30px;
    object-fit: contain;
    object-position: left center;
  }

  .hero__actions {
    gap: 8px;
  }

  .header-nav {
    display: none;
  }

  .play-button {
    width: 36px;
    height: 36px;
  }

  .whatsapp-button {
    min-width: 0;
    height: 36px;
    padding: 2px 15px;
    font-size: 14px;
  }

  .hero__content {
    top: 32vh;
  }

  .hero__proof {
    margin-bottom: 9px;
    font-size: 14px;
    line-height: 1.2;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(27px, 6.2vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.27px;
  }

  .hero__copy {
    bottom: 260px;
    width: min(305px, calc(100vw - 48px));
    font-size: 14px;
    line-height: 1.2;
  }

  .project-card {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    min-height: 140px;
    padding: 12px;
  }

  .project-card__media {
    width: 112px;
    height: 112px;
  }

  .project-card__body {
    gap: 12px;
  }

  .project-card h2 {
    font-size: 20px;
  }

  .project-card p {
    font-size: 14px;
  }

  .project-card__meta {
    gap: 4px;
  }

  .project-card__meta p {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 7px;
    font-size: 13px;
  }

  .project-card__button {
    min-height: 40px;
    font-size: 16px;
  }

  .modal {
    padding: max(12px, env(safe-area-inset-top)) 16px max(12px, env(safe-area-inset-bottom));
  }

  .consultation-form {
    min-height: auto;
    max-height: none;
    overflow: visible;
    padding: 30px 22px 16px;
  }

  .modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .consultation-form h2 {
    margin-bottom: 6px;
    font-size: 30px;
    line-height: 1.02;
  }

  .consultation-form__eyebrow {
    margin-bottom: 7px;
    font-size: 14px;
  }

  .consultation-form__copy {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.26;
  }

  .consultation-form label {
    gap: 6px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .consultation-form input,
  .consultation-form select,
  .consultation-form__submit {
    height: 46px;
  }

  .consultation-form textarea {
    min-height: 82px;
    max-height: 110px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .consultation-form__submit {
    margin-top: 8px;
    font-size: 16px;
  }

  .consultation-form__status {
    min-height: 16px;
    margin-top: 8px;
    font-size: 12px;
  }

  .project-popup {
    width: calc(100vw - 36px);
    max-height: calc(100svh - 36px);
    padding: 42px 24px 24px;
  }

  .project-popup h2 {
    font-size: 38px;
  }

  .project-popup__copy {
    font-size: 16px;
  }

  .project-popup__layout,
  .project-popup__scope {
    grid-template-columns: 1fr;
  }

  .project-popup__hero {
    min-height: 360px;
  }

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

  .project-popup__gallery figure {
    min-height: 220px;
  }

  .video-popup {
    width: min(430px, calc(100vw - 24px));
    max-height: min(760px, calc(100dvh - max(32px, env(safe-area-inset-top)) - max(82px, env(safe-area-inset-bottom))));
    padding: 12px 10px;
    overflow-x: hidden;
    scrollbar-width: none;
  }

  .video-popup::-webkit-scrollbar {
    display: none;
  }

  .video-modal > .modal__close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 34px;
    height: 34px;
  }

  .video-popup__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .video-popup__item {
    gap: 8px;
    padding: 0 0 12px;
  }

  .video-popup__media {
    height: min(48dvh, 500px);
    max-height: calc(100dvh - 290px);
    min-height: 310px;
    border-radius: 6px;
  }

  .video-popup__poster {
    height: min(48dvh, 500px);
    max-height: calc(100dvh - 290px);
    min-height: 310px;
  }

  .video-popup__caption {
    font-size: 13px;
    padding: 0 8px;
  }

  .capabilities {
    padding: 54px 0 60px;
  }

  .capabilities__inner {
    grid-template-columns: 1fr;
    row-gap: 42px;
    width: calc(100vw - 30px);
  }

  .capabilities__quote {
    padding-left: 34px;
  }

  [dir="rtl"] .capabilities__quote {
    padding-right: 34px;
    padding-left: 0;
  }

  .capabilities__quote::after {
    height: auto;
    background-size: 100% 38%;
  }

  .capabilities__signature {
    padding-top: 0;
  }

  .capabilities__credential {
    margin-top: 22px;
  }

  .capabilities__stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .capability-card {
    min-height: 220px;
    padding: 20px;
  }

  .capability-card strong {
    font-size: 72px;
    letter-spacing: -1px;
  }

  .capability-card p {
    font-size: 16px;
  }

  .villa-explorer {
    padding: 80px 0 60px;
  }

  .villa-explorer__inner {
    width: calc(100vw - 30px);
  }

  .villa-explorer h2 {
    font-size: 38px;
  }

  .villa-explorer__visual {
    min-height: clamp(390px, 66vw, 580px);
  }

  .villa-feature-panel {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 13;
    width: 100%;
    min-height: auto;
    margin-top: 15px;
  }

  .villa-feature-panel__close {
    display: none;
  }

  .villa-feature-panel__actions {
    padding-top: 28px;
  }

  .how-work {
    padding: 82px 0 66px;
  }

  .how-work__inner {
    grid-template-columns: 1fr;
    row-gap: 44px;
    width: calc(100vw - 30px);
  }

  .how-work__intro {
    position: static;
    padding-top: 0;
  }

  .how-work h2 {
    max-width: 720px;
    font-size: 46px;
    line-height: 1.04;
  }

  .how-work__intro > p:not(.section-kicker) {
    max-width: 650px;
    margin-top: 20px;
    font-size: 17px;
  }

  .how-work__steps {
    gap: 16px;
    padding: 24px 0 0;
  }

  .how-work-card {
    position: relative;
    top: auto;
    z-index: auto;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.68fr);
    min-height: auto;
    padding: 22px;
    transform: translate3d(0, 28px, 0) scale(0.99);
  }

  .how-work-card:last-child {
    margin-bottom: 0;
  }

  .how-work-card__number {
    margin-bottom: 12px;
  }

  .how-work-card__copy {
    margin-bottom: 0;
  }

  .how-work-card ul {
    margin-top: 28px;
  }

  .how-work-card__media {
    min-height: 220px;
  }

  .latest-projects {
    padding: 82px 0 70px;
  }

  .latest-projects__inner {
    width: calc(100vw - 30px);
  }

  .latest-projects__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .latest-projects h2 {
    font-size: clamp(46px, 10vw, 74px);
    line-height: 0.98;
  }

  .latest-projects__header p {
    max-width: 650px;
    margin: 0;
  }

  .latest-project,
  .latest-project--reversed {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .latest-project--reversed .latest-project__media,
  .latest-project--reversed .latest-project__info {
    grid-column: auto;
    grid-row: auto;
  }

  .latest-project__media {
    min-height: clamp(280px, 58vw, 440px);
  }

  .latest-project__info {
    min-height: auto;
  }

  .latest-project__button {
    margin-top: 32px;
  }

  .latest-project__number {
    margin-bottom: 48px;
  }

  .latest-project__info h3 {
    margin-top: 0;
  }

  .final-cta {
    min-height: 760px;
    padding-top: 96px;
  }

  .final-cta__frame {
    --final-cta-radius-y-start: 22%;
    min-height: 680px;
    width: 118%;
    margin-left: -9%;
  }

  .final-cta__image {
    object-position: 50% 50%;
  }

  .final-cta__content {
    width: calc(100vw - 30px);
    padding: 130px 0 54px;
  }

  .final-cta h2 {
    max-width: 720px;
    font-size: clamp(42px, 8vw, 62px);
  }

  .final-cta__content p {
    max-width: 520px;
    font-size: 17px;
  }

  .faq-section {
    padding: 68px 0 64px;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    width: calc(100vw - 30px);
  }

  .faq-section__intro {
    position: static;
  }

  .faq-section h2 {
    max-width: 620px;
    font-size: clamp(36px, 7vw, 52px);
  }

  .faq-section__intro > p:last-child {
    max-width: 520px;
    margin-top: 20px;
  }

  .faq-list {
    border-top: 0;
    margin-top: clamp(18px, 5vw, 28px);
  }

  .faq-item button {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 18px;
    padding: 22px 0;
    font-size: 22px;
  }

  .faq-item__answer {
    max-width: 620px;
    padding-right: 48px;
    font-size: 16px;
  }

  .footer-video {
    padding: 70px 0;
  }

  .footer-video__frame,
  .site-footer__inner,
  .site-footer__bottom {
    width: calc(100vw - 30px);
  }

  .footer-video__frame {
    aspect-ratio: 16 / 9;
  }

  .footer-video__poster {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
      radial-gradient(circle at 50% 45%, rgba(223, 141, 63, 0.14), transparent 36%),
      url("./assets/footer-video-poster-mobile.jpg") 50% 50% / cover no-repeat,
      #070707;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
    padding: 34px 0;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .services {
    padding: 80px 0 60px;
  }

  .services__inner {
    grid-template-columns: 1fr;
    row-gap: 46px;
    width: calc(100vw - 30px);
  }

  .services__header {
    position: static;
  }

  .services h2 {
    font-size: 38px;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 28px;
  }

  .service-card {
    min-height: 230px;
    padding: 20px;
  }

  .service-card__icon {
    margin-bottom: 42px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .modal {
    padding: max(10px, env(safe-area-inset-top)) 14px max(10px, env(safe-area-inset-bottom));
  }

  .not-found__panel {
    padding: 24px 18px;
  }

  .not-found__brand {
    margin-bottom: 66px;
  }

  .not-found h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .not-found__copy {
    margin-top: 18px;
    font-size: 15px;
  }

  .not-found__card {
    display: none;
  }

  .consultation-form {
    width: calc(100vw - 28px);
    padding: 28px 20px 14px;
  }

  .consultation-form h2 {
    font-size: clamp(28px, 7.4vw, 31px);
  }

  .consultation-form__copy {
    font-size: 13px;
  }

  .consultation-form textarea {
    min-height: 76px;
  }

  .video-modal {
    align-items: start;
    justify-items: center;
    padding:
      max(58px, calc(env(safe-area-inset-top) + 48px))
      12px
      max(76px, env(safe-area-inset-bottom));
  }

  .video-popup {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - max(58px, calc(env(safe-area-inset-top) + 48px)) - max(88px, env(safe-area-inset-bottom)));
    padding: 10px 9px 12px;
    border-radius: 8px;
  }

  .video-popup__media {
    height: min(46dvh, 470px);
    min-height: 300px;
    max-height: calc(100dvh - 300px);
  }

  .video-popup__poster {
    height: min(46dvh, 470px);
    min-height: 300px;
    max-height: calc(100dvh - 300px);
  }

  .video-popup__caption {
    font-size: 12px;
    line-height: 1.25;
  }

  .hero__header {
    align-items: center;
    gap: 12px;
  }

  .brand {
    width: 112px;
    height: 30px;
  }

  .hero__actions {
    gap: 7px;
  }

  .whatsapp-button {
    display: inline-flex;
    min-width: 136px;
    height: 36px;
    padding: 2px 11px;
    font-size: 13px;
  }

  .language-dock {
    top: 48%;
    transform: translateX(calc(100% - 40px));
  }

  .language-dock__current {
    width: 40px;
    min-height: 72px;
    font-size: 12px;
  }

  .language-dock__menu {
    gap: 4px;
    padding: 7px 8px 7px 0;
  }

  .language-dock__menu button {
    min-width: 32px;
    height: 32px;
  }

  .manager-widget {
    left: 12px;
    width: min(238px, calc(100vw - 24px));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .manager-widget__toggle {
    grid-template-columns: 38px minmax(0, 1fr) 26px;
    min-height: 52px;
    gap: 8px;
    padding: 7px;
  }

  .manager-widget__photo {
    width: 38px;
    height: 38px;
  }

  .manager-widget__label {
    font-size: 13px;
  }

  .manager-widget__arrow {
    width: 26px;
    height: 26px;
  }

  .manager-widget__arrow svg {
    width: 14px;
    height: 14px;
  }

  .manager-widget__option {
    min-height: 39px;
    font-size: 13px;
  }

  [dir="rtl"] .language-dock {
    transform: translateX(calc(-100% + 40px));
  }

  [dir="rtl"] .language-dock__menu {
    padding: 7px 0 7px 8px;
  }

  [dir="rtl"] .manager-widget {
    right: 12px;
    left: auto;
  }

  [dir="rtl"] .manager-widget__toggle {
    grid-template-columns: 26px minmax(0, 1fr) 38px;
    padding: 7px;
  }

  .hero__content {
    top: 26vh;
  }

  .hero h1 {
    font-size: 27px;
  }

  .hero__copy {
    bottom: 230px;
    font-size: 14px;
  }

  .project-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 120px;
    gap: 12px;
    padding: 10px;
  }

  .project-card__media {
    width: 86px;
    height: auto;
    min-height: 100%;
    align-self: stretch;
  }

  .project-card__body {
    gap: 12px;
  }

  .project-card h2 {
    font-size: 18px;
  }

  .project-card p,
  .project-card__button {
    font-size: 14px;
  }

  .project-card__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .project-card__meta p {
    grid-template-columns: 1fr;
    gap: 1px;
    font-size: 12px;
  }

  .project-card__button {
    min-height: 38px;
  }

  .project-popup {
    width: calc(100vw - 30px);
    max-height: calc(100svh - 30px);
    padding: 40px 20px 20px;
  }

  .project-popup h2 {
    font-size: 34px;
  }

  .project-popup__hero {
    min-height: 300px;
  }

  .project-popup__summary {
    padding: 20px;
  }

  .project-popup__summary p {
    font-size: 17px;
  }

  .project-popup__gallery {
    gap: 10px;
  }

  .project-popup__gallery figure {
    min-height: 180px;
  }

  .project-popup__scope section {
    padding: 20px;
  }

  .capabilities {
    padding: 42px 0 44px;
  }

  .capabilities h2 {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .capabilities__quote {
    padding-left: 24px;
  }

  [dir="rtl"] .capabilities__quote {
    padding-right: 24px;
    padding-left: 0;
  }

  .capabilities__quote::before {
    top: 0.02em;
    bottom: 0.04em;
  }

  .capabilities__quote::after {
    height: auto;
    background-size: 100% 42%;
  }

  .capabilities__credential {
    gap: 12px;
  }

  .capabilities__wreath {
    width: 40px;
    height: 40px;
  }

  .capabilities__credential strong {
    font-size: 21px;
  }

  .capabilities__credential span {
    font-size: 14px;
  }

  .capability-card {
    min-height: 210px;
  }

  .capability-card strong {
    font-size: 64px;
  }

  .section-kicker {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .villa-explorer {
    padding: 72px 0 44px;
  }

  .villa-explorer h2 {
    font-size: 34px;
  }

  .villa-explorer__visual {
    min-height: 430px;
  }

  .villa-explorer__image {
    object-position: var(--villa-position-mobile, var(--villa-position, 50% 50%));
  }

  .villa-hotspot {
    top: var(--my, var(--y));
    left: var(--mx, var(--x));
    width: 30px;
    height: 30px;
    box-shadow:
      0 0 0 8px rgba(223, 141, 63, 0.16),
      0 14px 24px rgba(0, 0, 0, 0.34);
  }

  .villa-hotspot::before {
    font-size: 20px;
  }

  .villa-feature-panel {
    padding: 20px;
  }

  .villa-feature-panel h3 {
    margin-top: 24px;
    font-size: 27px;
  }

  .villa-feature-panel > p {
    font-size: 16px;
  }

  .villa-feature-panel__actions {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    padding-top: 26px;
  }

  .villa-feature-panel__arrow,
  .villa-feature-panel__next {
    height: 52px;
    font-size: 16px;
  }

  .how-work {
    padding: 72px 0 48px;
  }

  .how-work h2 {
    font-size: 34px;
    letter-spacing: -0.34px;
  }

  .how-work__intro > p:not(.section-kicker) {
    font-size: 16px;
  }

  .how-work-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .how-work-card h3 {
    font-size: 27px;
  }

  .how-work-card__copy {
    font-size: 16px;
  }

  .how-work-card ul {
    margin-top: 24px;
  }

  .how-work-card li {
    font-size: 12px;
    letter-spacing: 1.1px;
  }

  .how-work-card__media {
    min-height: 210px;
    order: -1;
  }

  .latest-projects {
    padding: 72px 0 58px;
  }

  .latest-projects h2 {
    font-size: 40px;
    letter-spacing: -0.25px;
  }

  .final-cta {
    min-height: 720px;
    padding-top: 72px;
  }

  .final-cta__frame {
    --final-cta-radius-y-start: 18%;
    min-height: 650px;
    width: 132%;
    margin-left: -16%;
  }

  .final-cta__image {
    object-position: 62% 50%;
  }

  .final-cta__content {
    width: calc(100vw - 30px);
    padding: 118px 0 112px;
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.04;
    letter-spacing: -0.32px;
  }

  .final-cta__content p {
    max-width: 330px;
    font-size: 15px;
  }

  .final-cta__button {
    min-width: 154px;
    height: 44px;
    padding: 2px 18px;
    font-size: 12px;
  }

  .faq-section {
    padding: 54px 0 52px;
  }

  .faq-section h2 {
    margin-top: 18px;
    font-size: 32px;
    line-height: 1.06;
    letter-spacing: 0;
  }

  .faq-section__intro > p:last-child {
    font-size: 15px;
  }

  .faq-item button {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 14px;
    padding: 19px 0;
    font-size: 18px;
    letter-spacing: 0;
  }

  .faq-item__icon {
    width: 24px;
    height: 24px;
  }

  .faq-item__answer {
    padding: 0 38px 20px 0;
    font-size: 14px;
  }

  .footer-video {
    padding: 54px 0;
  }

  .footer-video__frame {
    aspect-ratio: 4 / 5;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 0;
  }

  .site-footer__logo {
    width: 110px;
    margin-bottom: 22px;
  }

  .site-footer__label {
    margin-bottom: 12px !important;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
  }

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

  .policy-popup {
    width: calc(100vw - 28px);
    max-height: calc(100svh - 28px);
    padding: 48px 22px 24px;
  }

  .policy-popup h2 {
    font-size: 34px;
  }

  .policy-popup__body {
    margin-top: 24px;
  }

  .policy-popup__section,
  [dir="rtl"] .policy-popup__section {
    padding: 15px 0 16px;
  }

  .latest-projects__header p {
    font-size: 15px;
  }

  .latest-project {
    gap: 12px;
  }

  .latest-project__media {
    min-height: 248px;
  }

  .latest-project__media figcaption {
    left: 18px;
    right: 18px;
    top: 18px;
  }

  .latest-project__media strong {
    font-size: 28px;
  }

  .latest-project__info {
    padding: 22px;
  }

  .latest-project__number {
    margin-bottom: 42px;
  }

  .latest-project__info h3 {
    margin-top: 0;
    font-size: 31px;
    line-height: 1.02;
  }

  .latest-project__copy {
    margin-top: 16px;
    font-size: 15px;
  }

  .latest-project dl {
    margin-top: 28px;
  }

  .latest-project dl div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 13px 0;
  }

  .latest-project dd {
    font-size: 15px;
  }

  .latest-project__button {
    width: 100%;
    min-height: 42px;
    margin-top: 24px;
    padding-right: 36px;
    font-size: 12px;
  }

  .services {
    padding: 72px 0 44px;
  }

  .services h2 {
    font-size: 34px;
  }

  .services__inner {
    row-gap: 54px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .service-card {
    min-height: 218px;
  }

  .service-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 36px;
  }

  .service-card__icon svg {
    width: 27px;
    height: 27px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 16px;
  }
}
