body.estella-page {
  --estella-forest: #15241d;
  --estella-forest-soft: #243a2f;
  --estella-cream: #f3ede1;
  --estella-sand: #e5d8c5;
  --estella-bronze: #b6794e;
  --estella-gold: #ca9a66;
  --estella-line: rgba(21, 36, 29, 0.18);
  color: var(--estella-forest);
  background: var(--estella-cream);
}

body.estella-page.menu-open {
  overflow: auto;
}

.estella-shell {
  min-height: 100vh;
  overflow: clip;
  background: var(--estella-cream);
}

.estella-entry {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  pointer-events: none;
}

.estella-entry > span {
  background: var(--estella-forest);
  transform-origin: top;
}

.estella-entry__mark {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--estella-cream);
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 8rem);
  font-style: italic;
  letter-spacing: -0.05em;
}

.no-js .estella-entry {
  display: none;
}

.estella-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem var(--page-pad);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 0.45s ease, background 0.45s ease, padding 0.45s ease;
}

.estella-header.is-fixed {
  position: fixed;
  color: var(--estella-forest);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  background: rgba(243, 237, 225, 0.92);
  border-color: rgba(21, 36, 29, 0.12);
  box-shadow: 0 1rem 3rem rgba(21, 36, 29, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.estella-header__brand {
  width: clamp(8.6rem, 12vw, 11.5rem);
}

.estella-header__brand img,
.estella-footer img {
  height: auto;
  filter: brightness(0) invert(1);
}

.estella-header.is-fixed .estella-header__brand img {
  filter: none;
}

.estella-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.estella-header__nav a,
.estella-header__visit {
  position: relative;
}

.estella-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

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

.estella-header__visit {
  justify-self: end;
  padding: 0.75rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.35s ease, background 0.35s ease;
}

.estella-header__visit:hover,
.estella-header__visit:focus-visible {
  color: var(--estella-forest);
  background: #fff;
}

.estella-header.is-fixed .estella-header__visit:hover,
.estella-header.is-fixed .estella-header__visit:focus-visible {
  color: var(--estella-cream);
  background: var(--estella-forest);
}

.estella-hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: var(--estella-forest);
  isolation: isolate;
}

.estella-hero__media,
.estella-hero__media img,
.estella-hero__veil {
  position: absolute;
  inset: 0;
}

.estella-hero__media {
  z-index: -2;
  overflow: hidden;
}

.estella-hero__media img {
  height: 112%;
  object-fit: cover;
  object-position: center 48%;
}

.estella-hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 23, 16, 0.8) 0%, rgba(9, 23, 16, 0.33) 52%, rgba(9, 23, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 18, 12, 0.72) 0%, transparent 46%),
    linear-gradient(180deg, rgba(7, 18, 12, 0.5) 0%, transparent 28%);
}

.estella-hero__content {
  width: min(64rem, 78vw);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9.5rem var(--page-pad) 7rem;
}

.estella-kicker {
  margin: 0 0 1.15rem;
  color: var(--estella-bronze);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.estella-hero .estella-kicker {
  color: #e8b787;
}

.estella-hero__title {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.5vw, 8rem);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.055em;
}

.estella-line {
  display: block;
  padding-bottom: 0.07em;
  overflow: hidden;
}

.estella-line > span {
  display: block;
}

.estella-line--italic {
  color: #ebc399;
  font-style: italic;
}

.estella-hero__copy {
  max-width: 32rem;
  margin: 2rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
}

.estella-arrow-link,
.estella-text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  width: fit-content;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.estella-arrow-link span,
.estella-text-link span {
  transition: transform 0.35s ease;
}

.estella-arrow-link:hover span,
.estella-arrow-link:focus-visible span {
  transform: translateY(0.25rem);
}

.estella-text-link:hover span,
.estella-text-link:focus-visible span {
  transform: translateX(0.35rem);
}

.estella-hero__signature {
  position: absolute;
  right: var(--page-pad);
  bottom: 4rem;
  width: clamp(8rem, 13vw, 13rem);
}

.estella-hero__signature img {
  height: auto;
  filter: brightness(0) invert(1);
}

