@font-face {
  font-family: "SF Pro";
  src: url("public/fonts/SF-Pro.ttf") format("truetype");
  font-weight: 100 800;
  font-display: swap;
}

:root {
  --bone: #f4f0e8;
  --ivory: #fbf8f1;
  --ink: #10100f;
  --graphite: #2f2e2b;
  --mist: #ded8ce;
  --warm: #b8afa3;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bone);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bone);
  color: var(--ink);
  font-family: "SF Pro", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.35;
  cursor: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.14;
  background-image: radial-gradient(rgba(16, 16, 15, 0.18) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

a,
button,
input,
textarea {
  color: inherit;
  font: inherit;
  cursor: none;
}

a {
  text-decoration: none;
}

p {
  line-height: 1.45;
}

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

.container {
  width: min(calc(100% - 32px), 1440px);
  margin-inline: auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--ink);
  color: var(--ivory);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader.is-hidden {
  transform: translateY(-100%);
}

.preloader p,
.eyebrow,
.text-link,
.hero-meta,
.specs,
.topbar nav,
.menu-meta,
.menu-foot,
.socials,
label {
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.preloader span {
  width: 48px;
  height: 1px;
  background: rgba(251, 248, 241, 0.48);
}

.cursor {
  pointer-events: none;
  position: fixed;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  z-index: 110;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(251, 248, 241, 0.9);
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition:
    width 0.28s ease,
    height 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    opacity 0.28s ease;
}

.cursor.is-negative {
  width: 36px;
  height: 36px;
  border-color: rgba(251, 248, 241, 0);
  background: #fff;
  opacity: 0.92;
}

.form-toast {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(16, 16, 15, 0.12);
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.9);
  color: rgba(16, 16, 15, 0.72);
  box-shadow: 0 18px 50px rgba(16, 16, 15, 0.08);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  backdrop-filter: blur(14px);
}

.form-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.side-rail {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  display: none;
  width: 72px;
  height: 100svh;
  border-right: 1px solid rgba(16, 16, 15, 0.1);
  background: rgba(244, 240, 232, 0.76);
  backdrop-filter: blur(18px);
}

.rail-logo {
  position: absolute;
  left: 50%;
  top: 16px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.rail-logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.side-rail p {
  position: absolute;
  bottom: 118px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%) rotate(-90deg);
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(16, 16, 15, 0.55);
}

.topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.topbar.is-scrolled {
  background: rgba(244, 240, 232, 0.76);
  box-shadow: 0 1px 0 rgba(16, 16, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: 112px;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, width 0.4s ease;
}

.topbar nav {
  display: none;
  gap: 34px;
  color: rgba(251, 248, 241, 0.92);
  font-size: 10.5px;
}

.topbar nav > a,
.nav-parent {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.topbar nav > a:hover,
.nav-dropdown:hover .nav-parent {
  opacity: 0.72;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  margin: -14px 0;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 170px;
  height: 24px;
}

.nav-arrow {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-arrow {
  transform: translateY(1px) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  min-width: 148px;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(251, 248, 241, 0.2);
  background: rgba(16, 16, 15, 0.48);
  color: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  backdrop-filter: blur(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  color: inherit;
  opacity: 0.78;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-submenu a:hover {
  color: inherit;
  opacity: 1;
  transform: translateX(4px);
}

.topbar.is-scrolled .brand {
  filter: none;
}

.topbar.is-scrolled nav {
  color: rgba(16, 16, 15, 0.72);
}

.topbar.is-scrolled .nav-submenu {
  border-color: rgba(16, 16, 15, 0.12);
  background: rgba(244, 240, 232, 0.9);
  color: var(--ink);
}

.topbar--dark {
  color: rgba(16, 16, 15, 0.72);
}

.topbar--dark .brand {
  filter: none;
}

.topbar--dark nav {
  color: rgba(16, 16, 15, 0.72);
}

.topbar--dark .nav-submenu {
  border-color: rgba(16, 16, 15, 0.12);
  background: rgba(244, 240, 232, 0.9);
  color: var(--ink);
}

.menu-toggle,
.menu-close {
  border: 1px solid rgba(16, 16, 15, 0.15);
  background: transparent;
}

.menu-toggle {
  display: grid;
  align-content: center;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.side-rail > .menu-toggle {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
}

.side-rail > .menu-toggle span {
  display: block;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  margin: 2.5px;
  background: currentColor;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px 16px;
  background: var(--ink);
  color: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  right: 20px;
  top: 20px;
  border-color: rgba(251, 248, 241, 0.2);
  border-radius: 999px;
  padding: 14px 18px;
}

.menu-meta,
.menu-foot {
  display: flex;
  justify-content: space-between;
  color: rgba(251, 248, 241, 0.55);
}

.menu-panel nav {
  align-self: center;
  display: grid;
  gap: 6px;
}

.menu-panel nav a {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(251, 248, 241, 0.12);
  padding: 10px 0;
  font-size: clamp(1.6rem, 5.5vw, 4.5rem);
  font-weight: 100;
  line-height: 0.92;
  letter-spacing: 0;
  opacity: 0.58;
  transform-origin: left center;
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.menu-panel nav a:hover,
.menu-panel nav a:focus-visible {
  opacity: 1;
  transform: translateX(10px) scale(1.035);
}

.menu-projects {
  display: grid;
  gap: 0;
  padding: 2px 0 14px 18px;
}

.menu-panel nav .menu-projects a {
  border-bottom: 0;
  padding: 5px 0;
  font-size: clamp(0.95rem, 3vw, 1.45rem);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: rgba(251, 248, 241, 0.72);
  opacity: 0.72;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0 0 auto;
  height: 100svh;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(244, 240, 232, 0.2), rgba(244, 240, 232, 0), var(--bone));
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 38%;
  background: linear-gradient(to bottom, rgba(34, 34, 31, 0.4), rgba(34, 34, 31, 0));
  pointer-events: none;
}

.parallax img {
  height: 115%;
  object-fit: cover;
  transform: translateY(var(--py, 0));
  will-change: transform;
}

.hero-slide {
  position: absolute;
  inset: 0;
  height: 108%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04) translateY(var(--py, 0));
  transition: opacity 1.45s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.01) translateY(var(--py, 0));
}

.hero-content {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: end;
  gap: 36px;
  padding: 120px 0 40px;
}

.mega,
.display {
  margin: 0;
  font-weight: 100;
  letter-spacing: 0;
}

.mega {
  max-width: 1200px;
  font-size: clamp(2.3rem, 7.5vw, 8rem);
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  gap: 0.08em;
  max-width: 620px;
  font-size: clamp(1rem, 3.12vw, 3.33rem);
  font-weight: 500;
  line-height: 0.94;
  animation: heroFloat 5.5s ease-in-out infinite alternate;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.hero-title strong {
  font-weight: 500;
  font-size: 1em;
}

.display {
  font-size: clamp(1.25rem, 3.8vw, 4.3rem);
  line-height: 0.96;
  color: var(--ink);
}

.display.small {
  font-size: clamp(1.1rem, 2.75vw, 3rem);
}

.invert {
  color: var(--ivory);
}

.hero-copy {
  max-width: 460px;
}

.hero-copy p,
.lead,
.project-title {
  margin: 0;
  font-size: clamp(0.72rem, 1.28vw, 1.18rem);
  font-weight: 300;
  line-height: 1.34;
  letter-spacing: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 16, 15, 0.2);
  border-radius: 999px;
  padding: 0 24px;
  background: transparent;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease, transform 0.45s ease;
}

.button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
  transform: translateY(-2px);
}

.hero-meta,
.specs {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
  padding-top: 16px;
  color: rgba(16, 16, 15, 0.55);
}

.key-facts {
  padding: 68px 0 0;
  background: var(--bone);
  color: var(--ink);
}

.key-facts-grid {
  display: grid;
  border-top: 1px solid rgba(16, 16, 15, 0.16);
}

.key-fact {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: clamp(16px, 2vw, 26px);
  border-bottom: 1px solid rgba(16, 16, 15, 0.12);
  padding: clamp(24px, 3.2vw, 42px) 0;
}

.key-fact-plus {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 16, 15, 0.14);
  border-radius: 50%;
  color: rgba(16, 16, 15, 0.42);
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
}

.key-fact p {
  display: grid;
  gap: 3px;
  max-width: 360px;
  margin: 0;
  color: rgba(16, 16, 15, 0.62);
  font-size: clamp(0.98rem, 1.18vw, 1.24rem);
  font-weight: 300;
  line-height: 1.22;
}

.key-fact p span {
  display: block;
  white-space: nowrap;
}

.track-record {
  padding: 94px 0 88px;
  background: var(--bone);
  color: var(--ink);
}

.track-record-head {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 42px;
}

.track-record-head p {
  max-width: 510px;
  align-self: end;
  margin: 0;
  color: rgba(16, 16, 15, 0.56);
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  font-weight: 300;
}

.track-record-grid {
  display: grid;
  border-top: 1px solid rgba(16, 16, 15, 0.18);
}

.track-record-item {
  display: grid;
  min-height: 245px;
  align-content: space-between;
  gap: 52px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.18);
  padding: 28px 0;
  transition: background 0.45s ease, transform 0.45s ease;
}

.track-record-item:hover {
  background: rgba(16, 16, 15, 0.025);
  transform: translateY(-4px);
}

.track-record-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.track-record-icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.track-record-number {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  gap: 7px;
  color: rgba(16, 16, 15, 0.38);
}

.track-record-number strong {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.track-record-number span {
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
}

.track-record-project {
  display: grid;
  gap: 18px;
}

.track-record-status {
  font-size: clamp(1.72rem, 2.35vw, 2.65rem);
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.track-record-project-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.track-record-name {
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  font-weight: 100;
  line-height: 1;
  color: rgba(16, 16, 15, 0.58);
}

.track-record-arrow {
  flex: 0 0 auto;
  color: rgba(16, 16, 15, 0.38);
  font-size: 24px;
  line-height: 1;
  font-weight: 100;
  transition: color 0.35s ease, transform 0.35s ease;
}

.track-record-item:hover .track-record-arrow {
  color: var(--ink);
  transform: translate(3px, -3px);
}

.manifest {
  display: grid;
  gap: 56px;
  padding: 140px 0;
}

.manifest .display {
  max-width: 300px;
  font-size: clamp(1.85rem, 3.8vw, 4rem);
  line-height: 0.94;
}

.project-story .display {
  font-size: clamp(1.06rem, 3.23vw, 3.65rem);
}

.manifest-heading {
  display: grid;
  align-content: start;
  gap: 26px;
}

.manifest-heading .eyebrow {
  max-width: 240px;
  margin: 0;
}

.manifest-content {
  display: grid;
  justify-self: stretch;
  width: 100%;
  max-width: 780px;
}

.manifest-services {
  display: grid;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
}

.manifest-services article {
  display: grid;
  min-height: 82px;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.12);
  padding: 18px 0;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  line-height: 1.05;
  transition: border-color 0.45s ease, transform 0.45s ease;
}

.manifest-services article:hover {
  border-color: rgba(16, 16, 15, 0.3);
  transform: translateX(6px);
}

.manifest-services svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
  opacity: 0.62;
}

.investment-paraguay {
  position: relative;
  overflow: hidden;
  padding: 118px 0 110px;
  background: var(--bone);
}

.investment-paraguay::after {
  content: "PY";
  position: absolute;
  right: -0.08em;
  top: -0.32em;
  color: rgba(16, 16, 15, 0.035);
  font-size: clamp(15rem, 39vw, 38rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.investment-paraguay .container {
  position: relative;
  z-index: 1;
}

.investment-paraguay-head {
  display: grid;
  gap: 42px;
  padding-bottom: 78px;
}

.investment-paraguay-kicker {
  margin: 0 0 22px;
  color: rgba(16, 16, 15, 0.45);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.investment-paraguay h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 5.25vw, 5.7rem);
  font-weight: 100;
  line-height: 0.91;
}

.investment-paraguay-intro {
  max-width: 600px;
  align-self: end;
  margin: 0;
  color: rgba(16, 16, 15, 0.65);
  font-size: clamp(0.86rem, 1.22vw, 1.18rem);
  font-weight: 300;
  line-height: 1.48;
}

.investment-benefits {
  display: grid;
  border-top: 1px solid rgba(16, 16, 15, 0.18);
}

.investment-benefit {
  position: relative;
  display: grid;
  min-height: 275px;
  align-content: space-between;
  gap: 46px;
  border-bottom: 1px solid rgba(16, 16, 15, 0.18);
  padding: 28px 0;
}

.investment-benefit svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
}

.investment-benefit-number {
  position: absolute;
  right: 2px;
  top: 30px;
  color: rgba(16, 16, 15, 0.35);
  font-size: 10px;
  font-weight: 500;
}

.investment-benefit h3 {
  max-width: 250px;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.02;
}

.investment-benefit p {
  max-width: 260px;
  margin: 15px 0 0;
  color: rgba(16, 16, 15, 0.54);
  font-size: 12px;
  font-weight: 300;
}

.eyebrow {
  margin: 0 0 28px;
  color: rgba(16, 16, 15, 0.45);
}

.dark-gallery,
footer {
  background: var(--ink);
  color: var(--ivory);
}

.projects-strip {
  background: var(--bone);
  color: var(--ink);
  padding: 120px 0;
}

.section-head {
  display: grid;
  gap: 28px;
  margin-bottom: 48px;
}

.text-link {
  color: rgba(16, 16, 15, 0.58);
}

.dark-gallery .eyebrow {
  color: rgba(251, 248, 241, 0.58);
}

.projects-strip .invert {
  color: var(--ink);
}

.projects-strip .horizontal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  overflow: visible;
  scroll-snap-type: none;
}

.horizontal {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.horizontal::-webkit-scrollbar {
  display: none;
}

.auto-carousel {
  cursor: grab;
}

.auto-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.auto-carousel.is-dragging * {
  pointer-events: none;
}

.project-card {
  position: relative;
  display: block;
  min-width: 61.5vw;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--mist);
  transform-origin: center bottom;
  transition: opacity 0.7s ease, filter 0.7s ease;
}

.projects-strip .project-card {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.project-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: 0.9s ease;
}

.horizontal:hover .project-card {
  opacity: 0.48;
  filter: grayscale(1);
}

.horizontal:hover .project-card:hover {
  z-index: 2;
  opacity: 1;
  filter: grayscale(0);
}

.project-card:hover > img {
  filter: grayscale(0);
  transform: scale(1.06);
}

.project-card-caption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(to top, rgba(16, 16, 15, 0.58), transparent);
}

.project-card-caption,
.project-card-caption * {
  pointer-events: none;
}

.project-location {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  font-size: 9.7px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(251, 248, 241, 0.82);
}

.project-location svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-card-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(251, 248, 241, 0.48);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(251, 248, 241, 0.86);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.project-logo {
  width: min(55%, 182px);
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.92;
}

.project-enter {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(251, 248, 241, 0.78);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 22px;
  font-weight: 100;
  line-height: 0;
  text-align: center;
  transform-origin: center;
  transition: transform 0.45s ease, background 0.45s ease, color 0.45s ease;
}

.project-enter::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(251, 248, 241, 0.32), transparent 62%);
  opacity: 0.55;
  animation: softPulse 2.8s ease-in-out infinite;
}

