@font-face {
  font-family: "Monument Extended";
  src: url("../fonts/font-monument-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monument Extended";
  src: url("../fonts/font-monument-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brown: #3a2921;
  --copper: #814b41;
  --blue: #1f212f;
  --beige-green: #b3a791;
  --beige: #e8dfd2;
  --white: #ffffff;
  --font-display: "Monument Extended", "Arial Narrow", Arial, sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 1408px;
  --gutter: 52px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--beige);
  color: var(--blue);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, p {
  margin: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.23vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--blue);
}

.section-title--light {
  color: var(--beige);
}

/* ---------- Header / Hero ---------- */
.hero {
  position: relative;
  min-height: 840px;
  height:100vh;
  color: var(--beige);
  overflow: hidden;
  background: #5e93c4;
}

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

.hero__photo {
  position: absolute;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  top: 10%;
  left: 11%;
  transform: rotate(-1.23deg);
}

.hero__lion {
  position: absolute;
  width: min(946px, 70vw);
  height: auto;
  left: 50%;
  top: 55%;
  transform: translate(-94%, -50%);
  opacity: 0.95;
  mix-blend-mode: soft-light;
}

.hero__lion.is-assembling {
  opacity: 0;
}

.hero__lion-canvas {
  position: absolute;
  width: min(946px, 70vw);
  height: auto;
  left: 50%;
  top: 55%;
  transform: translate(-94%, -50%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  opacity: 0.95;
}

.hero__lion.is-ready {
  opacity: 0.95;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px var(--gutter) 24px;
  border-bottom: 1px solid rgba(232, 223, 210, 0.35);
}

.site-header.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 18px;
  padding-bottom: 16px;
  background: rgba(31, 33, 47, 0.94);
  border-bottom-color: rgba(232, 223, 210, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: site-header-in 0.35s ease;
}

.site-header--on-light.is-stuck {
  background: rgba(232, 223, 210, 0.96);
  border-bottom-color: rgba(31, 33, 47, 0.15);
  color: var(--blue);
}

.site-header--on-light.is-stuck .site-header__burger span {
  background: var(--blue);
}

@keyframes site-header-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
}

.site-header__logo-img {
  display: block;
  width: 141px;
  height: auto;
}

.site-header__logo-mobile {
  color: #fff;
}

.site-header__logo-mobile-svg {
  display: block;
  width: 123px;
  height: auto;
}

@media (min-width: 861px) {
  .site-header__logo-mobile {
    display: none !important;
  }

  .site-header.is-stuck .site-header__logo-img {
    display: none;
  }

  .site-header.is-stuck .site-header__logo-mobile,
  .site-header.is-stuck .site-header__logo-mobile[hidden] {
    display: block !important;
  }

  .site-header--on-light.is-stuck .site-header__logo-mobile {
    color: var(--blue);
  }
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 24px);
  font-size: clamp(16px, 1.851vw, 24px);
  letter-spacing: -0.02em;
}

.site-nav a:hover,
.site-header__cta:hover,
.hero__link:hover {
  opacity: 0.8;
}

.site-header__cta {
  font-size: 24px;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.site-header__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.site-header__burger span {
  display: block;
  height: 2px;
  background: var(--beige);
  margin: 6px 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 14.32vh;
  padding-bottom: 8.82vh;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.23vw, 64px);
  max-width: 378px;
  margin-bottom: 20.05vh;
}

.hero__text {
  max-width: 511px;
  font-size: clamp(16px, 1.851vw, 28px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 28px;
}

.hero__text p {
  margin: 0;
}

.hero__link {
  font-size: clamp(16px, 1.851vw, 28px);
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Stats ---------- */
.stats {
  padding: 72px 0 80px;
  background: var(--beige);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stats__item {
  position: relative;
  padding: 24px 16px;
}

.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 210px;
  background: rgba(31, 33, 47, 0.35);
}

.stats__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 20px;
}

.stats__label {
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.02em;
  line-height: 0.9;
}

/* ---------- Projects ---------- */
.projects {
  position: relative;
  padding: 19.97vw 0 7.93vw;
  overflow: hidden;
  /* min-height: 1217px; */
}

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

.projects__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.projects__bg::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 302px;
  background: linear-gradient(180deg, var(--beige) 0%, rgba(232, 223, 210, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.projects .container {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--gutter) * 2), var(--container));;
  max-width: 1408px;
}

.projects .section-title {
  margin-bottom: 36px;
  padding-left: 0;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 513px);
  gap: 28px;
  width: 100%;
  max-width: 1595px;
}

.project-card {
  position: relative;
  width: 513px;
  max-width: 100%;
}

.project-card__inner {
  position: relative;
  width: 513px;
  max-width: 100%;
  aspect-ratio: 513 / 725;
}

.project-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__body {
  position: absolute;
  left: 15.8%;
  right: 0;
  bottom: 0;
  /* height: 47.59%; */
  background: var(--beige);
  padding: 30px 21px 24px;
  display: flex;
  flex-direction: column;
}

.project-card__head {
  margin-bottom: 0;
}