.estella-hero__counter {
  position: absolute;
  left: var(--page-pad);
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.estella-hero__counter i {
  width: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.estella-story {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 2fr 1fr;
  column-gap: clamp(2rem, 5vw, 6rem);
  row-gap: 3.5rem;
  padding: clamp(7rem, 12vw, 12rem) var(--page-pad);
}

.estella-section-index {
  position: absolute;
  top: 3rem;
  left: var(--page-pad);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.estella-story__eyebrow {
  padding-top: 0.75rem;
  color: var(--estella-bronze);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.estella-display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.052em;
}

.estella-display em {
  color: var(--estella-bronze);
  font-weight: inherit;
}

.estella-story__copy {
  padding-top: 0.5rem;
  color: rgba(21, 36, 29, 0.72);
  font-size: 0.92rem;
}

.estella-story__copy p:first-child {
  margin-top: 0;
}

.estella-story__facts {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  border-top: 1px solid var(--estella-line);
}

.estella-fact {
  min-height: 11rem;
  padding: 1.6rem 1.8rem 0 0;
  border-right: 1px solid var(--estella-line);
}

.estella-fact + .estella-fact {
  padding-left: 1.8rem;
}

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

.estella-fact strong,
.estella-fact span {
  display: block;
}

.estella-fact strong {
  margin-bottom: 2.2rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  font-weight: 400;
}

.estella-fact span {
  max-width: 13rem;
  color: rgba(21, 36, 29, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estella-marquee {
  overflow: hidden;
  padding: 1.25rem 0;
  color: var(--estella-cream);
  background: var(--estella-bronze);
}

.estella-marquee__track {
  display: flex;
  width: max-content;
  animation: estella-marquee 32s linear infinite;
}

.estella-marquee span {
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 3.6rem);
  font-style: italic;
  letter-spacing: -0.03em;
}

.estella-marquee i {
  padding: 0 1.6rem;
  font-family: var(--sans);
  font-size: 0.5em;
  font-style: normal;
}

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

.estella-residences {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  min-height: 56rem;
  color: var(--estella-cream);
  background: var(--estella-forest);
}

.estella-residences__image {
  position: relative;
  min-height: 56rem;
  overflow: hidden;
}

.estella-residences__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 20, 14, 0.45), transparent 48%);
  pointer-events: none;
}

.estella-residences__image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.estella-image-label {
  position: absolute;
  z-index: 1;
  left: 2rem;
  bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estella-residences__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 9rem) clamp(2rem, 5vw, 6rem);
}

.estella-residences .estella-kicker {
  color: var(--estella-gold);
}

