.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  background: transparent;
  color: var(--white);
  transition:
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.header.scrolled {
  background: var(--white);
  color: var(--dark-grey-charcoal);
  box-shadow: 0 1px 0 rgba(55, 48, 49, 0.1);
}

.brand-logo {
  height: 45px;
  width: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav a {
  color: inherit;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.nav a:hover {
  opacity: 0.65;
}

.header-cta {
  justify-self: end;
  padding: 12px 21px;
  border: 1px solid var(--white);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  background: transparent;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.header.scrolled .header-cta {
  border-color: var(--dark-grey-charcoal);
  color: var(--dark-grey-charcoal);
}

.header.scrolled .header-cta:hover {
  border-color: var(--dark-grey-charcoal);
  background: var(--dark-grey-charcoal);
  color: var(--white);
}

.header-cta:hover {
  background: var(--light-beige);
  border-color: var(--light-beige);
  color: var(--dark-grey-charcoal);
}

.header-cta:focus-visible,
.nav a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .header {
    height: 72px;
    padding: 0 20px;
  }

  .brand-logo {
    width: 100px;
    height: auto;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: var(--font-small);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-selector {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.header.scrolled .language-trigger {
  color: var(--dark-grey-charcoal);
}

.language-flag {
  width: 18px;
  height: 13px;
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
}

.language-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.language-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.language-chevron.open {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 200;
  top: calc(100% + 14px);
  right: 0;
  width: 86px;
  padding: 6px 0;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.language-option {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--dark-grey-charcoal);
  font-family: var(--font-display);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1;
  text-align: left;
}

.language-option:hover,
.language-option.active {
  background: var(--light-beige);
}

.language-code {
  font-family: var(--font-display);
  font-size: var(--font-small);
  font-weight: 400;
}

@media (max-width: 760px) {
  .header-actions {
    gap: 12px;
  }

  .language-menu {
    right: 0;
  }
}.site-footer {
  color: var(--light-beige);
}

/* SIGNATURE */

.footer-top {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px var(--page-padding) 0px;
  background: var(--grey-charcoal);
}

.footer-signature {
  width: min(330px, 42vw);
  height: auto;
}

/* NAVIGATION BAND */

.footer-navigation {
  width: 100%;
  padding: 56px var(--page-padding);
  background: var(--grey-charcoal);
}

.footer-columns {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-menu,
.footer-secondary-menu,
.footer-socials,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-menu a,
.footer-secondary-menu a,
.footer-socials a,
.footer-contact a,
.footer-socials span,
.footer-contact span {
  color: var(--light-beige);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
}

.footer-menu a,
.footer-secondary-menu a,
.footer-socials a,
.footer-contact a {
  transition: opacity var(--transition);
}

.footer-menu a:hover,
.footer-secondary-menu a:hover,
.footer-socials a:hover,
.footer-contact a:hover {
  opacity: 0.65;
}

.footer-menu a:focus-visible,
.footer-secondary-menu a:focus-visible,
.footer-socials a:focus-visible,
.footer-contact a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.footer-contact-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  font-family: var(--font-body);
}

/* LOWER LEGAL BAND */

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 18px var(--page-padding);
  background: var(--dark-grey-charcoal);
}

.footer-brand {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  margin: 0 0 8px;
  color: var(--light-beige);
  font-family: var(--font-body);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1.4;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-family: var(--font-body);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1.4;
}

.footer-legal-links span,
.footer-legal-links a {
  color: var(--light-beige);
}

.footer-legal-links a {
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-legal-links a:hover {
  opacity: 0.65;
}

/* ---------------------------------
   TABLET
---------------------------------- */

@media (max-width: 1100px) {
  .footer-top {
    min-height: 190px;
  }

  .footer-signature {
    width: min(300px, 40vw);
  }

  .footer-navigation {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-columns {
    gap: 40px;
  }

  .footer-legal-links {
    gap: 16px;
  }
}

/* ---------------------------------
   MOBILE
---------------------------------- */

@media (max-width: 760px) {
  .footer-top {
    min-height: 150px;
    padding: 36px 22px;
  }

  .footer-signature {
    width: min(270px, 70vw);
  }

  .footer-navigation {
    padding: 42px 22px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-menu,
  .footer-secondary-menu,
  .footer-contact-column,
  .footer-socials,
  .footer-contact {
    align-items: flex-start;
  }

  .footer-bottom {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    padding: 24px 22px;
  }

  .footer-brand {
    width: 110px;
  }

  .footer-legal {
    width: 100%;
    text-align: left;
  }

  .footer-legal p {
    margin-bottom: 10px;
  }

  .footer-legal-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
}.home {
  width: 100%;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--light-beige);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-section {
  position: relative;
  width: 100%;
}

/* ---------------------------------
   WELCOME
---------------------------------- */

.welcome-section {
  min-height: 550px;
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--white);
}

.welcome-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 76px 54px 70px;
}

.welcome-eyebrow {
  margin: 0 0 22px;
  color: var(--grey-charcoal);
  font-family: var(--font-display);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
}

.welcome-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--dark-grey-charcoal);
}

.welcome-description {
  max-width: 440px;
  margin: 34px 0 0;
  color: var(--dark-grey-charcoal);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.7;
}

.welcome-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.welcome-button {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--dark-grey-charcoal);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--dark-grey-charcoal);
  font-family: var(--font-display);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.welcome-button:hover {
  background: var(--dark-grey-charcoal);
  border-color: var(--dark-grey-charcoal);
  color: var(--light-beige);
}

.welcome-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.welcome-image {
  margin: 50px 5vw 50px 0;
  overflow: hidden;
  background: var(--light-beige);
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------------
   WELCOME — MOBILE
---------------------------------- */

@media (max-width: 760px) {
  .welcome-section {
    grid-template-columns: 1fr;
  }

  .welcome-copy {
    padding: 55px 22px;
  }

  .welcome-actions {
    align-items: flex-start;
  }

  .welcome-image {
    min-height: 380px;
    margin: 0;
  }
}

/* ---------------------------------
   AMENITIES
---------------------------------- */

.amenities-section {
  padding: 50px var(--page-padding) 105px;
  background: var(--white);
}

.amenities-title {
  margin: 0 0 42px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--dark-grey-charcoal);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.amenity-card {
  min-width: 0;
}

.amenity-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 21px;
  overflow: hidden;
  background: var(--light-beige);
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.amenity-eyebrow {
  margin: 0 0 10px;
  color: var(--grey-charcoal);
  font-family: var(--font-display);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
}

.amenity-content h3 {
  margin: 0;
  color: var(--dark-grey-charcoal);
  font-family: var(--font-display);
  font-weight: 400;
}

.amenity-description {
  max-width: 390px;
  margin: 11px 0 0;
  color: var(--dark-grey-charcoal);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 45px;
  }
}

@media (max-width: 760px) {
  .amenities-section {
    padding: 60px 22px 75px;
  }

  .amenities-title {
    margin-bottom: 30px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amenity-image {
    margin-bottom: 17px;
  }
}

/* ---------------------------------
   THE PROJECT
---------------------------------- */

.project-section {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 70px;
  padding: 90px var(--page-padding) 95px;
  background: var(--light-beige);
}

.project-copy {
  min-width: 0;
}

.project-eyebrow {
  margin: 0 0 22px;
  color: var(--grey-charcoal);
  font-family: var(--font-display);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
}

.project-copy h2 {
  margin: 0;
  color: var(--dark-grey-charcoal);
  font-family: var(--font-display);
  font-weight: 400;
}

.project-text {
  max-width: 720px;
  margin-top: 34px;
}

.project-text p {
  margin: 0;
  color: var(--dark-grey-charcoal);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.7;
}

.project-text p + p {
  margin-top: 18px;
}

/* ---------------------------------
   PROJECT STATS
---------------------------------- */

.project-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  border-top: 1px solid rgba(55, 48, 49, 0.22);
}

.project-stat {
  min-width: 0;
  padding: 26px 24px 32px 0;
  border-right: 1px solid rgba(55, 48, 49, 0.22);
  border-bottom: 1px solid rgba(55, 48, 49, 0.22);
}

.project-stat:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-right: 0;
}

.project-stat:nth-child(3),
.project-stat:nth-child(4) {
  padding-top: 32px;
  border-bottom: 0;
}

.project-stat-value {
  margin: 0;
  color: var(--dark-grey-charcoal);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

.project-stat-label {
  display: block;
  margin-top: 10px;
  color: var(--grey-charcoal);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.4;
}

/* ---------------------------------
   PROJECT — MOBILE
---------------------------------- */

@media (max-width: 760px) {
  .project-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 22px 65px;
  }

  .project-copy {
    order: 1;
  }

  .project-stats {
    order: 2;
  }

  .project-text {
    margin-top: 28px;
  }

  .project-stat {
    padding: 22px 18px 22px 0;
  }

  .project-stat:nth-child(even) {
    padding-right: 0;
    padding-left: 18px;
  }

  .project-stat:nth-child(3),
  .project-stat:nth-child(4) {
    padding-top: 22px;
  }
}

/* ---------------------------------
   RESIDENCE CATEGORIES
---------------------------------- */

.categories-section {
  padding: 60px var(--page-padding) 90px;
  background: var(--grey-charcoal);
  color: var(--light-beige);
}

.categories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.categories-eyebrow {
  margin: 0 0 22px;
  color: var(--light-beige);
  font-family: var(--font-display);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
}

.categories-header h2 {
  margin: 0;
  color: var(--light-beige);
}

.categories-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 25px;
  border: 1px solid rgba(243, 239, 233, 0.25);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: var(--light-beige);
  font-family: var(--font-display);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.categories-button:hover {
  background: var(--light-beige);
  border-color: var(--light-beige);
  color: var(--dark-grey-charcoal);
}

.categories-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

/* ---------------------------------
   CATEGORY GRID
---------------------------------- */

.categories-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 60px var(--page-padding) 90px;
  background: var(--grey-charcoal);
  color: var(--light-beige);
}