.project-card:hover .project-enter {
  background: var(--ivory);
  color: var(--ink);
  transform: scale(1.08) rotate(90deg);
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.86);
  }
  50% {
    opacity: 0.68;
    transform: scale(1.1);
  }
}

.project-card h3 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 100;
  line-height: 0.9;
  letter-spacing: 0;
}

.metrics {
  display: grid;
  gap: 48px;
  padding: 110px 0;
}

.metrics article {
  border-top: 1px solid rgba(16, 16, 15, 0.15);
  padding-top: 20px;
}

.metrics strong {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0;
}

.metrics span {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(16, 16, 15, 0.48);
}

.method,
.about-grid,
.detail-grid,
.contact {
  display: grid;
  gap: 48px;
}

.method {
  padding: 80px 0 130px;
}

.sticky-image,
.about-grid .parallax {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--mist);
}

.steps,
.amenities {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-title {
  max-width: 720px;
  margin: 12px 0 30px;
  font-size: clamp(2.1rem, 4.1vw, 4.6rem);
  font-weight: 100;
  line-height: 0.95;
}

.steps li,
.amenities li {
  display: grid;
  grid-template-columns: 48px 1fr;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
  padding: 24px 0;
  font-size: clamp(0.9rem, 1.55vw, 1.9rem);
  font-weight: 100;
  line-height: 1.08;
  letter-spacing: 0;
}

.steps span,
.amenities span {
  font-size: 16px;
  letter-spacing: 0;
  color: rgba(16, 16, 15, 0.38);
}

.project-detail {
  padding-top: 80px;
}

.project-hero {
  display: grid;
  min-height: 78svh;
  align-content: space-between;
  gap: 42px;
  padding-bottom: 44px;
}

.project-title {
  max-width: 650px;
}

.wide-image {
  height: 92svh;
  overflow: hidden;
  background: var(--mist);
}

.wide-image img {
  height: 115%;
  object-fit: cover;
}

.project-story {
  display: grid;
  gap: 42px;
  padding: 120px 0;
}

.dark-gallery {
  padding: 96px 0;
}

.gallery-grid {
  display: grid;
  gap: 48px;
}

.gallery {
  display: grid;
  gap: 20px;
}

.gallery img {
  min-height: 420px;
  object-fit: cover;
}

.gallery img:nth-child(even) {
  width: 82%;
  margin-left: auto;
}

.detail-grid {
  padding: 100px 0 130px;
}

.investment-card {
  border: 1px solid rgba(16, 16, 15, 0.12);
  padding: 28px;
}

dl,
dd {
  margin: 0;
}

dl {
  display: grid;
  gap: 32px;
  margin-top: 64px;
}

dl div {
  border-top: 1px solid rgba(16, 16, 15, 0.12);
  padding-top: 16px;
}

dt {
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(16, 16, 15, 0.42);
}

dd {
  margin-top: 10px;
  font-size: clamp(0.85rem, 1.5vw, 1.5rem);
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0;
}

.about {
  padding: 120px 0;
}

.about > .display.small {
  max-width: 1050px;
  margin-top: 40px;
  font-size: clamp(0.94rem, 2.34vw, 2.55rem);
}

.section-head .lead {
  font-size: clamp(0.66rem, 1.36vw, 1.28rem);
}

.about-grid {
  margin-top: 72px;
}

.about-grid p {
  max-width: 650px;
  margin: 0 0 72px;
  font-size: clamp(0.63rem, 1vw, 1rem);
  line-height: 1.35;
  color: rgba(16, 16, 15, 0.62);
}

.steps.compact li {
  font-size: clamp(0.9rem, 1.5vw, 1.75rem);
}

.services {
  padding: 90px 0 120px;
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-grid article {
  display: flex;
  min-height: 260px;
  align-items: end;
  border: 1px solid rgba(16, 16, 15, 0.12);
  padding: 24px;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 100;
  line-height: 0.95;
  letter-spacing: 0;
  transition: 0.45s ease;
}

.service-grid article:hover {
  background: var(--ink);
  color: var(--ivory);
}

.contact {
  min-height: 82svh;
  padding: 100px 0 130px;
}

.socials {
  display: grid;
  gap: 12px;
  margin-top: 60px;
  color: rgba(16, 16, 15, 0.62);
}

.contact-links {
  gap: 14px;
  text-transform: none;
}

.contact-links a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: rgba(16, 16, 15, 0.58);
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-links a:hover {
  color: var(--ink);
  transform: translateX(4px);
}

.contact-links svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

form {
  display: grid;
  gap: 28px;
  border-top: 1px solid rgba(16, 16, 15, 0.14);
  padding-top: 28px;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(16, 16, 15, 0.42);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.18);
  outline: 0;
  background: transparent;
  padding: 14px 0;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 100;
  letter-spacing: 0;
}

input:focus,
textarea:focus {
  border-bottom-color: rgba(16, 16, 15, 0.58);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.home-contact {
  display: grid;
  gap: 48px;
  padding: 110px 0 130px;
  border-top: 1px solid rgba(16, 16, 15, 0.12);
}

.home-contact-copy {
  display: grid;
  align-content: start;
  gap: 28px;
}

.home-contact-copy .display {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  line-height: 0.94;
}

.home-contact-data {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: rgba(16, 16, 15, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.home-contact-data a {
  width: fit-content;
  transition: color 0.3s ease, transform 0.3s ease;
}

.home-contact-data a:hover {
  color: var(--ink);
  transform: translateX(4px);
}

footer {
  padding: 56px 0;
}

.footer-grid {
  display: grid;
  gap: 48px;
}

footer p {
  margin: 0;
  font-size: clamp(1.5rem, 4.5vw, 4.5rem);
  font-weight: 100;
  line-height: 0.86;
  letter-spacing: 0;
}

@keyframes heroFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

footer span {
  max-width: 420px;
  color: rgba(251, 248, 241, 0.62);
}

footer nav {
  display: grid;
  gap: 12px;
}

.reveal,
.reveal-text {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.reveal:nth-child(3) {
  transition-delay: 0.12s;
}

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

@media (min-width: 760px) {
  .hero-content {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: end;
  }

  .hero-meta,
  .specs {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .key-facts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .key-fact {
    min-height: 185px;
    grid-template-columns: 1fr;
    align-content: end;
    align-items: start;
    gap: 42px;
    border-right: 1px solid rgba(16, 16, 15, 0.12);
    padding: 28px 32px 30px;
  }

  .key-fact:first-child {
    padding-left: 0;
  }

  .key-fact:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .key-fact p {
    font-size: clamp(0.98rem, 1.06vw, 1.18rem);
  }

  .track-record-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .track-record-item {
    border-right: 1px solid rgba(16, 16, 15, 0.18);
    padding: 28px 26px;
  }

  .track-record-item:first-child {
    padding-left: 0;
  }

  .track-record-item:last-child {
    border-right: 0;
    padding-right: 0;
  }

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

  .manifest,
  .project-story,
  .gallery-grid,
  .detail-grid,
  .method,
  .about-grid,
  .contact,
  .home-contact {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .manifest {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 2.15fr);
    align-items: start;
  }

  .investment-paraguay-head {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

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

  .investment-benefit {
    padding: 28px;
  }

  .investment-benefit:nth-child(odd) {
    border-right: 1px solid rgba(16, 16, 15, 0.18);
    padding-left: 0;
  }

  .investment-benefit:nth-child(even) {
    padding-right: 0;
  }

  .metrics,
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-head {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .project-card {
    min-width: 32.25vw;
  }
}

@media (min-width: 1024px) {
  .container {
    width: calc(100% - 112px);
    margin-left: 88px;
    margin-right: 24px;
  }

  .side-rail {
    display: block;
  }

  .topbar {
    left: 72px;
    padding: 18px 32px;
  }

  .topbar nav {
    display: flex;
  }

  .topbar .mobile {
    display: none;
  }

  .project-card {
    min-width: 25.5vw;
  }

  .sticky-image {
    position: sticky;
    top: 96px;
  }
}

@media (pointer: coarse) {
  body,
  a,
  button,
  input,
  textarea {
    cursor: auto;
  }

  .cursor {
    display: none;
  }
}

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

.page-shell {
  overflow: hidden;
  padding-top: 96px;
}

.page-intro {
  display: grid;
  gap: 40px;
  min-height: 72svh;
  align-content: end;
  padding: 80px 0 56px;
}

.page-intro.split {
  grid-template-columns: 1fr;
}

.page-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(16, 16, 15, 0.46);
}

.preview-grid {
  display: grid;
  gap: 18px;
}

.overview-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 15, 0.12);
  background: var(--bone);
  transition: border-color 0.45s ease, transform 0.45s ease;
}

.overview-card img {
  aspect-ratio: 4 / 4.8;
  height: auto;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.overview-card:hover img {
  transform: scale(1.04);
}

.overview-card:hover {
  border-color: rgba(16, 16, 15, 0.28);
  transform: translateY(-4px);
}

.overview-card-content {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
}

.overview-card h2 {
  margin: 10px 0 0;
  font-size: clamp(1.45rem, 2.75vw, 3rem);
  font-weight: 100;
  line-height: 0.95;
}

.overview-card p {
  margin: 0;
  font-size: 11.5px;
  color: rgba(16, 16, 15, 0.62);
  line-height: 1.5;
}

.overview-card-content > div > p {
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(16, 16, 15, 0.48);
}

.overview-card .button {
  min-height: 30px;
  padding: 0 14px;
  font-size: 9px;
}

.project-landing-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.project-landing-hero .hero-slide {
  height: 100%;
}

.project-landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 16, 15, 0.2), rgba(16, 16, 15, 0.06), rgba(16, 16, 15, 0.66));
}

.project-landing-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  align-content: end;
  gap: 28px;
  padding: 130px 0 52px;
}

.project-landing-content h1 {
  margin: 0;
  font-size: clamp(4.2rem, 15vw, 15rem);
  font-weight: 100;
  line-height: 0.8;
  text-transform: uppercase;
}

.project-logo-title {
  width: min(26vw, 260px);
  height: auto;
  filter: none;
}

.project-logo-title--marsella {
  width: min(26vw, 260px);
}

.project-status {
  width: fit-content;
  border: 1px solid rgba(251, 248, 241, 0.34);
  border-radius: 999px;
  padding: 7px 13px 6px;
  color: rgba(251, 248, 241, 0.74);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.project-landing-content p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(0.9rem, 1.48vw, 1.7rem);
  font-weight: 100;
  line-height: 1.12;
}

.content-band {
  padding: 132px 0;
}

.content-band.dark {
  background: var(--ink);
  color: var(--ivory);
}

.gallery-band {
  background: var(--bone);
  color: var(--ink);
}

.gallery-band .container {
  width: calc(100% - 72px);
  margin-left: 72px;
  margin-right: 0;
}

.gallery-band .display {
  max-width: 760px;
  margin-bottom: 58px;
}

.gallery-band .page-kicker {
  margin-bottom: 18px;
}

.gallery-band .page-kicker,
.gallery-band .display,
.gallery-dots {
  width: calc(100% - 112px);
  margin-left: 16px;
  margin-right: 24px;
}

.gallery-dots {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(16, 16, 15, 0.45);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.gallery-dot.is-active {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.2);
}

.projects-strip .gallery-dots {
  display: none;
}

.editorial-grid {
  display: grid;
  gap: 48px;
}

.project-statement .display {
  max-width: 720px;
  font-size: clamp(1.32rem, 2.55vw, 3.15rem);
  line-height: 1.08;
}

.editorial-grid .display {
  max-width: 820px;
  font-size: clamp(1.28rem, 2.42vw, 3rem);
  line-height: 1.08;
}

.typologies-band {
  padding-top: 0;
}

.typology-heading {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 100;
  line-height: 0.95;
}

.typology-heading--genova {
  max-width: 980px;
  font-size: clamp(2rem, 4.7vw, 4.55rem);
  line-height: 1;
}

.typology-subtitle {
  margin: 14px 0 0;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(16, 16, 15, 0.52);
}

.typology-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.typology-card {
  display: grid;
  min-height: 240px;
  align-content: space-between;
  border: 1px solid rgba(16, 16, 15, 0.12);
  padding: 24px;
  transition: border-color 0.45s ease, transform 0.45s ease;
}

.typology-card:hover {
  border-color: rgba(16, 16, 15, 0.28);
  transform: translateY(-3px);
}

.typology-card span,
.typology-card p {
  color: rgba(16, 16, 15, 0.52);
  font-size: 11.5px;
  line-height: 1.5;
}

.typology-card h3 {
  max-width: 320px;
  margin: 36px 0 18px;
  font-size: clamp(1.55rem, 3vw, 3.35rem);
  font-weight: 100;
  line-height: 1;
}

.genova-location-points {
  width: auto;
  margin-left: 72px;
  padding: 0 clamp(24px, 4vw, 56px);
  background: var(--ink);
  color: var(--bone);
}

.genova-location-copy {
  display: grid;
  gap: clamp(44px, 6vw, 96px);
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: clamp(72px, 9vw, 132px) 0 clamp(78px, 9vw, 132px);
  border-top: 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.14);
}

.genova-location-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--bone);
  font-size: clamp(1.45rem, 2.55vw, 3rem);
  font-weight: 100;
  line-height: 1.08;
  text-wrap: balance;
}

