:root {
  --red: #ec2028;
  --red-dark: #b90f17;
  --ink: #090909;
  --ink-soft: #181818;
  --paper: #f6f3ed;
  --paper-bright: #fcfaf6;
  --muted: #6d6962;
  --line: rgba(9, 9, 9, 0.17);
  --line-light: rgba(255, 255, 255, 0.18);
  --header-height: 88px;
  --shell: min(1320px, calc(100vw - 96px));
  --chapter-space: clamp(110px, 12vw, 190px);
  --font: "Outfit", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

strong {
  font-weight: 700;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.chapter {
  position: relative;
  padding-block: var(--chapter-space);
}

.eyebrow {
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.64);
}

.button {
  position: relative;
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  overflow: hidden;
  border: 0;
  font-weight: 700;
  line-height: 1.1;
  isolation: isolate;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.26) 45%,
    transparent 70%
  );
  content: "";
  transform: translateX(-130%);
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 36px rgba(236, 32, 40, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 18px 44px rgba(236, 32, 40, 0.34);
}

.button--white {
  background: #fff;
  color: var(--ink);
}

.button--white:hover,
.button--white:focus-visible {
  background: var(--ink);
  color: #fff;
}

.button--large {
  min-height: 66px;
  padding: 21px 30px;
  font-size: 1.04rem;
}

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Header and preserved first section */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(24px, 4vw, 72px);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition:
    min-height 250ms ease,
    background 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  min-height: 74px;
  background: rgba(9, 9, 9, 0.97);
  border-color: var(--line-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 164px;
}

.brand img,
.footer-brand > img {
  filter: brightness(0) invert(1);
}

.primary-navigation {
  display: flex;
  gap: clamp(18px, 2.1vw, 38px);
  align-items: center;
  justify-content: center;
}

.primary-navigation a {
  position: relative;
  padding: 10px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-width: 164px;
  padding: 15px 22px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition:
    transform 250ms ease,
    opacity 250ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(940px, 100svh);
  overflow: hidden;
  background: #171717;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18) 68%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: var(--shell);
  margin: 0 auto;
  padding: calc(var(--header-height) + 56px) 0 170px;
}

.hero-copy {
  width: min(1050px, 86vw);
}

.hero-copy h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.8rem, 7.5vw, 8.1rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
  max-width: 940px;
  margin-top: 18px;
  color: #fff;
  font-size: 0.47em;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-transform: none;
}

.hero-copy p {
  max-width: 660px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.hero-metrics {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(7, 7, 7, 0.88);
  border-top: 1px solid var(--line-light);
  backdrop-filter: blur(12px);
}

.hero-metrics div {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 22px clamp(24px, 4vw, 70px);
  border-right: 1px solid var(--line-light);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--red);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
}

.hero-metrics span {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.25;
}

/* Project introduction and gallery */
.project-intro {
  background:
    radial-gradient(circle at 100% 10%, rgba(236, 32, 40, 0.07), transparent 28%),
    var(--paper-bright);
}

.project-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  gap: clamp(70px, 10vw, 170px);
}

.project-heading > .eyebrow {
  grid-column: 1 / -1;
}

.project-heading h2,
.location-intro h2,
.apartments-heading h2,
.about-copy h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.25rem, 6.3vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.project-heading h2 strong,
.location-intro h2 strong,
.apartments-heading h2 strong,
.about-copy h2 strong {
  color: var(--red);
  font-weight: 650;
}

.project-copy {
  align-self: end;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
}

.project-copy p {
  margin: 0 0 28px;
}

.project-copy p:last-child {
  margin-bottom: 0;
}

.project-copy strong {
  color: var(--ink);
}

.gallery-story {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
  margin-top: clamp(90px, 11vw, 170px);
}

.gallery-copy {
  position: sticky;
  top: 120px;
}

.gallery-copy > span,
.map-copy > span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-copy h3 {
  margin: 18px 0 24px;
  font-size: clamp(2.1rem, 3.2vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.gallery-copy p {
  color: var(--muted);
}

.media-accordion {
  display: flex;
  gap: 0;
  height: min(61vw, 720px);
  min-height: 540px;
  overflow: hidden;
  background: #d8d4cb;
}

.gallery-panel {
  position: relative;
  flex: 0.72;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: flex 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-panel:last-child {
  border-right: 0;
}

.gallery-panel.is-active,
.gallery-panel:hover,
.gallery-panel:focus-visible {
  flex: 3.2;
  outline: none;
}

.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.04);
  transition:
    filter 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-panel:hover img,
.gallery-panel:focus-visible img,
.gallery-panel.is-active img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1);
}

.gallery-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 45%);
  content: "";
}

.gallery-panel figcaption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 2;
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 250px;
  color: #fff;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 300ms ease 150ms,
    transform 300ms ease 150ms;
}

.gallery-panel.is-active figcaption,
.gallery-panel:hover figcaption,
.gallery-panel:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-panel figcaption span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
}

/* Location and coordinate maps */
.location-section {
  padding-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 35%, rgba(236, 32, 40, 0.11), transparent 28%),
    var(--ink);
  color: #fff;
}

.location-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
  gap: clamp(70px, 10vw, 170px);
}

.location-intro h2 {
  margin-top: 20px;
}

.location-copy {
  align-self: end;
  color: rgba(255, 255, 255, 0.63);
  font-size: clamp(1.06rem, 1.3vw, 1.3rem);
}

.location-copy p {
  margin: 0 0 24px;
}

.location-copy p:last-child {
  margin-bottom: 0;
}

.location-copy strong {
  color: #fff;
}

.map-stack {
  margin-top: clamp(90px, 11vw, 170px);
}

.map-chapter {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: 650px;
  margin-bottom: clamp(64px, 8vw, 120px);
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.035);
}