.categories-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  object-fit: cover;
  pointer-events: none;
}

.categories-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(55, 48, 49, 0.9) 0%,
    rgba(55, 48, 49, 0.42) 15%,
    rgba(55, 48, 49, 0.18) 100%
  );
  pointer-events: none;
}

.categories-header,
.categories-grid {
  position: relative;
  z-index: 2;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(243, 239, 233, 0.25);
  border-radius: 24px;
  background: rgba(243, 239, 233, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 45px rgba(0, 0, 0, 0.12);
}

.category-image-frame {
  width: 100%;
  aspect-ratio: 340 / 290;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
}

.category-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card h3 {
  margin: 0;
  color: var(--light-beige);
  font-family: var(--font-display);
  font-weight: 400;
}

.category-size {
  margin: 8px 0 0;
  color: var(--light-beige);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.4;
}

/* ---------------------------------
   TABLET
---------------------------------- */

@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------------------------------
   MOBILE
---------------------------------- */

@media (max-width: 760px) {
  .categories-section {
    padding: 50px 22px 70px;
  }

  .categories-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .categories-button {
    min-height: 36px;
    padding: 0 14px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    padding: 18px;
    border-radius: 25px;
  }
}

/* ---------------------------------
   STRUCTURE / TOWER
---------------------------------- */

.structure-section {
  position: relative;
  height: 800svh;
  background: var(--dark-grey-charcoal);
  color: var(--light-beige);
}

.structure-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
}