.genova-location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244, 240, 232, 0.16);
}

.genova-location-list li {
  display: grid;
  min-height: clamp(118px, 12vw, 168px);
  min-width: 0;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  border-right: 1px solid rgba(244, 240, 232, 0.14);
  border-bottom: 1px solid rgba(244, 240, 232, 0.16);
  padding: clamp(22px, 3vw, 36px);
  color: rgba(244, 240, 232, 0.78);
  font-size: clamp(1.05rem, 1.55vw, 1.75rem);
  font-weight: 100;
  line-height: 1.12;
}

.genova-location-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.genova-location-list li:nth-child(2n) {
  border-right: 0;
}

.genova-location-list li:nth-child(1) { transition-delay: 0.04s; }
.genova-location-list li:nth-child(2) { transition-delay: 0.08s; }
.genova-location-list li:nth-child(3) { transition-delay: 0.12s; }
.genova-location-list li:nth-child(4) { transition-delay: 0.16s; }
.genova-location-list li:nth-child(5) { transition-delay: 0.2s; }
.genova-location-list li:nth-child(6) { transition-delay: 0.24s; }

.genova-location-list svg {
  width: 19px;
  height: 19px;
  align-self: center;
  stroke: var(--bone);
  stroke-width: 1.35;
  fill: none;
  opacity: 0.76;
}