.project-card__name {
  font-size: clamp(24px, 2.083vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 22px;
}

.project-card__meta {
  font-size: clamp(16px, 1.58vw, 24px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-align: left;
  padding-bottom: 18px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(31, 33, 47, 0.45);
}

.project-card__loc {
  font-size: clamp(16px, 1.58vw, 24px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-align: left;
  padding: 18px 0;
  margin: 0;
  border-bottom: 1px solid rgba(31, 33, 47, 0.45);
}

.project-card__footer {
  display: grid;
  grid-template-columns: minmax(0, 246px) 1px auto;
  gap: 0 18px;
  align-items: center;
  padding-top: 18px;
  min-height: 126px;
  margin-top: auto;
}

.project-card__footer::before {
  content: none;
}

.project-card__desc {
  font-size: clamp(16px, 1.19vw, 18px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
}

.project-card__divider {
  width: 1px;
  height: 126px;
  background: rgba(31, 33, 47, 0.45);
  justify-self: center;
  align-self: center;
}

.project-card__link {
  font-size: clamp(16px, 1.19vw, 18px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  align-self: center;
}

.project-card__link span {
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.project-card__link:hover {
  opacity: 0.75;
}

/* ---------- Projects page ---------- */
.page-projects {
  background: var(--beige);
}

.projects-hero {
  position: relative;
  overflow: visible;
  min-height: clamp(524px, 41vw, 620px);
  color: var(--beige);
  background: radial-gradient(ellipse 90% 80% at 50% 10%, #3a3d4a 0%, #1f212f 50%, #1f212f 100%);
  padding-bottom: 0;
  z-index: 0;
}

.projects-hero.is-stuck{
  z-index: 100;
}

.is-stuck .projects-hero__lion{
  opacity: 0!important;
  transition: opacity 0.25s ease;
}

.projects-hero__glow {
  position: absolute;
  left: 50%;
  top: -40%;
  transform: translateX(-50%);
  /* background: radial-gradient(circle, rgba(120, 125, 140, 0.35) 0%, rgba(31, 33, 47, 0) 65%); */
  pointer-events: none;
}

.projects-hero__lion {
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(1100px, 85vw);
  height: auto;
  transform: translate(-50%, -45%);
  opacity: 0.75;
  /* Black PNG bg becomes transparent; lion lines remain */
  pointer-events: none;
  z-index: 1;
}

.projects-hero__lion.is-assembling {
  opacity: 0;
}

.projects-hero__lion-canvas {
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(1100px, 85vw);
  height: auto;
  transform: translate(-50%, -45%);
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

.projects-hero__lion.is-ready {
  opacity: 0.75;
}

.site-header--on-dark {
  border-bottom-color: rgba(232, 223, 210, 0.25);
}

.site-header__logo--mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 141px;
  min-height: 37px;
  padding: 4px 14px;
  background: var(--beige);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-header--on-dark .site-nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.projects-hero__content {
  position: relative;
  z-index: 1;
  padding: 148px 0 56px;
  text-align: center;
}

.projects-hero__title {
  margin: 0 auto 48px;
  max-width: 1295px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  color: var(--beige);
}

.projects-hero__title span {
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.projects-hero__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  font-size: clamp(18px, 1.8vw, 28px);
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.projects-hero__filters button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--beige);
  font: inherit;
  opacity: 0.3;
}

.projects-hero__filters button.is-active {
  opacity: 1;
}

.projects-hero__dot {
  opacity: 0.3;
  user-select: none;
}

.projects-listing {
  margin-top: 0;
  padding: 48px 0 48px;
  /* Lion bg image enters this section, then fades to beige behind the cards */
  background:
    linear-gradient(
      180deg,
      rgba(31, 33, 47, 0.15) 0%,
      rgba(31, 33, 47, 0.45) 10%,
      rgba(74, 73, 80, 0.7) 20%,
      rgba(122, 117, 108, 0.85) 32%,
      rgba(181, 174, 163, 0.95) 44%,
      var(--beige) 56%,
      var(--beige) 100%
    ),
    #1f212f;
}

.projects-listing::before {
  content: none;
}

.projects-listing > .container {
  position: relative;
  z-index: 1;
}

.projects-listing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 676px));
  gap: 36px;
  justify-content: space-between;
}

.project-card--wide {
  width: 100%;
  max-width: 676px;
}

.project-card--wide .project-card__inner {
  width: 100%;
  aspect-ratio: 676 / 725;
}

.project-card--wide .project-card__body {
  left: 15.8%;
}

.project-card--wide .project-card__footer {
  grid-template-columns: minmax(0, 1fr) 1px auto;
}

.project-card--wide .project-card__desc {
  max-width: 324px;
}

.project-card.is-hidden {
  display: none;
}

.projects-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 56px;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.projects-pagination a {
  color: inherit;
  text-decoration: none;
}

.projects-pagination a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-projects .consult {
  padding-top: 40px;
  padding-bottom: 0;
  background: var(--beige);
}

/* ---------- Project single page ---------- */
.page-project {
  background: var(--beige);
}

.project-hero {
  position: relative;
  min-height: 100vh;
  color: var(--beige);
  overflow: hidden;
}

.project-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.project-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.project-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 33, 47, 0.25) 0%,
    rgba(31, 33, 47, 0.05) 35%,
    rgba(31, 33, 47, 0.45) 62%,
    rgba(31, 33, 47, 0.92) 82%,
    #1f212f 100%
  );
  pointer-events: none;
}

.site-header--on-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px var(--gutter) 24px;
  border-bottom: 1px solid rgba(232, 223, 210, 0.35);
  background: transparent;
}

.site-header--on-photo.is-stuck {
  position: fixed;
  z-index: 100;
  background: rgba(31, 33, 47, 0.94);
  border-bottom-color: rgba(232, 223, 210, 0.2);
}

.site-header--on-photo .site-nav {
  color: var(--beige);
}

.site-header--on-photo .site-header__cta {
  color: var(--beige);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.site-header__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: rgba(232, 223, 210, 0.45);
}

.site-header__lang button {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.site-header__lang button.is-active {
  color: var(--beige);
}

.project-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0 72px;
}

.project-hero__eyebrow {
  margin: 0 0 18px;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beige);
}

.project-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 6.35vw, 96px);
  line-height: 0.95;
  color: var(--beige);
}

.project-kicker {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 33, 47, 0.55);
}

.project-overview {
  padding: 80px 0 40px;
  background: var(--beige);
  margin-top: 0;
}

.project-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.project-overview__title {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  max-width: 16ch;
}

.project-overview__copy p {
  margin: 0 0 18px;
  max-width: 540px;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: rgba(31, 33, 47, 0.9);
}

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

.project-stat {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 33, 47, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.project-stat__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(31, 33, 47, 0.5);
}

.project-stat__value {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.project-gallery {
  padding: 60px 0 40px;
  background: var(--beige);
}

.project-gallery .section-title {
  margin-bottom: 36px;
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 560px;
}

.project-gallery__main {
  grid-row: 1 / span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.project-gallery__side {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

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

.project-layouts {
  padding: 60px 0 40px;
  background: var(--beige);
}

.project-layouts__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.project-layouts__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-layouts__tabs button {
  border: 1px solid rgba(31, 33, 47, 0.25);
  background: transparent;
  color: var(--blue);
  border-radius: 999px;
  padding: 12px 22px;
  font: inherit;
  font-size: 16px;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.project-layouts__tabs button.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--beige);
}

.project-layouts__card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
}

.project-layouts__card[hidden] {
  display: none !important;
}

.project-layouts__plan {
  background: #f7f4ef;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.project-layouts__plan img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

.project-layouts__info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.project-layouts__type {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.02em;
}

.project-layouts__level {
  margin: 0 0 28px;
  font-size: 16px;
  color: rgba(31, 33, 47, 0.6);
}

.project-layouts__specs {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-layouts__specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 33, 47, 0.12);
  font-size: 16px;
}

.project-layouts__specs span {
  color: rgba(31, 33, 47, 0.6);
}

.project-layouts__download {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 24px;
  background: var(--copper);
  color: var(--beige);
  text-align: center;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.project-layouts__download:hover {
  opacity: 0.92;
}

.project-amenities {
  padding: 60px 0 40px;
  background: var(--beige);
}

.project-amenities .section-title {
  margin-bottom: 36px;
}

.project-amenities--centered {
  text-align: center;
}

.project-amenities--centered .project-kicker,
.project-amenities--centered .section-title {
  margin-left: auto;
  margin-right: auto;
}

.project-amenities--centered .section-title {
  max-width: 18ch;
}

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

.amenity-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 33, 47, 0.08);
  border-radius: 16px;
  padding: 28px 24px 32px;
  min-height: 220px;
}