.map-chapter--reverse {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.map-chapter--reverse .map-copy {
  grid-column: 2;
  grid-row: 1;
}

.map-chapter--reverse .coordinate-map {
  grid-column: 1;
  grid-row: 1;
}

.map-copy {
  position: relative;
  z-index: 3;
  padding: 44px 36px;
  background: #111;
}

.map-copy h3 {
  margin: 18px 0 20px;
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.map-copy > p {
  color: rgba(255, 255, 255, 0.58);
}

.map-destinations {
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.map-destinations li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.map-destinations b {
  font-size: 0.98rem;
  font-weight: 500;
}

.map-destinations em {
  padding: 7px 9px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.coordinate-map {
  position: relative;
  min-width: 0;
  min-height: 650px;
  overflow: hidden;
  background:
    linear-gradient(rgba(246, 243, 237, 0.2), rgba(246, 243, 237, 0.2)),
    url("assets/colline-ii-proximity-v2.png") center / cover;
}

.coordinate-map::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(246, 243, 237, 0.08);
  content: "";
  mix-blend-mode: screen;
}

.map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-tile {
  position: absolute;
  z-index: 0;
  width: 256px;
  height: 256px;
  max-width: none;
  filter: grayscale(1) sepia(0.15) brightness(1.06) contrast(0.82);
}

.map-routes {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-route {
  fill: none;
  stroke: rgba(9, 9, 9, 0.58);
  stroke-dasharray: 7 8;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.map-marker {
  position: absolute;
  z-index: 4;
  display: grid;
  justify-items: center;
  width: max-content;
  max-width: 180px;
  transform: translate(-50%, -50%);
}

.map-marker-dot {
  position: relative;
  width: 15px;
  height: 15px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.map-marker-dot::after {
  position: absolute;
  inset: -11px;
  border: 1px solid rgba(9, 9, 9, 0.42);
  border-radius: 50%;
  content: "";
}

.map-marker-label {
  display: grid;
  justify-items: center;
  margin-top: 16px;
  padding: 8px 10px;
  background: rgba(252, 250, 246, 0.95);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.map-marker-label em {
  margin-top: 4px;
  color: var(--red);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.map-marker--project {
  z-index: 5;
}

.map-marker--project .map-marker-dot {
  width: 28px;
  height: 28px;
  border: 7px solid #fff;
  background: var(--red);
  animation: markerPulse 2.7s ease-out infinite;
}

.map-marker--project .map-marker-dot::after {
  inset: -18px;
  border: 2px solid rgba(236, 32, 40, 0.55);
}

.map-marker--project .map-marker-label {
  background: var(--red);
  color: #fff;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.map-attribution {
  position: absolute;
  right: 6px;
  bottom: 5px;
  z-index: 6;
  padding: 3px 5px;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-size: 0.58rem;
}

.map-note {
  margin: -80px 0 0 auto;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  text-align: right;
}

.amenities-marquee {
  margin-top: clamp(110px, 12vw, 180px);
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.marquee-track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  padding: 28px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.marquee-track i {
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: rotate(45deg);
}

/* Apartments */
.apartments-section {
  background:
    radial-gradient(circle at 0 50%, rgba(236, 32, 40, 0.06), transparent 25%),
    var(--paper);
}

.apartments-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
}

.apartments-heading h2 {
  margin-top: 20px;
}

.apartments-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.28vw, 1.28rem);
}

.apartments-heading > p strong {
  color: var(--ink);
}

.typology-bento {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.typology {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 350ms ease,
    color 350ms ease,
    transform 350ms ease;
}

.typology::before {
  position: absolute;
  right: -50px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.15;
  transform: scale(0.7);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.typology:hover {
  z-index: 2;
  background: var(--red);
  color: #fff;
  transform: translateY(-8px);
}

.typology:hover::before {
  transform: scale(1.15);
}

.typology > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.typology:hover > span {
  color: #fff;
}

.typology h3 {
  margin: 92px 0 0;
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.typology p {
  margin: 20px 0 0;
  color: var(--muted);
}

.typology:hover p {
  color: rgba(255, 255, 255, 0.76);
}

.surface-band {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: end;
  min-height: 260px;
  padding: clamp(32px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.surface-band > span {
  align-self: start;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.surface-band strong {
  color: var(--red);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 650;
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.surface-band strong small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.2em;
  letter-spacing: 0;
}

.surface-band b {
  font-size: 2rem;
}

.prestations-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: 60px;
  margin-top: clamp(100px, 11vw, 170px);
}

.prestations-heading h3 {
  margin: 0;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.prestations-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.prestation {
  min-height: 210px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 300ms ease,
    color 300ms ease;
}

.prestation:hover {
  background: var(--paper-bright);
}

.prestation .material-symbols-outlined {
  color: var(--red);
  font-size: 2.5rem;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.prestation:hover .material-symbols-outlined {
  transform: translateY(-5px) rotate(-5deg);
}

.prestation h4 {
  max-width: 220px;
  margin: 66px 0 0;
  font-size: 1.18rem;
  font-weight: 550;
}

/* Offer */
.offer-section {
  overflow: hidden;
  background: var(--red);
  color: #fff;
}

.offer-orbit {
  position: absolute;
  right: -18vw;
  bottom: -28vw;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  animation: orbitFloat 8s ease-in-out infinite alternate;
}

.offer-orbit::before,
.offer-orbit::after {
  position: absolute;
  inset: 10%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.offer-orbit::after {
  inset: 23%;
}

.offer-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: center;
}

.offer-copy h2 {
  max-width: 900px;
  margin: 20px 0 30px;
  font-size: clamp(3.8rem, 7vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.offer-copy p {
  max-width: 650px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.13rem;
}

.offer-copy p strong {
  color: #fff;
}

.price-card {
  padding: clamp(38px, 4vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(117, 0, 5, 0.18);
  backdrop-filter: blur(10px);
  transition:
    transform 400ms ease,
    background 400ms ease;
}

.price-card:hover {
  background: rgba(117, 0, 5, 0.28);
  transform: translateY(-8px);
}

.price-card > span {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-card strong {
  display: inline-block;
  margin-top: 42px;
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 650;
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.price-card > b {
  margin-left: 10px;
  font-size: 1.4rem;
}

.price-card p {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 44px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

/* About and commitments */
.about-section {
  background: var(--paper-bright);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(60px, 9vw, 145px);
  align-items: center;
}

.about-copy h2 {
  margin-top: 20px;
  font-size: clamp(3.1rem, 5.8vw, 6.5rem);
}

.about-copy > p {
  max-width: 740px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
}

.about-copy > p strong {
  color: var(--ink);
}

.about-image {
  height: min(55vw, 700px);
  min-height: 500px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-image:hover img {
  transform: scale(1.035);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(85px, 10vw, 150px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat {
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: clamp(3.3rem, 5.3vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.stat span {
  display: block;
  max-width: 150px;
  margin-top: 52px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.commitments-block {
  margin-top: clamp(100px, 12vw, 180px);
}

.commitments-heading {
  display: grid;
  grid-template-columns: 280px minmax(0, 850px);
  gap: 60px;
}

.commitments-heading h3 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.commitment {
  min-height: 350px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 320ms ease,
    color 320ms ease;
}

.commitment:hover {
  background: var(--ink);
  color: #fff;
}

.commitment img {
  width: 58px;
  height: 58px;
}

.commitment h4 {
  margin: 100px 0 16px;
  font-size: 1.35rem;
  font-weight: 600;
}

.commitment p {
  margin: 0;
  color: var(--muted);
}

.commitment:hover p {
  color: rgba(255, 255, 255, 0.64);
}

.final-cta {
  padding: clamp(100px, 12vw, 180px) 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58)),
    url("assets/colline-exterior-night-wide.webp") center 42% / cover;
  color: #fff;
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner > p {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 1050px;
  margin: 0 auto 42px;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

/* Preserved footer */
.site-footer {
  padding: 88px clamp(24px, 5vw, 80px) 0;
  background: #090909;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.62fr) minmax(340px, 1fr);
  gap: clamp(42px, 7vw, 100px);
  max-width: 1480px;
  margin: 0 auto;
}

.footer-brand > img {
  width: 180px;
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand strong {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 28px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact address {
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
}

.footer-contact address p {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 0 18px;
}

.footer-contact .material-symbols-outlined {
  color: var(--red);
  font-size: 1.25rem;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--red);
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 1480px;
  margin: 70px auto 46px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  transition:
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.social-links img {
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.footer-bottom p {
  margin: 0;
}

/* Floating contact */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  justify-items: end;
}

.floating-contact[hidden] {
  display: none;
}

.floating-actions {
  display: grid;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.floating-contact.is-open .floating-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-actions a {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 168px;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
}

.floating-actions a + a {
  border-top: 1px solid var(--line);
}

.floating-actions a:hover {
  background: #f1eee8;
}

.whatsapp-mark {
  margin-left: auto;
  color: #24a95b;
  font-size: 1.35rem;
}

#floating-toggle {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 35px rgba(236, 32, 40, 0.34);
  cursor: pointer;
  animation: ctaBreath 3.5s ease-in-out infinite;
}

/* Idle animation */
@keyframes markerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 32, 40, 0.46);
  }
  70% {
    box-shadow: 0 0 0 24px rgba(236, 32, 40, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 32, 40, 0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes orbitFloat {
  to {
    transform: translate(-3vw, -2vw) rotate(5deg);
  }
}

@keyframes ctaBreath {
  50% {
    box-shadow: 0 14px 42px rgba(236, 32, 40, 0.58);
    transform: translateY(-3px);
  }
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --shell: min(1320px, calc(100vw - 56px));
  }

  .site-header {
    grid-template-columns: 180px 1fr 160px;
    padding-inline: 28px;
  }

  .brand {
    width: 145px;
  }

  .primary-navigation {
    gap: 18px;
  }

  .header-cta {
    min-width: 145px;
  }

  .project-heading,
  .location-intro,
  .apartments-heading,
  .about-layout,
  .offer-layout {
    gap: 70px;
  }

  .gallery-story {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .map-chapter {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .map-chapter--reverse {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
  }

  .brand {
    width: 148px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-visible .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-visible .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-visible .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 14px;
    background: rgba(9, 9, 9, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition:
      opacity 250ms ease,
      transform 250ms ease;
  }

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

  .primary-navigation a {
    font-size: clamp(1.7rem, 6vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-bottom: 220px;
  }

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

  .hero-metrics div {
    min-height: 88px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--line-light);
  }

  .project-heading,
  .location-intro,
  .apartments-heading,
  .offer-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .gallery-story {
    grid-template-columns: 1fr;
  }

  .gallery-copy {
    position: static;
    max-width: 680px;
  }

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

  .prestations-heading,
  .commitments-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .map-chapter,
  .map-chapter--reverse {
    grid-template-columns: 1fr;
  }

  .map-chapter--reverse .map-copy,
  .map-chapter--reverse .coordinate-map {
    grid-column: 1;
  }

  .map-chapter--reverse .map-copy {
    grid-row: 1;
  }

  .map-chapter--reverse .coordinate-map {
    grid-row: 2;
  }

  .map-copy {
    padding: 40px;
  }

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

  .map-destinations li:nth-child(odd) {
    padding-right: 22px;
  }

  .map-destinations li:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid var(--line-light);
  }

  .coordinate-map {
    min-height: 560px;
  }

  .map-note {
    margin-top: -78px;
  }

  .about-image {
    height: 70vw;
    min-height: 450px;
  }

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

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

  .commitment {
    min-height: 270px;
  }

  .commitment h4 {
    margin-top: 62px;
  }

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

  .footer-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 36px);
    --chapter-space: 94px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand {
    width: 132px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.2) 78%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent);
  }

  .hero-content {
    align-items: flex-end;
    padding: 120px 0 220px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 16vw, 5.2rem);
    line-height: 0.88;
  }

  .hero-copy h1 span {
    margin-top: 14px;
    font-size: 0.43em;
    line-height: 1.02;
  }

  .hero-copy p {
    margin: 24px 0 28px;
    font-size: 0.98rem;
  }

  .hero-copy .button {
    width: 100%;
  }

  .hero-metrics div {
    gap: 10px;
    min-height: 82px;
    padding: 16px 18px;
  }

  .hero-metrics strong {
    font-size: 2rem;
  }

  .hero-metrics span {
    font-size: 0.7rem;
  }

  .project-heading h2,
  .location-intro h2,
  .apartments-heading h2,
  .about-copy h2 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
    line-height: 0.94;
  }

  .project-copy,
  .location-copy,
  .apartments-heading > p,
  .about-copy > p {
    font-size: 1rem;
  }

  .gallery-story {
    margin-top: 76px;
  }

  .media-accordion {
    display: grid;
    height: auto;
    min-height: 0;
    background: transparent;
  }

  .gallery-panel,
  .gallery-panel.is-active,
  .gallery-panel:hover,
  .gallery-panel:focus-visible {
    flex: none;
    width: 100%;
    height: 78vw;
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--paper-bright);
  }

  .gallery-panel figcaption {
    opacity: 1;
    transform: none;
  }

  .map-stack {
    width: 100%;
  }

  .map-chapter {
    margin-bottom: 56px;
    border-right: 0;
    border-left: 0;
  }

  .map-copy {
    padding: 34px 18px;
  }

  .map-copy h3 {
    font-size: 3rem;
  }

  .map-destinations {
    grid-template-columns: 1fr;
  }

  .map-destinations li:nth-child(odd),
  .map-destinations li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .coordinate-map {
    min-height: 520px;
  }

  .map-marker {
    max-width: 105px;
  }

  .map-marker-label {
    padding: 6px 7px;
    font-size: 0.63rem;
  }

  .map-marker--project .map-marker-label {
    font-size: 0.67rem;
  }

  .map-note {
    margin: 0 18px;
    text-align: left;
  }

  .amenities-marquee {
    margin-top: 88px;
  }

  .typology-bento {
    margin-top: 68px;
  }

  .typology {
    min-height: 210px;
    padding: 22px;
  }

  .typology h3 {
    margin-top: 58px;
    font-size: 4rem;
  }

  .typology p {
    font-size: 0.78rem;
  }

  .surface-band {
    grid-template-columns: 1fr auto;
    min-height: 220px;
    padding: 28px 22px;
  }

  .surface-band > span {
    grid-column: 1 / -1;
  }

  .surface-band strong {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .surface-band b {
    font-size: 1.35rem;
  }

  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 44px;
  }

  .prestation {
    min-height: 180px;
    padding: 22px;
  }

  .prestation h4 {
    margin-top: 42px;
    font-size: 0.95rem;
  }

  .offer-copy h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .offer-copy .button {
    width: 100%;
  }

  .price-card {
    padding: 34px 26px;
  }

  .price-card strong {
    font-size: clamp(5.4rem, 25vw, 8rem);
  }

  .about-image {
    height: 85vw;
    min-height: 330px;
  }

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

  .stat {
    min-height: 165px;
    padding: 22px;
  }

  .stat strong {
    font-size: 3.2rem;
  }

  .stat span {
    margin-top: 30px;
    font-size: 0.74rem;
  }

  .commitment {
    min-height: 260px;
    padding: 30px;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 13.5vw, 4.8rem);
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding: 72px 22px 0;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .footer-brand,
  .footer-contact,
  .footer-map {
    display: grid;
    justify-items: center;
  }

  .footer-brand > img {
    margin-inline: auto;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-contact address {
    display: grid;
    justify-items: center;
  }

  .footer-contact address p {
    justify-content: center;
    max-width: 320px;
  }

  .footer-map {
    grid-column: auto;
    width: 100%;
  }

  .footer-map iframe {
    height: 220px;
  }

  .social-links {
    margin-top: 56px;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
  }

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  #floating-toggle {
    width: 56px;
    height: 56px;
  }
}

/* Stability pass */
.amenities-bar {
  margin-top: clamp(100px, 11vw, 170px);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
}

.amenities-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: var(--shell);
  margin-inline: auto;
  border-left: 1px solid var(--line-light);
}

.amenities-bar__inner span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 20px 14px;
  border-right: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  text-align: center;
  transition:
    background 260ms ease,
    color 260ms ease;
}

.amenities-bar__inner span::after {
  position: absolute;
  right: 25%;
  bottom: -1px;
  left: 25%;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform 260ms ease;
}

.amenities-bar__inner span:hover {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.amenities-bar__inner span:hover::after {
  transform: scaleX(1);
}

.commitment {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.commitment::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(236, 32, 40, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: scale(0.7);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.commitment:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 4px 0 var(--red);
}

.commitment:hover::after {
  transform: scale(1.1);
}

.commitment:hover p {
  color: var(--muted);
}

.commitment:hover img {
  transform: translateY(-5px) scale(1.05);
}

.commitment img {
  transition: transform 350ms ease;
}

.stat {
  position: relative;
  overflow: hidden;
  transition:
    background 300ms ease,
    box-shadow 300ms ease;
}

.stat::after {
  position: absolute;
  right: -72px;
  bottom: -78px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(236, 32, 40, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: statOrbit 7s ease-in-out infinite alternate;
}

.stat:nth-child(2)::after {
  animation-delay: -1.4s;
}

.stat:nth-child(3)::after {
  animation-delay: -2.8s;
}

.stat:nth-child(4)::after {
  animation-delay: -4.2s;
}

.stat strong {
  position: relative;
  z-index: 1;
  transition:
    color 300ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stat:hover {
  background: #fff;
  box-shadow: inset 0 4px 0 var(--red);
}

.stat:hover strong {
  color: var(--red-dark);
  transform: translateY(-7px) scale(1.035);
}

.stat:hover::after {
  border-color: rgba(236, 32, 40, 0.38);
}

@keyframes statOrbit {
  from {
    transform: translate(0, 0) scale(0.88);
  }
  to {
    transform: translate(-16px, -12px) scale(1.08);
  }
}

.lead-shell {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}

.lead-aside,
.lead-form-wrap {
  min-width: 0;
}

.lead-aside {
  z-index: 1;
  padding: clamp(44px, 4.2vw, 64px);
}

.lead-aside h2 {
  max-width: 520px;
  font-size: clamp(2.8rem, 4.3vw, 5rem);
  overflow-wrap: break-word;
}

.lead-benefits {
  margin-top: clamp(56px, 6vw, 88px);
}

.lead-form-wrap {
  position: relative;
  z-index: 2;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

@media (max-width: 980px) {
  .lead-shell {
    grid-template-columns: 1fr;
  }

  .lead-aside {
    padding: 58px;
  }

  .lead-aside h2 {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .map-chapter {
    display: block;
  }

  .map-chapter .map-copy {
    display: block;
    padding: 34px 18px 28px;
  }

  .map-chapter .map-copy > p {
    max-width: 440px;
    margin-bottom: 0;
  }

  .map-chapter .map-destinations {
    display: none;
  }

  .amenities-bar {
    margin-top: 84px;
  }

  .amenities-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .amenities-bar__inner span {
    min-height: 76px;
    border-bottom: 1px solid var(--line-light);
  }

  .amenities-bar__inner span:last-child {
    grid-column: 1 / -1;
  }

  .lead-aside {
    padding: 44px 18px;
  }

  .lead-aside h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
}

/* Final content and image pass */
.hero-media {
  object-position: center;
}

.project-title-block,
.location-title-block {
  min-width: 0;
}

.project-subtitle,
.location-subtitle,
.apartments-subtitle {
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--red);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.location-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.apartments-subtitle {
  margin-top: 24px;
}

.gallery-story {
  display: block;
}

.media-accordion {
  display: flex;
  gap: 16px;
  height: auto;
  min-height: 0;
  padding: 0 0 18px;
  overflow-x: auto;
  overflow-y: hidden;
  background: transparent;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--red) rgba(9, 9, 9, 0.12);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.media-accordion::-webkit-scrollbar {
  height: 7px;
}

.media-accordion::-webkit-scrollbar-track {
  background: rgba(9, 9, 9, 0.1);
}

.media-accordion::-webkit-scrollbar-thumb {
  background: var(--red);
}

.gallery-panel,
.gallery-panel.is-active,
.gallery-panel:hover,
.gallery-panel:focus-visible {
  flex: 0 0 min(76vw, 1040px);
  width: min(76vw, 1040px);
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 0;
  outline: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transform: none;
}

.gallery-panel img {
  filter: saturate(0.88) contrast(1.02);
  transform: scale(1.015);
}

.gallery-panel:hover img,
.gallery-panel:focus-visible img,
.gallery-panel.is-active img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.045);
}

.gallery-panel figcaption,
.gallery-panel.is-active figcaption,
.gallery-panel:hover figcaption,
.gallery-panel:focus-visible figcaption {
  min-width: 0;
  opacity: 1;
  transform: none;
}

.map-copy h3 {
  margin-top: 0;
  font-size: clamp(2.25rem, 3.1vw, 3.65rem);
  line-height: 0.98;
}

.amenities-heading {
  margin-top: clamp(100px, 11vw, 170px);
  text-align: center;
}

.amenities-heading h3 {
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.4rem, 4.6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.amenities-heading + .amenities-bar {
  margin-top: 54px;
}

.offer-copy h2 {
  margin-bottom: 24px;
}

.offer-copy h3 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(1.6rem, 2.4vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

@media (max-width: 980px) {
  .gallery-panel,
  .gallery-panel.is-active,
  .gallery-panel:hover,
  .gallery-panel:focus-visible {
    flex-basis: 82vw;
    width: 82vw;
  }
}

@media (max-width: 680px) {
  .hero-media {
    object-position: 55% center;
  }

  .project-subtitle,
  .location-subtitle,
  .apartments-subtitle {
    margin-top: 20px;
    font-size: 1.22rem;
  }

  .gallery-story {
    width: calc(100vw - 18px);
    margin-left: 18px;
  }

  .media-accordion {
    display: flex;
    gap: 12px;
    padding-right: 18px;
    padding-bottom: 14px;
  }

  .gallery-panel,
  .gallery-panel.is-active,
  .gallery-panel:hover,
  .gallery-panel:focus-visible {
    flex: 0 0 86vw;
    width: 86vw;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border: 0;
  }

  .gallery-panel figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 0.9rem;
  }

  .map-copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .amenities-heading {
    margin-top: 82px;
  }

  .amenities-heading h3 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .amenities-heading + .amenities-bar {
    margin-top: 38px;
  }

  .prestations-grid {
    display: flex;
    gap: 12px;
    margin-top: 44px;
    padding: 0 0 14px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--red) rgba(9, 9, 9, 0.12);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .prestation {
    flex: 0 0 74vw;
    min-height: 210px;
    border: 1px solid var(--line);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .prestation h4 {
    margin-top: 56px;
    font-size: 1.05rem;
  }

  .offer-copy h2 {
    font-size: clamp(3.35rem, 15vw, 5rem);
  }
}

/* Gallery refinement: desktop accordion, mobile carousel */
.gallery-heading {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.gallery-heading > span:first-child {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-swipe-hint,
.gallery-mobile-controls {
  display: none;
}

@media (min-width: 981px) {
  .media-accordion {
    gap: 0;
    height: min(61vw, 720px);
    min-height: 540px;
    padding: 0;
    overflow: hidden;
    background: #d8d4cb;
    scroll-snap-type: none;
    scrollbar-width: none;
  }

  .media-accordion::-webkit-scrollbar {
    display: none;
  }

  .gallery-panel {
    flex: 0.72;
    width: auto;
    height: 100%;
    min-width: 0;
    aspect-ratio: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.38);
    scroll-snap-align: none;
    transition: flex 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .gallery-panel.is-active,
  .gallery-panel:hover,
  .gallery-panel:focus-visible {
    flex: 3.2;
    width: auto;
    height: 100%;
    aspect-ratio: auto;
  }

  .gallery-panel figcaption {
    min-width: 230px;
    opacity: 0;
    transform: translateY(14px);
  }

  .gallery-panel.is-active figcaption,
  .gallery-panel:hover figcaption,
  .gallery-panel:focus-visible figcaption {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 680px) {
  .gallery-heading {
    width: calc(100% - 18px);
    margin-bottom: 18px;
  }

  .gallery-heading > span:first-child {
    font-size: 0.69rem;
  }

  .gallery-swipe-hint {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: var(--muted);
    font-size: 0.69rem;
    white-space: nowrap;
  }

  .gallery-swipe-hint b {
    color: var(--red);
    font-size: 1rem;
    animation: galleryHint 1.8s ease-in-out infinite;
  }

  .gallery-mobile-controls {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 12px;
    align-items: center;
    width: calc(100% - 18px);
    margin-top: 10px;
  }

  .gallery-arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition:
      border-color 200ms ease,
      background 200ms ease,
      color 200ms ease,
      transform 200ms ease;
  }

  .gallery-arrow:active {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
    transform: scale(0.94);
  }

  .gallery-dots {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }

  .gallery-dots button {
    width: 5px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(9, 9, 9, 0.24);
    cursor: pointer;
    transition:
      width 260ms ease,
      background 260ms ease;
  }

  .gallery-dots button.is-active {
    width: 18px;
    background: var(--red);
  }

  .prestation {
    text-align: center;
  }

  .prestation img {
    margin-inline: auto;
  }

  .prestation h4 {
    margin-inline: auto;
  }
}

@keyframes galleryHint {
  50% {
    transform: translateX(5px);
  }
}

/* Hero launch offer CTA */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.hero-offer-cta {
  position: relative;
  display: grid;
  align-content: center;
  min-width: 310px;
  min-height: 56px;
  padding: 10px 58px 10px 18px;
  overflow: hidden;
  border-left: 4px solid var(--red);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  animation: heroOfferBreath 4s ease-in-out infinite;
}

.hero-offer-cta::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42%;
  width: 34%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(236, 32, 40, 0.1),
    transparent
  );
  content: "";
  transform: skewX(-18deg);
  transition: left 600ms ease;
}

.hero-offer-cta:hover,
.hero-offer-cta:focus-visible {
  background: var(--paper-bright);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.hero-offer-cta:hover::after,
.hero-offer-cta:focus-visible::after {
  left: 120%;
}

.hero-offer-cta > span {
  font-size: 0.91rem;
  font-weight: 550;
  line-height: 1.1;
}

.hero-offer-cta strong {
  color: var(--red);
  font-weight: 800;
}

.hero-offer-cta small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-offer-cta > b {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--red);
  font-size: 1.25rem;
  transform: translateY(-50%);
  transition: transform 220ms ease;
}

.hero-offer-cta:hover > b,
.hero-offer-cta:focus-visible > b {
  transform: translate(5px, -50%);
}

@keyframes heroOfferBreath {
  50% {
    box-shadow: 0 18px 42px rgba(236, 32, 40, 0.22);
  }
}

@media (max-width: 680px) {
  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-offer-cta {
    width: 100%;
    min-width: 0;
    min-height: 64px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 3.12rem;
  }

  .hero-metrics span {
    max-width: 88px;
  }

  .typology {
    min-height: 190px;
    padding: 18px;
  }

  .typology h3 {
    font-size: 3.3rem;
  }

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

  .prestation {
    min-height: 150px;
  }

  .map-marker-label {
    max-width: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Requested conversion and lead-generation refinements */
.marquee-track {
  gap: 0;
}

.marquee-group {
  display: flex;
  flex: none;
  gap: 28px;
  align-items: center;
  padding-right: 28px;
}

@media (hover: hover) {
  .marquee-track:hover {
    animation-play-state: paused;
  }
}

.surface-band {
  background: var(--red);
}

.surface-band > span,
.surface-band strong small {
  color: rgba(255, 255, 255, 0.78);
}

.surface-band strong {
  color: #fff;
}

.prestation img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(24%) sepia(99%) saturate(6264%)
    hue-rotate(350deg) brightness(92%) contrast(102%);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.prestation:hover img {
  transform: translateY(-6px) scale(1.08);
}

.price-card {
  position: relative;
  overflow: hidden;
  border-color: #fff;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 72px rgba(83, 0, 4, 0.28);
  animation: priceLift 4.2s ease-in-out infinite;
}

.price-card::before {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(236, 32, 40, 0.16);
  border-radius: 50%;
  content: "";
}

.price-card:hover {
  background: #fff;
  box-shadow: 0 34px 88px rgba(83, 0, 4, 0.4);
}

.price-card > span {
  color: var(--red);
}

.price-card strong {
  color: var(--red);
  text-shadow: 0 12px 28px rgba(236, 32, 40, 0.12);
}

.price-card > b {
  color: var(--ink);
}

.price-card p {
  position: relative;
  border-top-color: var(--line);
  color: var(--ink);
  font-weight: 600;
}

.price-card p .material-symbols-outlined {
  color: var(--red);
}

.lead-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(236, 32, 40, 0.18), transparent 30%),
    var(--ink);
  color: #fff;
}

.lead-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--paper-bright);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.lead-aside {
  position: relative;
  padding: clamp(42px, 5vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(236, 32, 40, 0.14), transparent 52%),
    #111;
  color: #fff;
}

.lead-aside::after {
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(236, 32, 40, 0.34);
  border-radius: 50%;
  content: "";
}

.lead-logo {
  width: 175px;
  margin-bottom: clamp(70px, 8vw, 120px);
  filter: brightness(0) invert(1);
}

.lead-aside h2 {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.lead-aside h2 span {
  color: var(--red);
}

.lead-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: clamp(70px, 8vw, 115px);
  border-top: 1px solid var(--line-light);
}

.lead-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.lead-benefits .material-symbols-outlined {
  color: var(--red);
  font-size: 1.8rem;
}

.lead-benefits h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.lead-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.lead-form-wrap {
  padding: clamp(42px, 6vw, 88px);
  background: var(--paper-bright);
  color: var(--ink);
}

.form-heading {
  margin-bottom: 46px;
}

.form-heading > span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.form-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
}

.form-grid label,
.form-grid fieldset {
  min-width: 0;
}

.form-grid label > span,
.form-grid legend {
  display: block;
  margin-bottom: 9px;
  color: #3e3b37;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(9, 9, 9, 0.24);
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-grid input,
.form-grid select {
  height: 54px;
  padding: 0 15px;
}

.form-grid textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(236, 32, 40, 0.1);
}

.form-grid fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

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

.choice-row label {
  position: relative;
  cursor: pointer;
}

.choice-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-row label > span {
  display: grid;
  place-items: center;
  min-height: 54px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(9, 9, 9, 0.24);
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.choice-row label:hover > span {
  border-color: var(--red);
  transform: translateY(-2px);
}

.choice-row input:checked + span {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.choice-row input:focus-visible + span {
  outline: 3px solid rgba(236, 32, 40, 0.24);
  outline-offset: 2px;
}

.form-grid--full {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
}

.consent + .consent {
  margin-top: 10px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.form-submit {
  width: 100%;
  margin-top: 30px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: 0.87rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #18723b;
}

.form-status.is-error {
  color: var(--red-dark);
}

@keyframes priceLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .lead-shell {
    grid-template-columns: 1fr;
  }

  .lead-logo {
    margin-bottom: 62px;
  }

  .lead-aside h2 {
    max-width: 720px;
  }

  .lead-benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .lead-benefits article {
    grid-template-columns: 1fr;
    align-content: start;
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .map-chapter {
    display: block;
    min-height: 0;
  }

  .map-chapter .map-copy {
    display: none;
  }

  .map-chapter--reverse .coordinate-map {
    grid-row: auto;
  }

  .coordinate-map,
  .coordinate-map--wide {
    min-height: 520px;
  }

  .lead-section {
    padding-block: 82px;
  }

  .lead-shell {
    width: 100%;
    border-right: 0;
    border-left: 0;
  }

  .lead-aside,
  .lead-form-wrap {
    padding: 44px 18px;
  }

  .lead-aside h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .lead-benefits {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 58px;
  }

  .lead-benefits article {
    grid-template-columns: 40px 1fr;
    border-bottom: 1px solid var(--line-light);
  }

  .form-heading {
    margin-bottom: 36px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .form-grid--full {
    grid-column: auto;
  }

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

  .choice-row--two {
    grid-template-columns: 1fr;
  }

  .price-card {
    animation-duration: 5s;
  }
}

/* Final cascade guards for the contact and mobile map layouts */
.lead-shell {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}

.lead-aside,
.lead-form-wrap {
  min-width: 0;
}

.lead-aside {
  z-index: 1;
  padding: clamp(44px, 4.2vw, 64px);
}

.lead-aside h2 {
  max-width: 520px;
  font-size: clamp(2.8rem, 4.3vw, 5rem);
  overflow-wrap: break-word;
}

.lead-benefits {
  margin-top: clamp(56px, 6vw, 88px);
}

.lead-form-wrap {
  position: relative;
  z-index: 2;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

@media (max-width: 980px) {
  .lead-shell {
    grid-template-columns: 1fr;
  }

  .lead-aside {
    padding: 58px;
  }

  .lead-aside h2 {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .map-chapter {
    display: block;
  }

  .map-chapter .map-copy {
    display: block;
    padding: 34px 18px 28px;
  }

  .map-chapter .map-copy > p {
    max-width: 440px;
    margin-bottom: 0;
  }

  .map-chapter .map-destinations {
    display: none;
  }

  .lead-aside {
    padding: 44px 18px;
  }

  .lead-aside h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
}

/* Absolute final gallery and carousel state */
.prestation-mobile-dots {
  display: none;
}

@media (min-width: 981px) {
  .media-accordion .gallery-panel {
    flex: 0.24;
    background: #0d0d0d;
  }

  .media-accordion .gallery-panel.is-active,
  .media-accordion .gallery-panel:hover,
  .media-accordion .gallery-panel:focus-visible {
    flex: 11;
  }

  .media-accordion .gallery-panel.is-active img,
  .media-accordion .gallery-panel:hover img,
  .media-accordion .gallery-panel:focus-visible img {
    object-fit: contain;
    background: #0d0d0d;
    filter: saturate(1) contrast(1.01);
    transform: scale(1);
  }

  .media-accordion .gallery-panel.is-active::after,
  .media-accordion .gallery-panel:hover::after,
  .media-accordion .gallery-panel:focus-visible::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 32%);
  }
}

@media (max-width: 680px) {
  .gallery-mobile-controls {
    display: flex;
    justify-content: center;
  }

  .prestation-mobile-dots {
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
  }

  .prestation-mobile-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(9, 9, 9, 0.24);
    cursor: pointer;
    transition:
      width 260ms ease,
      background 260ms ease;
  }

  .prestation-mobile-dots button.is-active {
    width: 22px;
    background: var(--red);
  }
}

/* Premium desktop gallery stage */
.gallery-desktop-controls {
  display: none;
}

@media (min-width: 981px) {
  .media-accordion {
    display: flex;
    gap: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    background: var(--paper-bright);
    box-shadow: 0 28px 80px rgba(9, 9, 9, 0.12);
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .media-accordion::-webkit-scrollbar {
    display: none;
  }

  .media-accordion .gallery-panel,
  .media-accordion .gallery-panel.is-active,
  .media-accordion .gallery-panel:hover,
  .media-accordion .gallery-panel:focus-visible {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    min-width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: var(--paper-bright);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .media-accordion .gallery-panel img,
  .media-accordion .gallery-panel.is-active img,
  .media-accordion .gallery-panel:hover img,
  .media-accordion .gallery-panel:focus-visible img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    filter: saturate(0.94) contrast(1.02);
    transform: scale(1);
    transition:
      filter 500ms ease,
      transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .media-accordion .gallery-panel:hover img,
  .media-accordion .gallery-panel:focus-visible img {
    filter: saturate(1) contrast(1.02);
    transform: scale(1.012);
  }

  .media-accordion .gallery-panel::after,
  .media-accordion .gallery-panel.is-active::after,
  .media-accordion .gallery-panel:hover::after,
  .media-accordion .gallery-panel:focus-visible::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 30%);
  }

  .media-accordion .gallery-panel figcaption,
  .media-accordion .gallery-panel.is-active figcaption,
  .media-accordion .gallery-panel:hover figcaption,
  .media-accordion .gallery-panel:focus-visible figcaption {
    right: 34px;
    bottom: 30px;
    left: 34px;
    min-width: 0;
    font-size: 1.08rem;
    opacity: 1;
    transform: none;
  }

  .gallery-desktop-controls {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-top: 20px;
  }

  .gallery-counter {
    display: flex;
    gap: 7px;
    align-items: baseline;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .gallery-counter strong {
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.04em;
  }

  .gallery-thumbnails {
    display: flex;
    gap: 8px;
    min-width: 0;
    padding: 2px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .gallery-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumbnails button {
    position: relative;
    flex: 0 0 92px;
    height: 56px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    background: #d8d4cb;
    cursor: pointer;
    opacity: 0.52;
    transition:
      border-color 220ms ease,
      opacity 220ms ease,
      transform 220ms ease;
  }

  .gallery-thumbnails button:hover,
  .gallery-thumbnails button:focus-visible,
  .gallery-thumbnails button.is-active {
    border-color: var(--red);
    opacity: 1;
    outline: none;
    transform: translateY(-2px);
  }

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

  .gallery-desktop-arrows {
    display: flex;
    gap: 8px;
  }

  .gallery-desktop-arrows button {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 1.15rem;
    cursor: pointer;
    transition:
      border-color 220ms ease,
      background 220ms ease,
      color 220ms ease,
      transform 220ms ease;
  }

.gallery-desktop-arrows button:hover,
.gallery-desktop-arrows button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}
}

/* Light-theme refinement */
.site-header.is-scrolled:not(.menu-visible) {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(9, 9, 9, 0.08);
  box-shadow: 0 12px 38px rgba(9, 9, 9, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
}

.site-header.is-scrolled:not(.menu-visible) .brand img {
  filter: none;
}

.site-header.menu-visible {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.site-header.menu-visible .brand img {
  filter: brightness(0) invert(1);
}

.hero-metrics {
  background: transparent;
  border-top-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero-metrics > div {
  background: transparent;
}

.hero-metrics strong,
.hero-metrics span {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.location-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(236, 32, 40, 0.07), transparent 28%),
    radial-gradient(circle at 92% 66%, rgba(190, 160, 118, 0.09), transparent 30%),
    var(--paper-bright);
}

.location-subtitle,
.location-copy strong {
  color: var(--ink);
}

.location-subtitle {
  color: var(--red);
}

.location-copy,
.map-copy > p,
.map-note {
  color: var(--muted);
}

.map-chapter {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 28px 80px rgba(17, 15, 13, 0.08);
}

.map-copy {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.map-destinations,
.map-destinations li {
  border-color: var(--line);
}

.amenities-heading h3 {
  color: var(--ink);
}

.amenities-bar {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
  box-shadow: 0 20px 60px rgba(17, 15, 13, 0.06);
}

.amenities-bar__inner,
.amenities-bar__inner span {
  border-color: var(--line);
}

.amenities-bar__inner span {
  color: var(--muted);
}

.amenities-bar__inner span:hover {
  color: var(--ink);
  background: #fff;
}

.offer-layout {
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.58fr);
  grid-template-areas:
    "copy price"
    "description price"
    "cta price";
  column-gap: clamp(48px, 7vw, 120px);
  row-gap: 28px;
  align-items: start;
}

.offer-copy {
  grid-area: copy;
}

.offer-copy h2 {
  margin: 0 0 28px;
}

.offer-copy h3 {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.35;
}

.price-card {
  grid-area: price;
  align-self: center;
}

.offer-description {
  grid-area: description;
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.offer-cta {
  grid-area: cta;
  justify-self: start;
}

.lead-section {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(236, 32, 40, 0.045), transparent 44%),
    var(--paper);
}

.lead-shell {
  border-color: var(--line);
  box-shadow: 0 32px 90px rgba(17, 15, 13, 0.1);
}

.lead-aside {
  color: var(--ink);
  background: #fff;
}

.lead-aside::after,
.lead-benefits,
.lead-benefits article {
  border-color: var(--line);
}

.lead-aside .eyebrow--light {
  color: var(--red);
}

.lead-benefits p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .map-destinations,
  .map-destinations li {
    border-color: var(--line);
  }
}

@media (max-width: 680px) {
  .hero-metrics {
    background: transparent;
  }

  .amenities-heading {
    text-align: left;
  }

  .amenities-heading h3 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .prestations-grid {
    gap: 8px;
  }

  .prestation {
    flex: 0 0 min(48vw, 190px);
    min-height: 150px;
    padding: 18px 14px;
  }

  .prestation img {
    width: 42px;
    height: 42px;
  }

  .prestation h4 {
    margin-top: 24px;
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .prestation-mobile-dots {
    margin-top: 10px;
  }

  .offer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "price"
      "description"
      "cta";
    gap: 30px;
  }

  .offer-copy h2 {
    margin-bottom: 20px;
  }

  .offer-copy h3 {
    font-size: 1.08rem;
  }

  .offer-description {
    font-size: 1rem;
  }

  .offer-cta {
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
  }

  .lead-section {
    padding-block: 72px;
  }

  .lead-shell {
    display: block;
  }

  .lead-aside {
    display: none;
  }
}

/* La Colline II signature typography */
.hero-copy h1 {
  font-family: "Allura", cursive;
  font-size: clamp(5.8rem, 10vw, 10.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.72;
  text-transform: none;
}

.hero-copy h1 span {
  margin-top: 34px;
  font-family: "Outfit", sans-serif;
  font-size: 0.34em;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.project-heading h2 strong {
  display: inline-block;
  margin-left: 0.08em;
  font-family: "Allura", cursive;
  font-size: 1.42em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.62;
  text-transform: none;
  vertical-align: -0.08em;
}

.project-subtitle {
  margin-top: 42px;
  font-family: "Allura", cursive;
  font-size: clamp(2.55rem, 4.4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

@media (max-width: 680px) {
  .hero-copy h1 {
    font-size: clamp(4.6rem, 23vw, 7rem);
    line-height: 0.75;
  }

  .hero-copy h1 span {
    margin-top: 26px;
    font-size: 0.31em;
    line-height: 1.02;
  }

  .project-heading h2 strong {
    display: block;
    margin: 0.16em 0 0;
    font-size: 1.55em;
    line-height: 0.65;
    vertical-align: baseline;
  }

  .project-subtitle {
    margin-top: 34px;
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }
}

/* Final hierarchy and content simplification */
.hero-copy h1 {
  color: var(--red);
}

.hero-copy h1 span {
  color: #fff;
}

.project-subtitle {
  margin-top: 28px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

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

.hero-metrics > div {
  justify-content: center;
}

.hero-metric-combined {
  gap: clamp(10px, 1.4vw, 24px);
}

.hero-metric-combined > i {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-style: normal;
  font-weight: 400;
}

.hero-metric-combined .metric-unit {
  display: grid;
  gap: 4px;
  justify-items: center;
  max-width: none;
  text-align: center;
}

.hero-metric-combined .metric-unit strong {
  color: var(--red);
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.hero-metric-combined .metric-unit > span {
  max-width: none;
  color: rgba(255, 255, 255, 0.7);
}

.location-intro {
  grid-template-columns: minmax(0, 1100px);
}

.map-copy > p strong {
  color: var(--ink);
  font-weight: 700;
}

.apartments-heading {
  grid-template-columns: minmax(0, 1100px);
}

.surface-band {
  grid-template-columns: 1fr auto auto;
  min-height: 150px;
  padding: clamp(26px, 3.5vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.surface-band > span {
  color: var(--muted);
}

.surface-band strong {
  color: var(--ink);
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  font-weight: 550;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.surface-band strong small {
  color: var(--muted);
}

.surface-band b {
  color: var(--red);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.offer-copy h3 strong,
.offer-description strong {
  color: #fff;
  font-weight: 700;
}

.about-section {
  position: relative;
  background:
    linear-gradient(
      110deg,
      rgba(252, 250, 246, 0.97) 0%,
      rgba(252, 250, 246, 0.9) 52%,
      rgba(252, 250, 246, 0.82) 100%
    ),
    url("assets/colline-exterior-angle.webp") center 30% / cover no-repeat;
}

.about-layout {
  grid-template-columns: minmax(0, 940px);
}

.about-copy {
  max-width: 940px;
}

@media (max-width: 680px) {
  .hero-metrics {
    grid-template-columns: 0.78fr 0.88fr 1.34fr;
  }

  .hero-metrics > div {
    min-width: 0;
    padding: 13px 8px;
  }

  .hero-metrics > div:not(.hero-metric-combined) {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .hero-metric-combined {
    gap: 6px;
  }

  .hero-metric-combined .metric-unit {
    gap: 2px;
  }

  .hero-metric-combined .metric-unit strong {
    font-size: 1.75rem;
  }

  .hero-metric-combined .metric-unit > span {
    font-size: 0.62rem;
  }

  .hero-metric-combined > i {
    font-size: 1rem;
  }

  .project-subtitle {
    margin-top: 26px;
    font-size: 1.25rem;
  }

  .map-copy h3,
  .amenities-heading {
    display: none;
  }

  .map-chapter .map-copy {
    padding-top: 28px;
  }

  .surface-band {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 118px;
    padding: 24px 18px;
  }

  .surface-band > span {
    grid-column: 1 / -1;
  }

  .surface-band strong {
    font-size: clamp(3.2rem, 16vw, 4.5rem);
  }

  .about-section {
    background:
      linear-gradient(rgba(252, 250, 246, 0.92), rgba(252, 250, 246, 0.94)),
      url("assets/colline-exterior-angle.webp") 58% center / cover no-repeat;
  }
}

/* Neutral contrast pass and compact mobile chapter transition */
.hero-copy h1 {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(3.8rem, 7.5vw, 8.1rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.location-intro h2 strong {
  color: var(--red);
  font-weight: 600;
}

.hero-metric-combined {
  gap: 10px;
}

.offer-section {
  background: var(--ink);
}

.button--primary,
.header-cta,
#floating-toggle {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 36px rgba(9, 9, 9, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  background: #fff;
  color: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(9, 9, 9, 0.22),
    0 18px 44px rgba(9, 9, 9, 0.18);
}

.map-destinations em,
.map-marker--project .map-marker-label,
.choice-row input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.typology:hover {
  background: var(--ink);
  color: #fff;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--ink-soft);
  border-color: rgba(255, 255, 255, 0.42);
}

.gallery-arrow:active,
.gallery-desktop-arrows button:hover,
.gallery-desktop-arrows button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

@media (max-width: 680px) {
  .hero-copy h1 {
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(3.2rem, 16vw, 5.2rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.9;
  }

  .project-intro {
    padding-bottom: 42px;
  }

  .location-section {
    padding-top: 48px;
  }

  .location-intro h2 {
    margin-bottom: 0;
  }

  .hero-metric-combined {
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .hero-metric-combined strong {
    font-size: 1.8rem;
  }

  .hero-metric-combined > span {
    max-width: 100px;
    font-size: 0.62rem;
  }
}

/* Restore brand-red actions; remove only the red ambient fades */
.project-intro {
  background:
    radial-gradient(circle at 100% 10%, rgba(9, 9, 9, 0.035), transparent 28%),
    var(--paper-bright);
}

.location-section {
  background:
    radial-gradient(circle at 8% 14%, rgba(9, 9, 9, 0.035), transparent 28%),
    radial-gradient(circle at 92% 66%, rgba(190, 160, 118, 0.08), transparent 30%),
    var(--paper-bright);
}

.apartments-section {
  background:
    radial-gradient(circle at 0 50%, rgba(9, 9, 9, 0.03), transparent 25%),
    var(--paper);
}

.lead-section {
  background:
    linear-gradient(135deg, rgba(9, 9, 9, 0.025), transparent 44%),
    var(--paper);
}

.offer-section {
  background: var(--red);
}

.button--primary,
.header-cta,
#floating-toggle {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 36px rgba(236, 32, 40, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  background: var(--red-dark);
  color: #fff;
  box-shadow: 0 18px 44px rgba(236, 32, 40, 0.34);
}

.map-destinations em,
.map-marker--project .map-marker-label,
.choice-row input:checked + span {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.typology:hover {
  background: var(--red);
  color: #fff;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.gallery-arrow:active,
.gallery-desktop-arrows button:hover,
.gallery-desktop-arrows button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

/* Restore La Colline II titles to the normal font */
.hero-copy h1,
.project-heading h2 strong {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: none;
}

/* Hero title sizing */
.hero-copy h1 {
  color: #fff;
  font-size: clamp(3.8rem, 7.5vw, 8.1rem);
}

/* La Colline II inside the discovery title */
.project-heading h2 strong {
  display: inline;
  margin: 0;
  font-size: inherit;
  vertical-align: baseline;
}

@media (max-width: 680px) {
  .hero-copy h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .project-heading h2 strong {
    display: inline;
    margin: 0;
    font-size: inherit;
  }
}

/* Complete launch-offer artwork */
.price-card {
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 30px 80px rgba(83, 0, 4, 0.34);
  animation: none;
  transition:
    transform 400ms ease,
    box-shadow 400ms ease;
}

.price-card::before {
  display: none;
}

.price-card:hover {
  background: transparent;
  box-shadow: 0 36px 92px rgba(83, 0, 4, 0.44);
  transform: translateY(-8px);
}

.price-card__artwork {
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background: #d9d6d1;
}

.price-card__artwork img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.price-card:hover .price-card__artwork img {
  transform: scale(1.015);
}

@media (max-width: 680px) {
  .offer-section {
    padding-block: 72px;
  }

  .price-card {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    border-radius: 20px;
    animation: none;
  }

  .price-card:hover {
    transform: none;
  }
}