.image-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.image-slider::-webkit-scrollbar {
  display: none;
}

.image-slider figure {
  min-width: calc(100vw - 72px);
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  background: rgba(251, 248, 241, 0.08);
}

.fade-carousel {
  gap: 0;
  scroll-behavior: smooth;
}

.fade-carousel figure {
  background: var(--bone);
  opacity: 0.28;
  transition: opacity 0.85s ease;
}

.fade-carousel figure.is-active {
  opacity: 1;
}

.fade-carousel img {
  transition: transform 1.2s ease, opacity 0.85s ease;
}

.fade-carousel figure.is-active img {
  transform: scale(1.015);
}

.image-slider img {
  height: 76vh;
  min-height: 460px;
  object-fit: cover;
  will-change: transform, opacity;
}

.technical-grid {
  display: grid;
  gap: 16px;
}

.amenities-band {
  padding-bottom: 78px;
}

.amenities-list-editorial {
  max-width: 840px;
}

.icon-amenities li {
  grid-template-columns: 42px 34px 1fr;
  align-items: center;
}

.icon-amenities svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: rgba(16, 16, 15, 0.62);
}

.amenity-photo {
  width: calc(100% - 72px);
  height: 400px;
  margin-left: 72px;
  overflow: hidden;
  background: var(--mist);
}