.amenity-card__icon-img {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  object-fit: contain;
  display: block;
}

.amenity-card__title {
  margin: 0 0 14px;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.amenity-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(31, 33, 47, 0.75);
}

.amenity-card__text p {
  margin: 0;
}

.project-location {
  padding: 60px 0 80px;
  background: var(--beige);
}

.project-location__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.project-location__copy .section-title {
  margin-bottom: 24px;
}

.project-location__copy > p {
  margin: 0 0 32px;
  max-width: 420px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.project-location__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.project-location__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.02em;
}

.project-location__map {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(31, 33, 47, 0.15);
  min-height: 420px;
  background: #d9d2c6;
}

.project-location__map .leus-map__canvas {
  min-height: 420px;
}

.project-location__markers-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-location__markers-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31, 33, 47, 0.15);
  cursor: default;
}

.project-location__markers-list li.is-active strong {
  color: var(--copper);
}

.project-location__markers-list strong {
  font-size: clamp(16px, 1.3vw, 18px);
  letter-spacing: -0.02em;
}

.project-location__markers-list span {
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: -0.01em;
  opacity: 0.75;
}

.leus-map {
  position: relative;
}

.leus-map__canvas {
  width: 100%;
  height: 100%;
}

.leus-map__canvas .leaflet-container {
  width: 100%;
  height: 100%;
  background: #d8d0c4;
  font: inherit;
}

.leus-map__canvas .leaflet-control-attribution {
  display: none;
}

.page-project .consult:not(.consult--split) {
  padding-top: 40px;
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--beige) 18%, transparent 18%);
}

/* ---------- About page ---------- */
.page-about {
  background: var(--beige);
}

.about-hero {
  position: relative;
  min-height: clamp(520px, 42vw, 640px);
  color: var(--beige);
  overflow: hidden;
  background: radial-gradient(ellipse 95% 85% at 50% 18%, #79a8d4 0%, #5e93c4 42%, #4a7fb0 100%);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero__lion {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(946px, 78vw);
  height: auto;
  transform: translate(-88%, -50%);
  opacity: 0.42;
  mix-blend-mode: soft-light;
}

.about-hero__lion.is-assembling {
  opacity: 0;
}

.about-hero__lion.is-ready {
  opacity: 0.42;
}

.about-hero__lion-canvas {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(946px, 78vw);
  height: auto;
  transform: translate(-88%, -50%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  opacity: 0.42;
}

.about-hero .site-header--on-photo {
  position: relative;
  z-index: 3;
}

.about-hero .site-header--on-photo.is-stuck {
  position: fixed;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 10vw, 112px) 0 clamp(64px, 8vw, 96px);
  text-align: center;
}

.about-hero__title {
  margin: 0 auto 28px;
  max-width: 900px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.05;
  color: var(--beige);
}

.about-hero__lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(232, 223, 210, 0.92);
}

.about-hero__lead p {
  margin: 0;
}

.about-stats {
  padding: clamp(48px, 5vw, 72px) 0 clamp(56px, 6vw, 80px);
}

.about-history {
  padding: 0 0 clamp(72px, 8vw, 100px);
  background: var(--beige);
}

.about-history__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.about-history__kicker {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 33, 47, 0.55);
}

.about-history__copy .section-title {
  margin-bottom: 24px;
  max-width: 14ch;
}

.about-history__copy p {
  margin: 0 0 18px;
  max-width: 560px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.about-history__copy p:last-child {
  margin-bottom: 0;
}

.about-history__media {
  overflow: hidden;
  min-height: clamp(280px, 28vw, 420px);
}

.about-history__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 28vw, 420px);
  object-fit: cover;
  display: block;
}

.about-history__frame {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(280px, 28vw, 420px);
  overflow: hidden;
  background: #1f212f;
}

.about-history__frame--player {
  cursor: default;
}

.about-history__frame img,
.about-history__poster,
.about-history__media,
.about-history__media video,
.about-history__media iframe {
  width: 100%;
  min-height: clamp(280px, 28vw, 420px);
  object-fit: cover;
  display: block;
}

.about-history__frame--player .about-history__poster,
.about-history__frame--player .about-history__media,
.about-history__frame--player .about-history__media video,
.about-history__frame--player .about-history__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.about-history__media {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.about-history__frame--player.is-playing .about-history__media {
  opacity: 1;
  pointer-events: auto;
}

.about-history__frame--player.is-playing .about-history__poster {
  opacity: 0;
  pointer-events: none;
}

.about-philosophy {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #2a2420;
  background-image: url("../images/about-page/philosophy-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--beige);
}

@media (min-width: 1101px) {
  .about-philosophy {
    padding: 170px 0;
  }
}

.about-philosophy__title {
  margin: 0 0 clamp(40px, 5vw, 64px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.05;
  text-align: center;
  color: var(--beige);
}

.about-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.about-philosophy__item {
  padding: 8px clamp(24px, 3.2vw, 48px);
  border-right: 1px solid rgba(232, 223, 210, 0.35);
}

.about-philosophy__item:first-child {
  padding-left: 0;
}

.about-philosophy__item:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-philosophy__item h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--beige);
}

.about-philosophy__item p {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(232, 223, 210, 0.88);
}

.about-founder {
  position: relative;
  padding: clamp(72px, 8vw, 100px) 0;
  overflow: hidden;
}

.about-founder__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-founder__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(10px);
}

.about-founder__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 33, 47, 0.35);
}