.structure-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 82px 7vw 82px var(--page-padding);
}

.structure-eyebrow {
  margin: 0 0 22px;
  color: var(--light-beige);
  font-family: var(--font-display);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
}

.structure-heading-wrap {
  animation: structureHeadingIn 600ms
    cubic-bezier(0.22, 1, 0.36, 1);
}

.structure-copy h2 {
  margin: 0;
  color: var(--light-beige);
}

.structure-description {
  max-width: 440px;
  margin: 34px 0 0;
  color: var(--light-beige);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.7;
}

.structure-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 25px;
  border: 1px solid rgba(243, 239, 233, 0.35);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--light-beige);
  font-family: var(--font-display);
  font-size: var(--font-small);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.5px;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.structure-button:hover {
  background: var(--light-beige);
  border-color: var(--light-beige);
  color: var(--dark-grey-charcoal);
}

.structure-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

/* ---------------------------------
   TOWER VISUAL
---------------------------------- */

.structure-visual {
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.structure-tower {
  position: relative;
  height: 84svh;
  max-height: 900px;
  aspect-ratio: 1 / 2.2;
}

.structure-tower-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.38;
  transition: opacity 600ms ease;
}

/*
  The SVG itself remains untouched.
  This moving band highlights one of eight vertical zones.
*/