.amenity-photo img {
  height: 118%;
  object-fit: cover;
}

.amenity-photo--genova img {
  height: calc(118% + 150px);
  transform: translateY(-150px);
}

.data-band {
  padding-top: 88px;
}

.map-band {
  display: grid;
  gap: 28px;
  padding-top: 42px;
}

.map-copy {
  display: grid;
  align-content: end;
  gap: 18px;
}

.map-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.1rem, 5.2vw, 5.7rem);
  font-weight: 100;
  line-height: 0.94;
}

.map-band.map-band--stacked {
  display: block;
  gap: 24px;
}

.map-band--stacked .map-copy {
  display: grid;
  text-align: center;
  justify-items: center;
  gap: 12px;
  margin-bottom: 44px;
}

.map-band--stacked .map-copy h2 {
  max-width: 520px;
  font-size: clamp(1.8rem, 3vw, 3.6rem);
}

.map-band--stacked .map-copy p:not(.page-kicker) {
  max-width: 520px;
}

.map-band--stacked .map-frame {
  width: calc(100vw - 72px);
  margin-left: calc((100vw - 72px - 100%) / -2);
  height: 520px;
}

.map-band--compact .map-copy h2 {
  font-size: clamp(1.35rem, 2.1vw, 2.4rem);
}

.map-band--compact .map-copy p:not(.page-kicker) {
  font-size: 13px;
}