.estella-residences .estella-display {
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.estella-residences__content > p:not(.estella-kicker) {
  max-width: 30rem;
  margin: 2rem 0 0;
  color: rgba(243, 237, 225, 0.66);
  font-size: 0.91rem;
}

.estella-feature-list {
  margin: 2.6rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(243, 237, 225, 0.17);
}

.estella-feature-list li {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(243, 237, 225, 0.17);
  color: rgba(243, 237, 225, 0.78);
  font-size: 0.78rem;
}

.estella-feature-list span {
  color: var(--estella-gold);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.estella-amenities {
  padding: clamp(7rem, 11vw, 12rem) var(--page-pad);
  background: #eee6d9;
}

.estella-amenities__head {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 10rem);
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.estella-amenities__head .estella-display {
  max-width: 13ch;
}

.estella-amenities__head > p {
  max-width: 25rem;
  margin: 0 0 0.6rem;
  color: rgba(21, 36, 29, 0.68);
  font-size: 0.9rem;
}

.estella-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(4rem, 9vw, 10rem) clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.estella-gallery-card--wide {
  grid-column: 1 / -1;
}

.estella-gallery-card--portrait {
  width: 85%;
}

.estella-gallery-card--landscape {
  margin-top: 12rem;
}

.estella-gallery-card__media {
  height: clamp(25rem, 55vw, 52rem);
  overflow: hidden;
  background: var(--estella-sand);
}

.estella-gallery-card--portrait .estella-gallery-card__media {
  height: clamp(32rem, 52vw, 48rem);
}

.estella-gallery-card--landscape .estella-gallery-card__media {
  height: clamp(20rem, 33vw, 31rem);
}

.estella-gallery-card__media img {
  height: 110%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.estella-gallery-card:hover .estella-gallery-card__media img {
  transform: scale(1.025);
}

.estella-gallery-card__copy {
  display: grid;
  grid-template-columns: 2.2rem minmax(8rem, 0.8fr) 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-top: 1.3rem;
  border-top: 1px solid var(--estella-line);
}

.estella-gallery-card__copy span {
  color: var(--estella-bronze);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.estella-gallery-card__copy h3,
.estella-gallery-card__copy p {
  margin: 0;
}

.estella-gallery-card__copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.estella-gallery-card__copy p {
  color: rgba(21, 36, 29, 0.62);
  font-size: 0.8rem;
}

.estella-quote {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 52rem;
  padding: 8rem var(--page-pad);
  text-align: center;
  color: var(--estella-cream);
  background: var(--estella-bronze);
  overflow: hidden;
}

.estella-quote::before,
.estella-quote::after {
  content: "";
  position: absolute;
  width: min(42vw, 38rem);
  aspect-ratio: 1;
  border: 1px solid rgba(243, 237, 225, 0.18);
  border-radius: 50%;
}

.estella-quote::before { left: -16rem; top: -14rem; }
.estella-quote::after { right: -16rem; bottom: -14rem; }

.estella-quote .estella-kicker {
  align-self: end;
  color: rgba(243, 237, 225, 0.68);
}

.estella-quote blockquote {
  position: relative;
  z-index: 1;
  max-width: 17ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.estella-quote__seal {
  display: grid;
  place-items: center;
  width: 8.5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 237, 225, 0.5);
  border-radius: 50%;
  font-size: 0.58rem;
  letter-spacing: 0.17em;
}

.estella-quote__seal i {
  font-size: 0.8rem;
  font-style: normal;
}

.estella-quote__seal small {
  font-size: 0.5rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.estella-visit {
  position: relative;
  min-height: 90svh;
  display: grid;
  place-items: center;
  padding: 8rem var(--page-pad);
  text-align: center;
  color: #fff;
  background: var(--estella-forest);
  isolation: isolate;
  overflow: hidden;
}

.estella-visit__image,
.estella-visit__image img,
.estella-visit__shade {
  position: absolute;
  inset: 0;
}

.estella-visit__image {
  z-index: -2;
}

.estella-visit__image img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.estella-visit__shade {
  z-index: -1;
  background: rgba(8, 21, 14, 0.7);
}

.estella-visit__content {
  max-width: 68rem;
}

.estella-visit .estella-kicker {
  color: #e8b787;
}

.estella-visit .estella-display {
  max-width: 14ch;
  margin: auto;
}

.estella-visit__content > p:not(.estella-kicker) {
  max-width: 35rem;
  margin: 2rem auto;
  color: rgba(255, 255, 255, 0.72);
}

.estella-visit__button {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
  padding: 1.1rem 1.5rem;
  color: var(--estella-forest);
  background: var(--estella-cream);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.estella-visit__button:hover,
.estella-visit__button:focus-visible {
  color: var(--estella-cream);
  background: var(--estella-bronze);
  transform: translateY(-0.2rem);
}

.estella-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: end;
  padding: 4rem var(--page-pad) 2rem;
  color: var(--estella-cream);
  background: #0c1712;
}

.estella-footer > a {
  width: min(12rem, 100%);
}

.estella-footer p {
  margin: 0;
  color: rgba(243, 237, 225, 0.55);
  font-size: 0.75rem;
}

.estella-footer > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(243, 237, 225, 0.48);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .estella-header {
    grid-template-columns: 1fr auto;
  }
  .estella-header__nav {
    display: none;
  }
  .estella-story {
    grid-template-columns: 0.55fr 1.7fr;
  }
  .estella-story__copy {
    grid-column: 2;
  }
  .estella-story__facts {
    grid-column: 2;
  }
  .estella-residences {
    grid-template-columns: 1fr;
  }
  .estella-residences__image,
  .estella-residences__content {
    min-height: auto;
  }
  .estella-residences__image {
    height: 70vw;
  }
  .estella-gallery-card__copy {
    grid-template-columns: 2rem 1fr;
  }
  .estella-gallery-card__copy p {
    grid-column: 2;
  }
  .estella-footer {
    grid-template-columns: 1fr 1fr;
  }
  .estella-footer > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .estella-entry,
  .pdli-page-transition {
    grid-template-columns: repeat(2, 1fr);
  }
  .estella-entry > span:last-of-type,
  .pdli-page-transition__panel:nth-child(3) {
    display: none;
  }
  .estella-header {
    padding: 1.15rem var(--page-pad);
  }
  .estella-header__brand {
    width: 8.5rem;
  }
  .estella-header__visit {
    padding: 0.6rem 0.85rem;
    font-size: 0.58rem;
  }
  .estella-hero__content {
    width: 100%;
    justify-content: flex-end;
    padding: 9rem var(--page-pad) 9rem;
  }
  .estella-hero__media img {
    object-position: 62% center;
  }
  .estella-hero__title {
    font-size: clamp(3.3rem, 15vw, 5.4rem);
  }
  .estella-hero__signature {
    right: var(--page-pad);
    bottom: 2rem;
    width: 7rem;
  }
  .estella-hero__counter {
    bottom: 2rem;
  }
  .estella-story {
    display: block;
    padding-top: 8rem;
  }
  .estella-story__eyebrow {
    margin-bottom: 1.4rem;
  }
  .estella-story__copy {
    margin-top: 2rem;
  }
  .estella-story__facts {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }
  .estella-fact,
  .estella-fact + .estella-fact {
    min-height: 0;
    padding: 1.3rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--estella-line);
  }
  .estella-fact strong {
    margin-bottom: 0.7rem;
  }
  .estella-residences__image {
    height: 78vh;
    min-height: 32rem;
  }
  .estella-residences__content {
    padding: 5.5rem var(--page-pad);
  }
  .estella-amenities__head {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }
  .estella-gallery {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .estella-gallery-card--wide {
    grid-column: auto;
  }
  .estella-gallery-card--portrait {
    width: 100%;
  }
  .estella-gallery-card--landscape {
    margin-top: 0;
  }
  .estella-gallery-card__media,
  .estella-gallery-card--portrait .estella-gallery-card__media,
  .estella-gallery-card--landscape .estella-gallery-card__media {
    height: 66vw;
    min-height: 22rem;
  }
  .estella-gallery-card__copy {
    gap: 0.8rem;
  }
  .estella-quote {
    min-height: 42rem;
  }
  .estella-visit {
    min-height: 48rem;
  }
  .estella-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .estella-footer > div {
    grid-column: auto;
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .estella-entry {
    display: none;
  }
  .estella-marquee__track {
    animation: none;
  }
  .estella-gallery-card__media img {
    transition: none;
  }
}