.structure-highlight {
  --zone-height: 12.5%;

  position: absolute;
  z-index: 2;
  left: 0;
  bottom: calc(var(--structure-step) * var(--zone-height));
  width: 100%;
  height: var(--zone-height);
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(243, 239, 233, 0) 0%,
    rgba(243, 239, 233, 0.1) 18%,
    rgba(243, 239, 233, 0.28) 50%,
    rgba(243, 239, 233, 0.1) 82%,
    rgba(243, 239, 233, 0) 100%
  );

  mix-blend-mode: screen;

  transition:
    bottom 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 500ms ease;
}

.structure-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(243, 239, 233, 0.28);
  border-bottom: 1px solid rgba(243, 239, 233, 0.18);
}

/* ---------------------------------
   SCROLL PROGRESS
---------------------------------- */

.structure-progress {
  position: absolute;
  right: var(--page-padding);
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transform: translateY(-50%);
}

.structure-progress-item {
  width: 2px;
  height: 18px;
  background: rgba(243, 239, 233, 0.2);
  transition:
    height 500ms ease,
    background-color 500ms ease;
}

.structure-progress-item.active {
  height: 34px;
  background: var(--light-beige);
}

/* ---------------------------------
   ANIMATION
---------------------------------- */

@keyframes structureHeadingIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .structure-heading-wrap {
    animation: none;
  }

  .structure-highlight,
  .structure-progress-item {
    transition: none;
  }
}

/* ---------------------------------
   MOBILE
---------------------------------- */

@media (max-width: 760px) {
  .structure-section {
    height: 800svh;
  }

  .structure-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .structure-copy {
    justify-content: flex-start;
    padding: 100px 22px 24px;
  }

  .structure-description {
    margin-top: 24px;
  }

  .structure-button {
    margin-top: 24px;
  }

  .structure-visual {
    align-items: flex-end;
    padding-bottom: 20px;
  }

  .structure-tower {
    height: 48svh;
  }

  .structure-progress {
    right: 22px;
  }
}@font-face {
  font-family: "PP Monument";
  src: url("/fonts/PPMonumentExtended-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-display: "PP Monument", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --font-small: 11px;
  --font-body-size: 13px;

  --light-beige: #f3efe9;
  --deep-red: #360101;
  --grey-charcoal: #4c4342;
  --dark-grey-charcoal: #373031;
  --white: #ffffff;
  --black: #000000;

  --page-padding: 5vw;
  --radius-pill: 999px;
  --radius-box: 20px;
  --radius-hanger: 40px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body,
#root {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--light-beige);
  color: var(--dark-grey-charcoal);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--dark-grey-charcoal);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
  padding: 120px var(--page-padding) 80px;
}

@media (max-width: 760px) {
  :root {
    --page-padding: 22px;
  }
}