.map-band--compact .map-frame {
  height: 450px;
}

.map-band--compact.map-band--flush-next {
  padding-bottom: 0;
}

.map-band--compact.map-band--flush-next .map-frame {
  margin-bottom: 0;
}

.map-copy p:not(.page-kicker) {
  max-width: 430px;
  margin: 0;
  color: rgba(16, 16, 15, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.map-frame {
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 15, 0.12);
  background: var(--mist);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) sepia(0.08) saturate(0.55) contrast(0.92) brightness(1.03);
  mix-blend-mode: multiply;
  opacity: 0.88;
}

.map-link {
  display: table;
  margin: 22px auto 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.28);
  padding-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(16, 16, 15, 0.62);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.map-link:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.project-cta {
  padding-top: 52px;
}

.project-cta--dark {
  width: calc(100% - 72px);
  max-width: none;
  margin-left: 72px;
  margin-right: 0;
  padding: 76px 0;
  background: var(--ink);
  color: var(--bone);
}

.project-cta--dark .button {
  border-color: rgba(244, 240, 232, 0.34);
  color: var(--bone);
}

.project-cta--dark .button:hover {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ink);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.technical-grid-editorial {
  margin-top: 28px;
}

.technical-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(16, 16, 15, 0.12);
  padding: 24px;
}