.about-founder .container {
  position: relative;
  z-index: 1;
}

.about-founder__card {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  justify-content: space-between;
  align-items: stretch;
  background: var(--brown);
  color: var(--beige);
  padding: clamp(48px, 5.56vw, 78px);
}

.about-founder__social li a{
  font-weight: 400;
  font-size: clamp(18px, 1.99vw, 28px);
  line-height: 90%;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--beige);
}

.about-founder__copy{
  flex: 1;
  width: 100%;
  max-width: 475px;
}

.about-founder__media{
  flex: 1;
  width: 100%;
  max-width: 690px;
}

.about-founder__name {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-founder__loc {
  margin: 0 0 18px;
  font-size: 16px;
  letter-spacing: -0.01em;
  opacity: 0.75;
}

.about-founder__social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.about-founder__social a {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 223, 210, 0.75);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-founder__copy p {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  opacity: 0.92;
}

.about-founder__quote {
  margin: clamp(24px, 4vw, 40px) 0 0;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--beige);
}

.about-founder__quote p {
  margin: 0;
  max-width: none;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
  opacity: 1;
}

.about-founder__media {
  overflow: hidden;
  min-height: 100%;
}

.about-founder__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 34vw, 480px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-cinema {
  padding: clamp(56px, 6vw, 80px) 0 clamp(40px, 5vw, 56px);
  background: var(--beige);
}

.about-cinema .section-title {
  margin-bottom: 28px;
}

.about-cinema__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.about-cinema__frame--player {
  cursor: default;
  aspect-ratio: 16 / 9;
  background: #1f212f;
}

.about-cinema__frame img,
.about-cinema__poster,
.about-cinema__media,
.about-cinema__media video,
.about-cinema__media iframe {
  width: 100%;
  height: clamp(280px, 42vw, 620px);
  object-fit: cover;
  display: block;
}

.about-cinema__frame--player .about-cinema__poster,
.about-cinema__frame--player .about-cinema__media,
.about-cinema__frame--player .about-cinema__media video,
.about-cinema__frame--player .about-cinema__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-cinema__media {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.about-cinema__frame--player.is-playing .about-cinema__media {
  opacity: 1;
  pointer-events: auto;
}

.about-cinema__frame--player.is-playing .about-cinema__poster,
.about-cinema__frame--player.is-playing .about-cinema__play {
  opacity: 0;
  pointer-events: none;
}

.about-cinema__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 33, 47, 0.18);
  transition: background 0.25s ease, opacity 0.3s ease;
  z-index: 2;
}

.about-cinema__play img {
  width: min(152px, 18vw);
  height: auto;
}

.about-cinema__frame:hover .about-cinema__play {
  background: rgba(31, 33, 47, 0.28);
}

.about-partners {
  padding: clamp(40px, 5vw, 64px) 0 clamp(56px, 6vw, 80px);
  background: var(--beige);
}

.about-partners__title {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.about-partners__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.about-partners__logo {
  grid-column: span 2;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 33, 47, 0.06);
  color: rgba(31, 33, 47, 0.45);
  font-size: 14px;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 16px;
}

.about-partners__logo:nth-child(4) {
  grid-column: 2 / span 2;
}

.about-partners__logo:nth-child(5) {
  grid-column: 4 / span 2;
}

.page-about .consult {
  padding-top: 0;
  padding-bottom: 100px;
}

.project-inquiry {
  padding: 0 0 48px;
  background: var(--beige);
}

.project-inquiry .consult__grid {
  background: var(--blue);
  color: var(--beige);
  padding: clamp(40px, 5vw, 64px);
}

.project-inquiry .consult__title,
.project-inquiry .consult__copy p {
  color: var(--beige);
}

.project-inquiry .consult__field input {
  color: var(--beige);
  border-bottom-color: rgba(232, 223, 210, 0.45);
}

.project-inquiry .consult__field input::placeholder {
  color: rgba(232, 223, 210, 0.55);
}

.project-inquiry .consult__submit {
  background: var(--copper);
  color: var(--beige);
}

.project-cinema {
  padding: 48px 0 24px;
  background: var(--beige);
}

.project-cinema .section-title {
  margin-bottom: 28px;
}

.project-cinema__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.project-cinema__frame--player {
  cursor: default;
  aspect-ratio: 16 / 9;
  background: #1f212f;
}

.project-cinema__frame img,
.project-cinema__poster,
.project-cinema__media,
.project-cinema__media video,
.project-cinema__media iframe {
  width: 100%;
  height: clamp(280px, 42vw, 620px);
  object-fit: cover;
  display: block;
}

.project-cinema__frame--player .project-cinema__poster,
.project-cinema__frame--player .project-cinema__media,
.project-cinema__frame--player .project-cinema__media video,
.project-cinema__frame--player .project-cinema__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-cinema__media {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-cinema__frame--player.is-playing .project-cinema__media {
  opacity: 1;
  pointer-events: auto;
}

.project-cinema__frame--player.is-playing .project-cinema__poster,
.project-cinema__frame--player.is-playing .project-cinema__play {
  opacity: 0;
  pointer-events: none;
}

.project-cinema__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 33, 47, 0.18);
  transition: background 0.25s ease, opacity 0.3s ease;
  z-index: 2;
}

.project-cinema__play img {
  width: min(152px, 18vw);
  height: auto;
}

.project-cinema__frame:hover .project-cinema__play {
  background: rgba(31, 33, 47, 0.28);
}

.project-cinema__frame[disabled] {
  cursor: default;
}

.project-cinema__frame[disabled] .project-cinema__play {
  opacity: 0.55;
}

.cinema-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(31, 33, 47, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cinema-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cinema-lightbox__dialog {
  position: relative;
  width: min(100%, 1100px);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.cinema-lightbox__media,
.cinema-lightbox__media iframe,
.cinema-lightbox__media video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

.cinema-lightbox__media video {
  object-fit: contain;
}

.cinema-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--beige);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.project-features {
  padding: 60px 0;
  background: var(--beige);
}

.project-features .section-title {
  margin-bottom: 36px;
}

.form-legal p{
  font-size: 12px!important;
}

.project-features__list {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
}

.project-features__row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.project-features__row--reverse .project-features__media {
  order: 2;
}

.project-features__row--reverse .project-features__copy {
  order: 1;
}

.project-features__media {
  overflow: hidden;
  min-height: clamp(240px, 28vw, 420px);
}

.project-features__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(240px, 28vw, 420px);
  object-fit: cover;
  display: block;
}

