:root {
  --cream: #f2eee6;
  --paper: #fffdf8;
  --ink: #171816;
  --orange: #ff5a36;
  --blue: #5078c8;
  --acid: #d8ef54;
  --line: rgba(23, 24, 22, 0.18);
  --serif: "DM Serif Display", serif;
  --sans: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nodo-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
  padding: 0 3vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 21, 19, 0.92);
  color: #fff;
  backdrop-filter: blur(16px);
}

.nodo-logo {
  width: max-content;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.nodo-logo span {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.nodo-logo small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nodo-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nodo-nav a,
.nodo-back {
  font-size: 12px;
  font-weight: 700;
}

.nodo-nav a {
  position: relative;
}

.nodo-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nodo-nav a:hover::after {
  transform: scaleX(1);
}

.nodo-back {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

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

.nodo-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 43% 57%;
  padding-top: 78px;
  background: var(--cream);
}

.hero-copy {
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw 4.3vw 4vw;
}

.concept-badge,
.eyebrow {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.concept-badge {
  width: max-content;
  padding: 9px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.hero-copy h1 {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: clamp(64px, 7.7vw, 126px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.hero-copy h1 em {
  display: block;
  color: var(--orange);
  font-weight: inherit;
}

.hero-intro {
  max-width: 530px;
  margin-top: 34px;
  font-size: 18px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}

.primary-action,
.availability-button,
.footer-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.primary-action:hover,
.availability-button:hover,
.footer-primary:hover {
  background: var(--orange);
}

.text-action {
  font-size: 12px;
  font-weight: 800;
}

.text-action span {
  color: var(--orange);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  padding-right: 22px;
}

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

.hero-proof strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.hero-proof span {
  margin-top: 3px;
  color: #60645e;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
}

.hero-media > img {
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(365px, calc(100% - 68px));
  padding: 25px;
  border-radius: 16px;
  background: var(--acid);
  color: var(--ink);
}

.hero-card span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 11px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
}

.hero-card p {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
}

.hero-card a {
  display: inline-block;
  margin-top: 19px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
}

.vertical-stamp {
  position: absolute;
  top: 40%;
  left: 18px;
  padding: 10px 7px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.availability-strip {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 30px 3.5vw;
  background: var(--ink);
  color: #fff;
}

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

.availability-title span {
  color: rgba(255, 255, 255, 0.53);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.availability-title strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.availability-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.space-filter {
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
}

.space-filter.is-active {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.availability-result span {
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-result strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.availability-result p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
}

.availability-button {
  min-height: 44px;
  background: #fff;
  color: var(--ink);
  white-space: nowrap;
}

.spaces-section {
  padding: 125px 3.5vw;
  background: var(--paper);
}

.spaces-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.2fr 0.75fr;
  align-items: end;
  gap: 55px;
}

.spaces-heading h2,
.benefits-content h2,
.locations-top h2,
.concept-footer h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.spaces-heading > p:last-child,
.locations-top > p {
  color: #60645e;
  font-size: 15px;
}

.spaces-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 68px;
}

.space-product {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  padding: 25px;
}

.space-product-orange {
  background: var(--orange);
  color: #fff;
}

.space-product-dark {
  background: var(--ink);
  color: #fff;
}

.space-product-blue {
  background: var(--blue);
  color: #fff;
}

.product-number {
  font-size: 10px;
  font-weight: 800;
}

.product-copy {
  position: relative;
  z-index: 2;
  padding: 45px 4px 26px;
}

.product-copy p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 0.96;
}

.product-copy span {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.space-product img {
  height: 320px;
  margin-top: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.space-product:hover img {
  transform: scale(1.03);
}

.space-product > a {
  position: absolute;
  right: 38px;
  bottom: 38px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
}

.benefits-section {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 820px;
  background: var(--cream);
}

.benefits-image {
  position: relative;
}

.benefits-image > img {
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 17px 20px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(12px);
}

.image-caption span,
.image-caption strong {
  font-size: 10px;
}

.image-caption span {
  color: #636760;
}

.benefits-content {
  align-self: center;
  padding: 80px 6vw;
}

.benefits-content h2 {
  margin-top: 22px;
  max-width: 720px;
}

.benefits-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.benefits-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.benefits-list > article > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.benefits-list h3 {
  font-size: 15px;
}

.benefits-list p {
  max-width: 580px;
  margin-top: 5px;
  color: #636760;
  font-size: 13px;
}

.locations-section {
  padding: 125px 3.5vw;
  background: var(--paper);
}

.locations-top {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr;
  align-items: end;
  gap: 85px;
}

.locations-top h2 {
  max-width: 880px;
  margin-top: 20px;
}

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

.location-tab {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.location-tab span {
  color: var(--orange);
  font-size: 10px;
}

.location-tab.is-active {
  background: var(--ink);
  color: #fff;
}

.location-showcase {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 610px;
}

.location-photo img {
  height: 100%;
  object-fit: cover;
}

.location-info {
  display: flex;
  flex-direction: column;
  padding: 60px 48px;
  background: var(--orange);
  color: #fff;
}

.location-info > p:first-child {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-info h3 {
  margin-top: 17px;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 63px);
  font-weight: 400;
  line-height: 0.98;
}

.location-info > p:nth-of-type(2) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 14px;
}

.location-info dl {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
}

.location-info dl div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  font-size: 11px;
}

.location-info dt {
  color: rgba(255, 255, 255, 0.58);
}

.location-info dd {
  text-align: right;
}

.location-info > a {
  width: max-content;
  margin-top: 27px;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
  font-size: 12px;
  font-weight: 800;
}

.concept-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  padding: 110px 4vw;
  background: var(--blue);
  color: #fff;
}

.concept-footer-copy > span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.concept-footer h2 {
  max-width: 900px;
  margin-top: 20px;
}

.concept-footer-actions {
  align-self: end;
}

.concept-footer-actions p {
  color: rgba(255, 255, 255, 0.77);
  font-size: 14px;
}

.footer-primary {
  width: max-content;
  margin-top: 28px;
  background: var(--acid);
  color: var(--ink);
}

.footer-back {
  display: block;
  width: max-content;
  margin-top: 19px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .nodo-header {
    grid-template-columns: 1fr auto;
  }

  .nodo-nav {
    display: none;
  }

  .nodo-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding: 130px 6vw 65px;
  }

  .hero-proof {
    margin-top: 55px;
  }

  .hero-media {
    min-height: 650px;
  }

  .availability-strip {
    grid-template-columns: 1fr 1.5fr;
  }

  .availability-button {
    justify-self: start;
  }

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

  .spaces-rail {
    grid-template-columns: 1fr;
  }

  .space-product {
    min-height: 570px;
  }

  .benefits-section {
    grid-template-columns: 1fr;
  }

  .benefits-image {
    min-height: 620px;
  }

  .locations-top,
  .concept-footer {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .location-photo {
    min-height: 560px;
  }
}

@media (max-width: 650px) {
  .nodo-header {
    padding: 0 17px;
  }

  .nodo-logo small {
    display: none;
  }

  .nodo-back {
    padding: 10px 12px;
    font-size: 0;
  }

  .nodo-back span {
    font-size: 17px;
  }

  .hero-copy {
    padding: 120px 20px 55px;
  }

  .hero-copy h1 {
    font-size: 60px;
  }

  .hero-proof {
    gap: 12px;
  }

  .hero-proof strong {
    font-size: 25px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-card {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }

  .availability-strip {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .spaces-section,
  .locations-section {
    padding: 82px 20px;
  }

  .spaces-heading h2,
  .benefits-content h2,
  .locations-top h2,
  .concept-footer h2 {
    font-size: 48px;
  }

  .space-product {
    min-height: 525px;
  }

  .benefits-image {
    min-height: 470px;
  }

  .benefits-content {
    padding: 70px 20px;
  }

  .image-caption {
    right: 15px;
    bottom: 15px;
    left: 15px;
    flex-direction: column;
    gap: 3px;
    border-radius: 13px;
  }

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

  .location-tab {
    min-height: 66px;
  }

  .location-photo {
    min-height: 380px;
  }

  .location-info {
    padding: 45px 25px;
  }

  .concept-footer {
    padding: 80px 20px;
  }
}