.technical-card strong,
.technical-card span {
  display: block;
}

.technical-card strong {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(16, 16, 15, 0.46);
}

.technical-card span {
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 100;
  line-height: 1;
}

.location-box {
  border: 1px solid rgba(16, 16, 15, 0.12);
  padding: 32px;
}

.site-footer-lite {
  background: var(--ink);
  color: var(--bone);
  padding: 42px 0;
}

.premium-footer {
  display: grid;
  gap: 24px;
}

.footer-brand-mark {
  width: clamp(42px, 5vw, 68px);
}

.footer-brand-mark img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(12%) saturate(312%) hue-rotate(348deg) brightness(104%) contrast(91%);
}

.footer-menu,
.footer-socials {
  display: grid;
  gap: 8px;
}

.footer-menu a,
.footer-socials a {
  width: fit-content;
  color: rgba(244, 240, 232, 0.72);
  font-size: 11px;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-menu a:hover,
.footer-socials a:hover {
  color: var(--bone);
  transform: translateX(4px);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-socials svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 240, 232, 0.14);
  color: rgba(244, 240, 232, 0.8);
  font-size: 7.5px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-credit img {
  width: clamp(62px, 6vw, 84px);
  height: auto;
  display: block;
  opacity: 0.8;
  transform: translateY(-1px);
}

.footer-note {
  max-width: 320px;
  margin: 0;
  color: rgba(251, 248, 241, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(16, 16, 15, 0.18);
  border-radius: 50%;
  background: rgba(244, 240, 232, 0.76);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(18px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--ink);
  color: var(--ivory);
}

@media (min-width: 760px) {
  .page-intro.split,
  .editorial-grid {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: end;
  }

  .genova-location-copy {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
  }

  .genova-location-list {
    grid-column: 2;
  }

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

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

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

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

  .map-band:not(.map-band--stacked) {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: end;
  }

  .map-frame {
    height: 460px;
  }

  .premium-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .premium-footer > * {
    min-width: 0;
  }

  .premium-footer .footer-credit {
    grid-column: 1 / -1;
  }

  .premium-footer .footer-menu,
  .premium-footer .footer-socials {
    justify-self: center;
  }
}

@media (min-width: 1180px) {
}

@media (max-width: 759px) {
  .container {
    width: min(calc(100% - 28px), 100%);
  }

  .preloader p,
  .eyebrow,
  .text-link,
  .hero-meta,
  .specs,
  .menu-meta,
  .menu-foot,
  .socials,
  label,
  .page-kicker,
  .project-card span,
  .metrics span,
  .button {
    font-size: 12px;
  }

  .project-card .project-card-status {
    font-size: 9px;
  }

  .topbar {
    padding: 12px 14px;
  }

  .form-toast {
    top: 12px;
    width: max-content;
    max-width: calc(100% - 28px);
    padding: 0 14px;
    font-size: 9px;
  }

  .brand {
    width: 96px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-meta,
  .menu-foot {
    display: grid;
    gap: 8px;
  }

  .menu-panel nav a {
    font-size: clamp(2.4rem, 17vw, 5.6rem);
  }

  .hero-content {
    min-height: 100svh;
    align-content: end;
    gap: 18px;
    padding: 110px 0 24px;
  }

  .hero-title {
    width: 100%;
    max-width: calc(100vw - 34px);
    font-size: clamp(1.41rem, 6.92vw, 2.06rem);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: keep-all;
    white-space: nowrap;
  }

  .hero-title strong {
    font-size: 1em;
    line-height: inherit;
  }

  .hero-copy {
    max-width: 310px;
  }

  .hero-copy .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .hero-copy .button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-copy p,
  .lead,
  .project-title {
    font-size: clamp(0.9rem, 4.5vw, 1.18rem);
    line-height: 1.32;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .display {
    font-size: clamp(2.1rem, 12vw, 4.2rem);
  }

  .manifest,
  .content-band,
  .about,
  .metrics {
    padding: 72px 0;
  }

  .key-facts {
    padding-top: 58px;
  }

  .key-fact {
    grid-template-columns: 24px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .key-fact-plus {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

  .key-fact p {
    font-size: clamp(0.98rem, 4.8vw, 1.22rem);
    line-height: 1.24;
  }

  .key-fact p span {
    white-space: normal;
  }

  .track-record {
    padding-top: 64px;
  }

  .projects-strip,
  .dark-gallery {
    padding: 70px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .horizontal,
  .image-slider {
    gap: 14px;
    padding-right: 14px;
  }

  .projects-strip .horizontal {
    display: grid;
    gap: 18px;
    overflow: visible;
    padding-right: 0;
    scroll-snap-type: none;
  }

  .project-card {
    min-width: 76vw;
    max-width: 76vw;
  }

  .projects-strip .project-card {
    width: 100%;
    min-width: 100%;
    max-width: none;
    aspect-ratio: 4 / 5.05;
    scroll-snap-align: unset;
  }

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

  .horizontal:hover .project-card:hover {
    transform: none;
  }

  .metrics,
  .technical-grid,
  .preview-grid {
    gap: 18px;
  }

  .method,
  .about-grid,
  .detail-grid,
  .contact,
  .home-contact,
  .editorial-grid {
    gap: 32px;
  }

  .method-title {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.55rem);
  }

  .steps li,
  .amenities li {
    grid-template-columns: 36px 1fr;
    font-size: clamp(1.08rem, 5.4vw, 1.55rem);
    line-height: 1.16;
  }

  .project-landing-content {
    padding: 108px 0 32px;
  }

  .project-landing-content h1 {
    font-size: clamp(3.5rem, 20vw, 7rem);
  }

  .project-logo-title,
  .project-logo-title--marsella {
    width: min(58vw, 240px);
  }

  .project-landing-content p {
    font-size: clamp(0.84rem, 4.3vw, 1.16rem);
    line-height: 1.2;
  }

  .map-band {
    padding-top: 64px;
  }

  .map-band--compact.map-band--flush-next {
    padding-bottom: 0;
  }

  .map-frame {
    height: 360px;
  }

  .project-actions {
    display: grid;
  }

  .project-cta--dark {
    width: 100%;
    margin-left: 0;
    padding: 58px 14px;
  }

  .genova-location-points {
    width: 100%;
    margin-left: 0;
    padding: 0 14px;
  }

  .genova-location-copy {
    gap: 34px;
    padding: 64px 0;
  }

  .genova-location-list {
    grid-template-columns: 1fr;
  }

  .genova-location-list li,
  .genova-location-list li:nth-child(2n) {
    min-height: auto;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border-right: 0;
    padding: 20px 0;
    font-size: clamp(1.08rem, 6vw, 1.55rem);
  }

  .genova-location-list svg {
    width: 17px;
    height: 17px;
  }

  .image-slider figure {
    min-width: 100vw;
  }

  .image-slider img {
    height: 62vh;
    min-height: 340px;
  }

  .amenity-photo {
    width: 100%;
    height: 400px;
    margin-left: 0;
  }

  .amenity-photo--genova img {
    height: calc(118% + 90px);
    transform: translateY(-90px);
  }

  .data-band {
    padding-top: 64px;
  }

  .gallery-band .container {
    width: 100%;
    margin-left: 0;
  }

  .gallery-band .page-kicker,
  .gallery-band .display,
  .gallery-dots {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .overview-card-content {
    min-height: 280px;
  }

  .contact {
    min-height: auto;
    padding-top: 120px;
  }

  .home-contact {
    padding: 76px 0 90px;
  }

  .home-contact-copy .display {
    font-size: clamp(2.1rem, 11vw, 3.8rem);
  }

  .home-contact-data {
    margin-top: 6px;
    font-size: 11px;
  }

  .contact .socials {
    margin-top: 34px;
  }

  form {
    gap: 22px;
  }

  input,
  textarea {
    font-size: 1.05rem;
  }

  .site-footer-lite {
    padding: 36px 0 76px;
  }

  .premium-footer {
    gap: 22px;
  }

  .footer-brand-mark {
    width: 46px;
  }

  .footer-menu,
  .footer-socials {
    grid-template-columns: repeat(2, max-content);
    gap: 8px 18px;
  }

  .footer-menu a,
  .footer-socials a,
  .footer-note,
  .footer-credit {
    font-size: 10px;
  }

  .footer-credit {
    gap: 6px;
    padding-top: 16px;
    font-size: 7.5px;
  }

  .footer-credit img {
    width: 62px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}