.project-features__copy ul{
  padding: 0;
  margin: 10px 0 10px 20px;
  list-style: disc;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.project-features__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.project-features__copy p {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.consult.consult--split {
  position: relative;
  padding: 0;
  background: var(--blue);
  color: var(--beige);
  overflow: hidden;
  min-height: clamp(480px, 44vw, 680px);
}

.consult--split .consult__title,
.consult--split p {
  color: var(--beige);
}

.consult__split-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.consult__split-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.consult__split {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 44vw, 680px);
}

.consult__split-form {
  padding: clamp(48px, 5vw, 80px) var(--gutter);
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.consult__split-form-inner {
  width: 100%;
  max-width: 520px;
}

.consult--split .consult__title {
  max-width: none;
  margin-bottom: 20px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.consult--split .consult__split-form p {
  margin: 0;
  max-width: 480px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  opacity: 0.92;
}

.consult__split-form .consult__form {
  margin-top: 32px;
  max-width: 100%;
}

.consult--split .consult__field input {
  color: var(--beige);
  border-bottom-color: rgba(232, 223, 210, 0.65);
}

.consult--split .consult__field input::placeholder {
  color: rgba(232, 223, 210, 0.75);
}

.consult--split .consult__submit {
  width: 100%;
  margin-top: 16px;
  background: var(--copper);
  color: var(--beige);
}

@media (max-width: 1100px) {
  .about-history__grid,
  .about-founder__card,
  .about-philosophy__grid {
    grid-template-columns: 1fr;
  }

  .about-philosophy__item {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(232, 223, 210, 0.28);
  }

  .about-philosophy__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .about-founder__media {
    order: -1;
  }

  .about-partners__grid {
    grid-template-columns: 1fr;
  }

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

  .project-overview__grid,
  .project-gallery__grid,
  .project-layouts__card,
  .project-amenities__grid,
  .project-location__grid {
    grid-template-columns: 1fr;
  }

  .project-gallery__grid {
    grid-template-rows: none;
    min-height: 0;
  }

  .project-gallery__main {
    grid-row: auto;
    min-height: 320px;
  }

  .project-gallery__side {
    min-height: 240px;
  }

  .project-amenities__grid {
    grid-template-columns: 1fr;
  }

  .project-features__row,
  .project-features__row--reverse {
    grid-template-columns: 1fr;
  }

  .project-features__row--reverse .project-features__media,
  .project-features__row--reverse .project-features__copy {
    order: unset;
  }

  .consult.consult--split {
    min-height: 0;
  }

  .consult__split {
    min-height: clamp(520px, 70vw, 640px);
  }

  .consult__split-form {
    width: 100%;
    max-width: none;
    padding: clamp(40px, 6vw, 56px) var(--gutter);
  }

  .consult__split-form-inner {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .site-header__actions {
    display: none;
  }

  .site-header.nav-open .site-header__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: calc(100% + 160px);
    right: var(--gutter);
    z-index: 3;
    gap: 16px;
  }

  .project-hero {
    min-height: 700px;
  }

  .project-hero__content {
    padding-bottom: 56px;
  }

  .site-header--on-photo {
    padding-top: 28px;
  }

}

@media (min-width: 1700px) {
  .projects__grid {
    grid-template-columns: repeat(3, 513px);
  }

  .project-card:not(.project-card--wide),
  .project-card:not(.project-card--wide) .project-card__inner {
    width: 513px;
  }
}

@media (max-width: 1699px) and (min-width: 1101px) {
  /* .projects .container,
  .projects__grid {
    width: 100%;
    max-width: min(100% - (var(--gutter) * 2), 1595px);
  } */

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

  .project-card:not(.project-card--wide),
  .project-card:not(.project-card--wide) .project-card__inner {
    width: 100%;
  }

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

/* ---------- Locations ---------- */
.locations {
  padding: 100px 0 120px;
  background: var(--beige);
}

.locations__title {
  margin-bottom: 48px;
}

.locations__grid {
  display: grid;
  grid-template-columns: minmax(0, 960px) minmax(280px, 1fr);
  gap: 52px;
  align-items: stretch;
}

.locations__map {
  position: relative;
  border: 1px solid var(--blue);
  background: var(--beige);
  aspect-ratio: 960 / 495;
  overflow: hidden;
}

.locations__map-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.locations__marker-wrap {
  background: transparent !important;
  border: 0 !important;
}

.locations__marker {
  position: relative;
  display: block;
  width: 28px;
  height: 36px;
}

.locations__marker-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border: 2px solid var(--beige);
  border-radius: 50% 50% 50% 0;
  background: var(--copper);
  box-shadow: 0 2px 10px rgba(31, 33, 47, 0.4);
  transform: rotate(-45deg);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    width 0.25s ease,
    height 0.25s ease,
    margin-left 0.25s ease;
}

.locations__marker-pulse {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: rgba(129, 75, 65, 0.35);
  transform: scale(0.6);
  opacity: 0;
}

.locations__marker.is-active .locations__marker-dot {
  width: 22px;
  height: 22px;
  margin-left: -11px;
  background: var(--blue);
  transform: rotate(-45deg) scale(1.05);
}

.locations__marker.is-active .locations__marker-pulse {
  animation: locations-marker-pulse 1.4s ease-out infinite;
}

@keyframes locations-marker-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(2.8);
  }
}

.locations__pin {
  position: absolute;
  right: 7.5%;
  bottom: 9%;
  width: min(420px, 45%);
  height: min(300px, 64%);
  z-index: 2;
  pointer-events: none;
}

.locations__pin-bar {
  position: absolute;
  left: 0;
  right: 12%;
  bottom: 0;
  height: 44%;
  background: var(--brown);
  z-index: 0;
}

.locations__pin-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.locations__pin-media img {
  width: 140%;
  height: 140%;
  max-width: none;
  position: absolute;
  right: -44%;
  bottom: -5%;
  object-fit: cover;
  object-position: right bottom;
}

.locations__pin-text {
  position: absolute;
  left: 6%;
  bottom: 8%;
  z-index: 2;
  color: var(--beige);
  width: 48%;
}

.locations__pin-title {
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.locations__pin-coords {
  font-size: clamp(11px, 0.95vw, 13.65px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.locations__list-wrap {
  display: flex;
  align-items: stretch;
}

.locations__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.locations__list li {
  border-bottom: 1px solid rgba(31, 33, 47, 0.35);
}

.locations__list li.is-active .locations__link,
.locations__list .locations__link:hover {
  opacity: 0.75;
}

.locations__list .locations__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
}

.locations__list li:first-child {
  border-top: 1px solid rgba(31, 33, 47, 0.35);
}

.locations__list li:first-child .locations__link {
  padding-top: 18px;
}

.locations__list li:last-child {
  border-bottom: 0;
}

.locations__list strong {
  display: block;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
  text-align: left;
}

.locations__list span {
  display: block;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-align: left;
}

.locations__list img {
  width: 24px;
  height: 21px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ---------- Values ---------- */
.values {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  min-height: 1014px;
  display: flex;
  align-items: center;
}

.values__bg {
  position: absolute;
  inset: 0;
}

.values__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values .container {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--gutter) * 2), 1402px);
}

.values__panel {
  display: grid;
  grid-template-columns: minmax(240px, 362px) minmax(0, 921px);
  gap: clamp(32px, 5vw, 92px);
  align-items: end;
  background: var(--beige);
  padding: 53px clamp(24px, 3.5vw, 52px) 53px clamp(24px, 3.5vw, 51px);
  /* min-height: 800px; */
  box-sizing: border-box;
}

.values__intro {
  margin: 0;
  max-width: 362px;
  color: var(--blue);
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  padding-bottom: 12px;
}

.values__intro p {
  margin: 0;
}

.values__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.value-item {
  position: relative;
  width: 100%;
  aspect-ratio: 921 / 226;
  overflow: hidden;
  color: var(--beige);
}

.value-item__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-item:nth-child(2) .value-item__media {
  object-position: center 42%;
}

.value-item:nth-child(3) .value-item__media {
  object-position: center 55%;
}

.value-item__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 38px 32px;
}

.value-item__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: normal;
  color: var(--beige);
}

.value-item__text {
  margin: 0;
  max-width: 409px;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--beige);
}

.value-item__text p {
  margin: 0;
}

/* ---------- How it works ---------- */
.how {
  padding: 100px 0 80px;
  background: var(--beige);
}

.how .section-title {
  margin-bottom: 56px;
}

.how__list li {
  padding: 36px 0;
  border-top: 1px solid rgba(31, 33, 47, 0.35);
}

.how__list li:last-child {
  border-bottom: 1px solid rgba(31, 33, 47, 0.35);
}

.how__list h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 675;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.how__list p {
  font-size: clamp(18px, 1.6vw, 32px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  opacity: 0.9;
}

/* ---------- Consultation ---------- */
.consult {
  padding: 40px 0 100px;
  background: var(--beige);
}

.consult__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--blue);
  color: var(--beige);
  padding: 56px clamp(24px, 4vw, 64px);
}

.consult__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 420px;
}

.consult__copy p {
  max-width: 460px;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  opacity: 0.92;
}

.hero__text a,
.values__intro a,
.value-item__text a,
.about-hero__lead a,
.about-history__copy a,
.about-philosophy__item a,
.about-founder__copy a,
.how__list a,
.consult__copy a,
.consult--split a,
.project-overview__copy a,
.project-location__copy a,
.project-features__copy a,
.amenity-card__text a,
.news-article__intro a,
.news-article__block-copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consult__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.consult__field input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(232, 223, 210, 0.55);
  color: var(--beige);
  padding: 12px 0;
  outline: none;
}

.consult__field input::placeholder {
  color: rgba(232, 223, 210, 0.75);
}

.consult__submit {
  margin-top: 12px;
  border: 0;
  background: var(--copper);
  color: var(--beige);
  min-height: 64px;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}

.consult__submit:hover {
  opacity: 0.9;
}

.consult__form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consult .wpcf7 {
  margin: 0;
}

.consult .wpcf7 .wpcf7-form,
.consult .wpcf7 form.consult__form,
.consult .wpcf7-form.consult__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  margin: 0;
}

.consult .wpcf7 .wpcf7-form > p {
  display: contents;
  margin: 0;
}

.consult .wpcf7 .hidden-fields-container {
  display: none;
}

.consult .consult__field .wpcf7-form-control-wrap {
  display: block;
}

.consult .consult__field .wpcf7-form-control {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(232, 223, 210, 0.55);
  border-radius: 0;
  color: var(--beige);
  padding: 12px 0;
  outline: none;
  box-shadow: none;
}

.consult .consult__field .wpcf7-form-control::placeholder {
  color: rgba(232, 223, 210, 0.75);
}

.consult .wpcf7 .wpcf7-submit.consult__submit {
  width: 100%;
  margin-top: 12px;
}

.consult .wpcf7 .wpcf7-spinner {
  display: none;
}

.consult .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #f2c8b8;
  font-size: 14px;
  line-height: 1.2;
}

.consult .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(232, 223, 210, 0.92);
  font-size: 16px;
  line-height: 1.3;
}

.consult.consult--split {
  padding: 0;
  background: var(--blue);
}

/* ---------- Newsroom ---------- */
.newsroom {
  padding: 40px 0 48px;
  background: var(--beige);
}

.newsroom__head {
  margin-bottom: 28px;
}

.newsroom__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(31, 33, 47, 0.35);
}

.newsroom__filters button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.02em;
  color: var(--blue);
  opacity: 0.7;
}

.newsroom__filters button.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.newsroom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(31, 33, 47, 0.25);
}

.news-card {
  padding: 28px 24px 32px;
  border-right: 1px solid rgba(31, 33, 47, 0.25);
  border-bottom: 1px solid rgba(31, 33, 47, 0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 430px;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  color: inherit;
  text-decoration: none;
}

.news-card:hover {
  background: var(--copper);
  color: var(--beige);
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.news-card.is-hidden {
  display: none;
}

/* .news-card--featured {
  background: var(--copper);
  color: var(--beige);
} */

.news-card__img {
  width: 100%;
  height: 183px;
  object-fit: cover;
}

.news-card__title {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  flex: 1;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: clamp(16px, 1.4vw, 24px);
  letter-spacing: -0.02em;
}

.news-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.news-card__meta img,
.news-card__arrow {
  margin-left: auto;
}

.news-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 21px;
  flex-shrink: 0;
  background: var(--blue);
}

.newsroom__more {
  margin-top: 36px;
  text-align: center;
}

.newsroom__more a {
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- News page ---------- */
.page-news {
  background: var(--beige);
  color: var(--blue);
}

.site-header--on-light {
  color: var(--blue);
  border-bottom-color: rgba(31, 33, 47, 0.2);
}

.site-header__logo--word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--blue);
}

.site-header--on-light .site-nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header--on-light .site-header__burger span {
  background: var(--blue);
}

.news-featured {
  padding: 28px 0 8px;
}

.news-featured__banner {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.2fr);
  align-items: stretch;
  min-height: clamp(280px, 30vw, 436px);
  color: var(--beige);
  overflow: hidden;
}

.news-featured__banner + .news-featured__banner {
  margin-top: 36px;
}

.news-featured__banner--navy {
  background: var(--blue);
}

.news-featured__banner--copper {
  background: var(--copper);
}

.news-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 3vw, 48px);
}

.news-featured__title {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 50px);
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.news-featured__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: clamp(16px, 1.5vw, 24px);
  letter-spacing: -0.02em;
}

.news-featured__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
}

.news-featured__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 21px;
  margin-left: 4px;
  background: var(--beige);
}

.news-featured__media {
  min-height: 100%;
}

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

.news-all {
  padding: 48px 0 64px;
  background: var(--beige);
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.02em;
}

.news-pagination a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-pagination a:hover {
  opacity: 0.75;
}

/* ---------- News article ---------- */
.page-news-article {
  background: var(--beige);
  color: var(--blue);
}

.news-article {
  padding: 28px 0 24px;
}

.news-article--content {
  padding-top: 0;
}

.news-article__back {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.02em;
}

.news-article__back a:hover {
  opacity: 0.75;
}

.news-article__title {
  margin: 0 0 36px;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--blue);
}

.news-article__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(31, 33, 47, 0.35);
  margin-bottom: 36px;
}

.news-article__meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px 12px;
  text-align: center;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-right: 1px solid rgba(31, 33, 47, 0.35);
}

.news-article__meta-item:last-child {
  border-right: 0;
}

.news-article__meta-item a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-article__gallery {
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(160px, 0.85fr);
  gap: 16px;
  margin-bottom: 48px;
}

.news-article__gallery-main {
  min-height: clamp(280px, 36vw, 520px);
}

.news-article__gallery-main img,
.news-article__gallery-side img,
.news-article__block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-article__gallery-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  min-height: clamp(280px, 36vw, 520px);
}

.news-article__intro {
  max-width: 920px;
  margin-bottom: 64px;
}

.news-article__intro p,
.news-article__block-copy p {
  margin: 0 0 1.15em;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.news-article__intro p:last-child,
.news-article__block-copy p:last-child {
  margin-bottom: 0;
}

.news-article__block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  margin-bottom: 24px;
}

.news-article__subtitle {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.news-article__block-media {
  min-height: clamp(240px, 28vw, 420px);
}

.news-latest {
  padding: 48px 0 64px;
  background: var(--beige);
}

.news-latest .section-title {
  margin-bottom: 28px;
}

.news-latest__grid {
  margin-bottom: 8px;
}

.news-latest .news-card {
  color: inherit;
  text-decoration: none;
}

.news-latest .news-card:hover {
  opacity: 0.92;
}

/* ---------- Legal page ---------- */
.page-legal {
  background: var(--beige);
  color: var(--blue);
}

.legal-page {
  padding: 28px 0 clamp(88px, 10vw, 120px);
}

.legal-page__container {
  width: min(100% - (var(--gutter) * 2), 1320px);
}

.legal-page__back {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.02em;
}

.legal-page__back a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page__back a:hover {
  opacity: 0.75;
}

.legal-page__title {
  margin: 0 0 clamp(48px, 6vw, 72px);
  max-width: none;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.2vw, 88px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--blue);
}

.legal-page__title-date {
  font-size: 0.34em;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
}

.legal-page__rows {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 80px);
  margin-bottom: clamp(48px, 6vw, 64px);
}

.legal-page__row {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.legal-page__heading {
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.legal-page__row--contact .legal-page__heading {
  margin-bottom: 0;
}

.legal-page__main p,
.legal-page__aside p {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.legal-page__main p:last-child,
.legal-page__aside p:last-child {
  margin-bottom: 0;
}

.legal-page__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-page__list li {
  position: relative;
  padding-left: 1.1em;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.legal-page__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
}

.legal-page__list--labeled li {
  padding-left: 0;
}

.legal-page__list--labeled li::before {
  content: none;
}

.legal-page__list li strong {
  font-weight: 700;
}

.legal-page__contact-lead {
  margin: 0 0 clamp(28px, 3.5vw, 40px);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.legal-page__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: clamp(48px, 8vw, 120px);
  justify-content: start;
}

.legal-page__contact-label {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.legal-page__contact-item p {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.legal-page__contact-item a {
  color: inherit;
  text-decoration: none;
}

.legal-page__contact-item a:hover {
  opacity: 0.75;
}

.legal-page__footer-note {
  margin: 0;
  padding-top: clamp(32px, 4vw, 48px);
  max-width: 820px;
  border-top: 1px solid rgba(31, 33, 47, 0.2);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  opacity: 0.85;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  /* Seamless with newsroom beige → navy (Figma ~823px gradient) */
  background: linear-gradient(
    180deg,
    var(--beige) 0%,
    #d5cdc0 10%,
    #b5aea3 22%,
    #7f7a74 38%,
    #4a4950 55%,
    #2a2c36 72%,
    var(--blue) 88%,
    #1a1c26 100%
  );
  color: var(--beige);
  padding: 200px 0 320px;
  min-height: 820px;
}

.site-footer--has-bg {
  background-image: linear-gradient(
    180deg,
    rgba(232, 223, 210, 0.92) 0%,
    rgba(213, 205, 192, 0.9) 10%,
    rgba(181, 174, 163, 0.88) 22%,
    rgba(127, 122, 116, 0.86) 38%,
    rgba(74, 73, 80, 0.88) 55%,
    rgba(42, 44, 54, 0.9) 72%,
    rgba(26, 28, 38, 0.94) 88%,
    rgba(26, 28, 38, 0.96) 100%
  ), var(--footer-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(520px, 720px);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.footer__logo-text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 2.8vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--beige);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}

.footer__heading {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: rgba(232, 223, 210, 0.55);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(16px, 1.35vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--beige);
}

.footer__list a {
  color: inherit;
}

.footer__list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__watermark {
  position: absolute;
  left: 50%;
  bottom:18px;
  transform: translateX(-50%);
  width: min(1407px, 96vw);
  color: #12141c;
  pointer-events: none;
  z-index: 0;
  line-height: 0;
}

.footer__watermark svg,
.footer__watermark img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .locations__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .projects-listing__grid {
    grid-template-columns: repeat(2, minmax(0, 676px));
    justify-items: center;
  }

  .project-card--wide {
    max-width: 676px;
  }

  .locations__list {
    justify-content: flex-start;
    gap: 0;
  }

  .locations__list li:last-child {
    border-bottom: 1px solid rgba(31, 33, 47, 0.35);
  }

  .projects {
    padding-top: 180px;
    min-height: 0;
  }

  /* .projects .container,
  .projects__grid {
    width: 100%;
    max-width: 100%;
  } */

  .projects__grid {
    grid-template-columns: repeat(3, 31%);
    justify-items: center;
  }

  .project-card__inner {
    aspect-ratio: 513 / 850;
}

  .project-card,
  .project-card__inner {
    width: min(513px, 100%);
  }

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

  .stats__grid {
    gap: 40px;
  }

  .values {
    min-height: 0;
    padding: 80px 0;
  }

  .values__panel {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    gap: 36px;
    padding: 40px 28px;
  }

  .values__intro {
    max-width: none;
    padding-bottom: 0;
  }

  .value-item {
    min-height: 180px;
  }

  .newsroom__grid {
    border-left: 0;
  }

  .news-card {
    border-right: 0;
    border-top: 1px solid rgba(31, 33, 47, 0.25);
  }

  .news-featured__banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-featured__media {
    min-height: 220px;
  }

  .news-featured__banner + .news-featured__banner {
    margin-top: 24px;
  }

  .news-article__meta {
    grid-template-columns: 1fr 1fr;
  }

  .news-article__meta-item:nth-child(2n) {
    border-right: 0;
  }

  .news-article__meta-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(31, 33, 47, 0.35);
  }

  .news-article__gallery,
  .news-article__block {
    grid-template-columns: 1fr;
  }

  .news-article__gallery-side {
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
    min-height: 0;
  }

  .news-article__gallery-side img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .news-article__gallery-main {
    min-height: 0;
  }

  .news-article__gallery-main img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .news-article__block-media {
    min-height: 0;
  }

  .news-article__block-media img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .legal-page__row,
  .legal-page__contact-grid {
    grid-template-columns: 1fr;
  }

  .legal-page__contact-grid {
    gap: 28px;
  }
}

@media (max-width: 860px) {
  :root {
    --gutter: 20px;
  }

  .site-nav,
  .site-header__cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(31, 33, 47, 0.96);
    padding: 24px var(--gutter);
    gap: 18px;
  }

  .projects-hero {
    min-height: 520px;
    padding-bottom: 0;
  }

  .projects-hero__content {
    padding-top: 80px;
  }

  .projects-listing {
    margin-top: 0;
    padding-top: 32px;
    background:
      linear-gradient(
        180deg,
        rgba(31, 33, 47, 0.2) 0%,
        rgba(63, 62, 68, 0.65) 12%,
        rgba(138, 132, 122, 0.85) 26%,
        rgba(207, 198, 184, 0.95) 40%,
        var(--beige) 52%,
        var(--beige) 100%
      ),
      url("../images/projects-lion-bg.png") center -80px / min(900px, 110vw) auto no-repeat,
      #1f212f;
  }

  .site-header.nav-open .site-header__cta {
    display: block;
    position: absolute;
    top: calc(100% + 180px);
    right: var(--gutter);
    z-index: 3;
  }

  .site-header__burger {
    display: block;
  }

  .site-header__logo-img,
  .site-header__logo-text {
    display: none;
  }

  .site-header__logo-mobile {
    display: block !important;
  }

  .site-header__logo-mobile[hidden] {
    display: block !important;
  }

  .site-header__logo--mark {
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: transparent;
  }

  .site-header--on-light .site-header__logo-mobile {
    color: var(--blue);
  }

  .hero {
    min-height: 720px;
  }

  .hero__title {
    margin-bottom: 80px;
  }

  .hero__content {
    padding-top: 80px;
  }

  .hero__text {
    max-width: 373px;}

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

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

  .project-card__inner {
    aspect-ratio: 513 / 930;
}

.value-item {
  aspect-ratio: auto;
}

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .site-footer {
    padding: 140px 0 220px;
    min-height: 0;
  }

  .footer__watermark {
    bottom: 12px;
    width: min(1407px, 100vw);
  }
}

@media (max-width: 640px) {
  .stats__grid,
  .projects__grid {
    grid-template-columns: 1fr;
  }

  .projects {
    padding-top: 120px;
  }

  .project-card__body {
    left: 10%;
    height: 57%;
    padding: 24px 16px 20px;
  }

  .project-card__name {
    font-size: 26px;
  }

  .project-card__meta,
  .project-card__loc {
    font-size: 20px;
  }

  .project-card__footer {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }

  .project-card__divider {
    display: none;
  }

  .project-card__link {
    justify-self: start;
  }

  .value-item__content {
    padding: 20px 22px 22px;
  }

  .consult__grid {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
  }

  .newsroom__grid {
    grid-template-columns: repeat(1, 1fr);
}

  .site-header__logo-mobile {
    font-size: 24px;
  }

  .locations__pin-bar{
    height: 72%;
  }

  .locations__pin-title{
    font-size: 14px;

  }

  .locations__pin-coords{
    max-width: 100px;
    white-space: wrap;
  }

  .project-card__inner {
    aspect-ratio: 436 / 930!important;
  }

  .project-card__footer{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .project-card__link {
    justify-self: start;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  .about-philosophy__item {
    padding: 20px 0 28px;
  }

  .about-philosophy__item:nth-child() {
    padding-top: 0;
  }

  .about-founder__card{
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .consult__split-bg img {
    object-position: left center;
  }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal--fade {
  transform: none;
}

.reveal--fade.is-visible {
  transform: none;
}

.reveal--left {
  transform: translate3d(-32px, 0, 0);
}

.reveal--left.is-visible {
  transform: translate3d(0, 0, 0);
}

.reveal--right {
  transform: translate3d(32px, 0, 0);
}

.reveal--right.is-visible {
  transform: translate3d(0, 0, 0);
}

.reveal--scale {
  transform: translate3d(0, 18px, 0) scale(0.98);
}

.reveal--scale.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--fade,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
