@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@1,300;1,400&display=swap');

:root {
  --ink: #222;
  --cream: #f3f0e8;
  --paper: #fff;
  --wine: #6d2b29;
  --dark: #1d3431;
  --line: #d5d0c5
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font: 400 30px Playfair Display;
  ;
  color: var(--ink);
  background: #fff;
  font-weight: 300
}

img {
  display: block;
  width: 100%
}

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

button,
input,
textarea {
  font: inherit
}

.header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 5.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: .35s
}

.header.scrolled {
  height: 72px;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 18px #0001
}

.yula {
  display: flex;
  flex-direction: column;
  line-height: .8;
  letter-spacing: .14em
}

.yula b {
  font: 500 30px/1 Montserrat
}

.yula span {
  font-size: 7px;
  letter-spacing: .32em;
  margin-top: 7px
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em
}

.nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: currentColor;
  margin-top: 6px;
  transition: .25s
}

.nav a:hover:after {
  width: 100%
}

.menu {
  display: none;
  background: none;
  border: 0;
  color: inherit
}

.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  color: white;
  overflow: hidden
}

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

.shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0007 0, #0001 55%, #0004)
}

.hero-copy {
  position: absolute;
  left: 8vw;
  bottom: 12vh
}

.hero-copy .small {
  font-size: 13px;
  letter-spacing: .5em
}

.hero h1 {
  font: 400 clamp(76px, 11vw, 180px)/.85 Playfair Display;
  margin: 10px 0
}

.hero p {
  letter-spacing: .08em;
  font-size: 22px
}

.all-projects {
  position: absolute;
  right: 5vw;
  bottom: 8vh;
  font-size: 11px;
  letter-spacing: .2em;
  border-bottom: 1px solid;
  padding-bottom: 7px
}

.section {
  padding: 110px 7vw
}

.section-title {
  font: 400 clamp(38px, 5vw, 72px)/1 Playfair Display;
  margin: 0 0 60px;
  text-transform: none
}

.dark {
  background: var(--dark);
  color: #f5f1e7
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 8vw;
  align-items: center;
  background: var(--cream);
  min-height: 700px
}

.intro h2 {
  font: 400 clamp(42px, 5.4vw, 78px)/1.04 Playfair Display;
  margin: 18px 0 30px
}

.intro p {
  line-height: 2.1;
  max-width: 600px;
  font-size: 16px
}

.intro-img img {
  height: 650px;
  object-fit: cover;
  width: 900px;
}

.kicker {
  font-size: 16px;
  letter-spacing: .26em;
  color: var(--wine);
  font-weight: 500
}

.stats {
  text-align: center
}

.statgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.stat {
  min-height: 145px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.stat strong {
  font: 400 30px Playfair Display
}

.stat span {
  font-size: 9px;
  letter-spacing: .2em;
  margin-top: 10px
}

.center-copy {
  max-width: 700px;
  margin: 50px auto 30px;
  line-height: 1.8
}

.outline-btn {
  display: inline-block;
  border: 1px solid currentColor;
  background: transparent;
  padding: 15px 27px;
  font-size: 10px;
  letter-spacing: .18em
}

.views {
  padding-left: 0;
  padding-right: 0
}

.views .section-title {
  margin-left: 7vw
}

.view-frame {
  height: 76vh;
  min-height: 520px;
  position: relative;
  overflow: hidden
}

.view-frame img {
  height: 100%;
  object-fit: cover;
  animation: fade .5s
}

.arr {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 0;
  background: #fff;
  color: #222
}

.arr.left {
  left: 4vw
}

.arr.right {
  right: 4vw
}

.counter {
  position: absolute;
  right: 7vw;
  bottom: 35px;
  font-size: 11px;
  letter-spacing: .2em
}

.feature-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 7vw;
  align-items: center
}

.feature-img {
  height: 700px;
  object-fit: cover
}

.feature {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 15px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line)
}

.feature>span {
  font: 400 18px Playfair Display;
  color: var(--wine)
}

.feature h3 {
  font-size: 14px;
  letter-spacing: .14em;
  margin: 0 0 8px
}

.feature p {
  font-size: 12px;
  margin: 0;
  line-height: 1.7
}

.video-box {
  height: 65vh;
  position: relative;
  color: white
}

.video-box img {
  height: 100%;
  object-fit: cover;
  filter: brightness(.65)
}

.video-box button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid white;
  background: transparent;
  color: white
}

.video-box>div {
  position: absolute;
  left: 4vw;
  bottom: 35px;
  font-size: 13px;
  letter-spacing: .15em
}

.video-box small {
  font-size: 8px
}

.loc-head {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 6vw;
  align-items: center
}

.loc-head h3 {
  font: 400 55px Playfair Display
}

.map-placeholder {
  height: 380px;
  background: #e7e2d8;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative
}

.map-placeholder:before,
.map-placeholder:after {
  content: '';
  position: absolute;
  background: #d0cabf
}

.map-placeholder:before {
  height: 1px;
  width: 100%;
  transform: rotate(-8deg)
}

.map-placeholder:after {
  width: 1px;
  height: 100%;
  transform: rotate(16deg)
}

.map-placeholder span {
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px
}

.map-placeholder b,
.map-placeholder small {
  z-index: 2;
  margin-top: 12px
}

.locgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 60px
}

.loc h4 {
  font-size: 11px;
  letter-spacing: .18em;
  color: #cdbd9b
}

.loc p {
  font-size: 11px;
  line-height: 1.6;
  border-bottom: 1px solid #ffffff24;
  padding-bottom: 8px
}

.amenity-stage {
  height: 70vh;
  position: relative
}

.amenity-stage img {
  height: 100%;
  object-fit: cover
}

.amenity-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 18px 25px;
  min-width: 350px
}

.amenity-nav button {
  border: 0;
  background: none
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 35px
}

.amenity-list span {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 11px
}

.amenity-list b {
  font: 400 16px Playfair Display;
  color: var(--wine);
  margin-right: 12px
}

.club {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  align-items: center
}

.club>img {
  height: 720px;
  object-fit: cover
}

.club-copy>p {
  line-height: 1.8
}

.club-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 35px
}

.club-list span {
  font-size: 11px;
  padding: 13px 0;
  border-bottom: 1px solid #ffffff26
}

.master-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 6vw;
  align-items: center
}

.master-grid img {
  max-height: 720px;
  object-fit: contain
}

.master-grid h3 {
  font: 400 38px Playfair Display
}

.master-grid p {
  line-height: 1.8
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px
}

.tabs button {
  border: 1px solid #ffffff55;
  color: white;
  background: transparent;
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: .08em
}

.tabs .active {
  background: white;
  color: #222
}

.planbox {
  background: #e7e2d8;
  padding: 15px
}

.planbox img{
  width:100%;
  height:auto;
  max-height:85vh;
  object-fit:contain;
}

/* ===================================================
   SPECIFICATIONS
=================================================== */

.specs{
  position:relative;
  padding:120px 7vw;
  overflow:hidden;
  background:#faf9f7;
}

.wm-specs .aria-watermark{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:650px;
  opacity:.035;
  pointer-events:none;
  z-index:0;
}

.spec-luxury{
  position:relative;
  z-index:2;
}

.spec-intro{
  max-width:760px;
  margin:0 auto 70px;
  text-align:center;
}

.spec-intro p{
  margin:0;
  font-size:20px;
  line-height:1.8;
  color:#888;
  font-weight:300;
}

/* ===================================================
 GRID
=================================================== */

.spec-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:45px 45px;
}

/* ===================================================
 BLOCK
=================================================== */

.spec-block{
  padding-bottom:26px;
  border-bottom:1px solid rgba(199,161,99,.22);
  transition:.3s ease;
}

.spec-block:hover{
  transform:translateY(-5px);
}

.spec-content h3{
  margin:0 0 14px;

  font-size:18px;
  font-weight:600;

  text-transform:uppercase;
  letter-spacing:.08em;

  color:#C7A163;
}

.spec-content p{
  margin:0;

  font-size:14px;
  line-height:1.85;

  color:#666;
}

/* Empty icon placeholder (remove if using SVG icons) */

.spec-icon{
  display:none;
}

/* ===================================================
 TITLE
=================================================== */

.specs .section-title{
  margin-bottom:24px;
  text-align:center;
}

/* ===================================================
 HOVER
=================================================== */

.spec-block:hover h3{
  color:#b58a4f;
}

.spec-block:hover p{
  color:#444;
}

/* ===================================================
 TABLET
=================================================== */

@media (max-width:1100px){

  .spec-grid{
      grid-template-columns:repeat(2,1fr);
      gap:40px 35px;
  }
}

/* ===================================================
 MOBILE
=================================================== */

@media (max-width:768px){

  .specs{
      padding:90px 24px;
  }

  .spec-grid{
      grid-template-columns:1fr;
      gap:30px;
  }

  .spec-intro{
      margin-bottom:50px;
  }

  .spec-intro p{
      font-size:17px;
  }

  .spec-content h3{
      font-size:16px;
  }

  .spec-content p{
      font-size:14px;
  }

  .wm-specs .aria-watermark{
      width:420px;
  }
}
.contact {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 9vw
}

.contact h2 {
  font: 400 48px Playfair Display;
  margin-bottom: 5px
}

.contact a {
  font-size: 13px
}

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.contact form h2,
.contact form p,
.contact textarea,
.contact .check,
.contact .submit {
  grid-column: 1/-1
}

.contact form h2 {
  margin: 0
}

.contact input,
.contact textarea {
  border: 0;
  border-bottom: 1px solid #ffffff55;
  background: transparent;
  color: #fff;
  padding: 14px 4px;
  outline: none
}

.contact textarea {
  height: 90px
}

.check {
  font-size: 9px;
  line-height: 1.6
}

.submit {
  justify-self: start;
  padding: 14px 32px;
  border: 1px solid white;
  background: white;
  color: #222;
  letter-spacing: .15em;
  font-size: 10px
}

footer {
  padding: 65px 7vw 90px;
  background: #111;
  color: #ddd;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  font-size: 11px
}

footer>div {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footlogo {
  font-size: 20px
}

.quick {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: 0;
  background: var(--wine);
  color: white;
  display: flex
}

.quick a {
  padding: 12px 18px;
  font-size: 9px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px
}

.quick svg {
  width: 13px
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s, transform .75s
}

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

@keyframes fade {
  from {
    opacity: .35
  }

  to {
    opacity: 1
  }
}

@media(max-width:800px) {
  .header {
    height: 70px;
    padding: 0 22px
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    color: #222;
    display: none;
    flex-direction: column;
    padding: 30px
  }

  .nav.open {
    display: flex
  }

  .menu {
    display: block
  }

  .hero {
    min-height: 620px
  }

  .hero-copy {
    left: 24px
  }

  .section {
    padding: 75px 24px
  }

  .intro,
  .feature-wrap,
  .loc-head,
  .club,
  .master-grid,
  .contact {
    grid-template-columns: 1fr
  }

  .intro-img img,
  .feature-img,
  .club>img {
    height: 480px
  }

  .statgrid {
    grid-template-columns: 1fr 1fr
  }

  .view-frame {
    height: 58vh
  }

  .locgrid {
    grid-template-columns: 1fr 1fr
  }

  .amenity-list {
    grid-template-columns: 1fr 1fr
  }

  .amenity-stage {
    height: 55vh
  }

  .planbox img {
    height: 50vh
  }

  .contact form {
    grid-template-columns: 1fr
  }

  .contact form>* {
    grid-column: 1 !important
  }

  footer {
    grid-template-columns: 1fr
  }

  .quick {
    width: 100%;
    justify-content: center
  }

  .quick a {
    flex: 1;
    justify-content: center
  }

  .section-title {
    margin-bottom: 38px
  }
}

/* ARIA tower scroll narrative */
body {
  background: #202b29
}

.building-bg {
  --building-shift: 0px;
  position: fixed;
  inset: -12vh 0 -12vh 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #1d2927
}

.building-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 124vh;
  object-fit: cover;
  object-position: center 18%;
  transform: translate3d(0, calc(var(--building-shift) * -1), 0) scale(1.035);
  will-change: transform;
  filter: saturate(.9) contrast(1.02)
}

.building-wash {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 27, .13)
}

.aria-content {
  position: relative;
  z-index: 2
}

.header {
  z-index: 70
}

.quick {
  z-index: 65
}

.hero {
  background: transparent
}

.hero .shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .08) 58%, rgba(0, 0, 0, .34))
}

.intro {
  background: rgba(243, 240, 232, .92);
  backdrop-filter: blur(2px)
}

.stats,
.features,
.video,
.amenities,
.master,
.specs {
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(1.5px)
}

.dark {
  background: rgba(29, 52, 49, .94);
  backdrop-filter: blur(2px)
}

.views.dark {
  background: rgba(29, 52, 49, .89)
}

.location.dark,
.club.dark,
.floor.dark,
.contact.dark {
  background: rgba(29, 52, 49, .93)
}

footer {
  background: rgba(17, 17, 17, .97)
}

.floor-indicator {
  --floor-progress: 0;
  position: fixed;
  z-index: 60;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  height: min(68vh, 610px);
  width: 72px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-shadow: 0 1px 8px #0008;
  user-select: none;
  pointer-events: none
}

.floor-top,
.floor-bottom {
  font: 500 11px/1 Montserrat;
  letter-spacing: .12em;
  opacity: .75;
  padding-right: 5px
}

.floor-top small {
  font-size: 6px;
  letter-spacing: .16em;
  display: block;
  text-align: right;
  margin-top: 4px
}

.floor-track {
  position: relative;
  width: 34px;
  flex: 1;
  margin: 12px 0;
  pointer-events: auto;
  cursor: ns-resize;
  touch-action: none
}

.floor-rail {
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .38)
}

.floor-rail:before,
.floor-rail:after {
  content: '';
  position: absolute;
  right: -3px;
  width: 7px;
  height: 1px;
  background: rgba(255, 255, 255, .65)
}

.floor-rail:before {
  top: 0
}

.floor-rail:after {
  bottom: 0
}

.floor-marker {
  position: absolute;
  right: 0;
  top: calc(var(--floor-progress) * 100%);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: top .08s linear
}

.floor-marker i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f2eadc;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .13)
}

.floor-marker strong {
  position: absolute;
  right: 22px;
  font: 500 18px/1 Playfair Display;
  letter-spacing: .04em
}

.floor-neighbours {
  position: absolute;
  right: 29px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 8px;
  letter-spacing: .08em;
  opacity: .42;
  pointer-events: none
}

.floor-neighbours.upper {
  top: 29%
}

.floor-neighbours.lower {
  bottom: 29%
}

.floor-neighbours span:nth-child(2) {
  opacity: .72
}

.floor-neighbours span:nth-child(1),
.floor-neighbours span:nth-child(3) {
  opacity: .42
}

@media(max-width:1100px) {
  .building-bg {
    inset: -8vh 0
  }

  .building-bg img {
    height: 116vh
  }

  .floor-indicator {
    height: 58vh;
    right: 5px;
    width: 56px
  }

  .floor-neighbours {
    display: none
  }
}

@media(max-width:800px) {
  .building-bg {
    inset: -5vh 0
  }

  .building-bg img {
    height: 110vh;
    object-position: 56% 20%;
    filter: saturate(.86) contrast(1.02)
  }

  .floor-indicator {
    right: 3px;
    width: 42px;
    height: 45vh
  }

  .floor-track {
    width: 25px
  }

  .floor-marker strong {
    right: 17px;
    font-size: 13px
  }

  .floor-marker i {
    width: 7px;
    height: 7px
  }

  .floor-top,
  .floor-bottom {
    font-size: 8px;
    padding-right: 3px
  }

  .floor-top small {
    display: none
  }

  .section {
    padding-right: 38px
  }

  .hero-copy {
    padding-right: 28px
  }
}

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

  .building-bg img {
    transform: translate3d(0, 0, 0) scale(1.035) !important
  }

  .floor-marker {
    transition: none
  }

  .reveal {
    transition: none
  }

  .view-frame img {
    animation: none
  }
}

/* Requested ARIA-only refinements: existing theme token + hero title intro */
.hero-title-intro {
  opacity: 0;
  transform-origin: center center
}

.floor-indicator {
  color: var(--dark);
  text-shadow: 0 1px 8px rgba(255, 255, 255, .34)
}

.floor-rail {
  background: color-mix(in srgb, var(--dark) 52%, transparent)
}

.floor-rail:before,
.floor-rail:after {
  background: color-mix(in srgb, var(--dark) 72%, transparent)
}

.floor-marker i {
  background: var(--dark);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--dark) 18%, transparent)
}

.floor-marker strong {
  color: var(--dark)
}

.floor-track:hover .floor-rail,
.floor-track:active .floor-rail {
  background: var(--dark)
}

.floor-track:hover .floor-marker i,
.floor-track:active .floor-marker i {
  background: var(--dark);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dark) 20%, transparent)
}

.floor-neighbours,
.floor-top,
.floor-bottom {
  color: var(--dark)
}

@media(prefers-reduced-motion:reduce) {
  .hero-title-intro {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }
}

/* Solid backgrounds for all sections BELOW the hero */

.intro {
  background: var(--cream);
  backdrop-filter: none;
}

.stats,
.features,
.video,
.amenities,
.master,
.specs {
  background: var(--paper);
  backdrop-filter: none;
}

.dark,
.views.dark,
.location.dark,
.club.dark,
.floor.dark,
.contact.dark {
  background: var(--dark);
  backdrop-filter: none;
}

/* Keep footer solid */
footer {
  background: #111;
}

/* ARIA project film: inline scroll-triggered playback */
.video-box {
  overflow: hidden;
  background: #000
}

.video-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #000;
  z-index: 1
}

.video-box .video-caption {
  position: absolute;
  left: 4vw;
  bottom: 35px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .15em;
  z-index: 2;
  pointer-events: none
}

.video-box .video-caption small {
  font-size: 8px
}

.video-box .video-audio {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: auto;
  top: auto;
  transform: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  padding: 0;
  line-height: 1;
  transition: opacity .25s ease
}

.video-box .video-audio:hover {
  opacity: .86
}

@media(max-width:800px) {
  .video-box .video-caption {
    left: 24px;
    bottom: 24px;
    padding-right: 62px
  }

  .video-box .video-audio {
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px
  }
}

/* =========================
   YULA HEADER LOGO
========================= */

.yula-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.yula-logo img {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}

/* Slightly smaller when header contracts on scroll */
.header.scrolled .yula-logo img {
  height: 42px;
}

/* Mobile */
@media(max-width:800px) {

  .yula-logo img {
    height: 40px;
  }

  .header.scrolled .yula-logo img {
    height: 36px;
  }

}

/* =========================
   YULA HEADER LOGO
========================= */

.yula-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.yula-logo img {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;

  /* HERO STATE: force SVG artwork to white */
  filter: brightness(0) invert(1);

  transition:
    filter .35s ease,
    height .35s ease,
    opacity .35s ease;
}

/* SCROLLED STATE:
   restore the SVG's original/natural colours */
.header.scrolled .yula-logo img {
  height: 42px;
  filter: none;
}


/* MOBILE */

@media(max-width:800px) {

  .yula-logo img {
    height: 40px;
  }

  .header.scrolled .yula-logo img {
    height: 36px;
  }

}

.location-map {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.location-map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Mobile */
@media(max-width:800px) {
  .location-map {
    height: 320px;
  }
}

/* =========================================================
   ARIA HERO LOGO + TAGLINE
   ========================================================= */
.hero-logo {
  display: block;
  width: clamp(180px, 22vw, 320px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  transform-origin: left bottom;

  /* Keep horizontal position, move ONLY downward */
  position: relative;
  top: 155px;
  left: -85px;
}

.hero-logo-intro {
  opacity: 0;
  transform-origin: center center;
}

.hero-tagline {
  display: flex;
  flex-direction: column;

  position: relative;
  left: -35px;

  gap: 2px;
  margin: 90px 0 0;

  color: rgba(255, 255, 255, 0.95);

  font-family: "", serif;
  font-size: clamp(52px, 4.5vw, 78px);
  font-weight: 300;
  font-style: italic;

  line-height: 1.05;
  letter-spacing: -0.045em;

  opacity: 0;
  transform: translateY(10px);

  transition:
    opacity .7s cubic-bezier(.22, 1, .36, 1),
    transform .7s cubic-bezier(.22, 1, .36, 1);
}

.hero-tagline span {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-style: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}

.hero-tagline.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   LARGER CINEMATIC ARIA PROJECT FILM
   ========================================================= */
.video .section-title {
  max-width: 720px;
  margin-bottom: 48px;
}

.video-box {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  aspect-ratio: 16/9;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #000;
}

.video-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #000;
  z-index: 1;
}

@media(max-width:800px) {
  .hero-logo {
    width: clamp(150px, 46vw, 220px)
  }

  .hero-tagline {
    margin-top: 18px;
    font-size: clamp(25px, 7.4vw, 36px)
  }

  .video .section-title {
    margin-bottom: 34px
  }

  .video-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 16/9
  }
}

@media(prefers-reduced-motion:reduce) {
  .hero-logo-intro {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }

  .hero-tagline {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }
}

/* =========================================================
   ARIA OPENING REVEAL SEQUENCE
   Background + ARIA logo only until the logo settles.
   ========================================================= */
.app-shell.intro-active .header,
.app-shell.intro-active .floor-indicator,
.app-shell.intro-active .hero .all-projects,
.app-shell.intro-active .quick {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.app-shell.intro-active .aria-content> :not(.hero) {
  visibility: hidden;
}

.app-shell .header,
.app-shell .floor-indicator,
.app-shell .hero .all-projects,
.app-shell .quick {
  transition:
    opacity .55s cubic-bezier(.22, 1, .36, 1),
    transform .55s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear;
}

.app-shell.intro-active .header {
  transform: translateY(-10px);
}

.app-shell.intro-revealed .header,
.app-shell.intro-revealed .floor-indicator,
.app-shell.intro-revealed .hero .all-projects,
.app-shell.intro-revealed .quick {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.app-shell.intro-revealed .header {
  transform: translateY(0);
}

.app-shell.intro-revealed .floor-indicator {
  transition-delay: .08s;
}

.app-shell.intro-revealed .hero .all-projects {
  transition-delay: .06s;
}

@media(prefers-reduced-motion:reduce) {

  .app-shell .header,
  .app-shell .floor-indicator,
  .app-shell .hero .all-projects,
  .app-shell .quick {
    transition-duration: .18s !important;
    transition-delay: 0s !important;
  }
}

/* =========================================================
   POST-INTRO UI MOTION POLISH
   Stagger supporting UI after the existing ARIA logo settles.
   ========================================================= */
.app-shell .hero-tagline {
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 700ms cubic-bezier(.22, 1, .36, 1),
    transform 700ms cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 700ms;
}

.app-shell.intro-revealed .hero-tagline.visible {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 150ms, 150ms, 0ms;
}

.app-shell .header {
  transition:
    opacity 720ms cubic-bezier(.22, 1, .36, 1),
    transform 720ms cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 720ms;
}

.app-shell.intro-revealed .header {
  transition-delay: 270ms, 270ms, 0ms;
}

.app-shell.intro-active .floor-indicator {
  transform: translate(10px, -50%);
}

.app-shell .floor-indicator {
  transition:
    opacity 800ms cubic-bezier(.22, 1, .36, 1),
    transform 800ms cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 800ms;
}

.app-shell.intro-revealed .floor-indicator {
  transform: translate(0, -50%);
  transition-delay: 390ms, 390ms, 0ms;
}

.app-shell .hero .all-projects,
.app-shell .quick {
  transition:
    opacity 650ms cubic-bezier(.22, 1, .36, 1),
    transform 650ms cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 650ms;
}

.app-shell.intro-active .hero .all-projects,
.app-shell.intro-active .quick {
  transform: translateY(8px);
}

.app-shell.intro-revealed .hero .all-projects,
.app-shell.intro-revealed .quick {
  transform: translateY(0);
  transition-delay: 490ms, 490ms, 0ms;
}

@media(prefers-reduced-motion:reduce) {

  .app-shell .hero-tagline,
  .app-shell .header,
  .app-shell .floor-indicator,
  .app-shell .hero .all-projects,
  .app-shell .quick {
    transform: none !important;
    transition:
      opacity 160ms ease,
      visibility 0s linear !important;
    transition-delay: 0s !important;
  }

  .app-shell.intro-revealed .hero-tagline.visible,
  .app-shell.intro-revealed .header,
  .app-shell.intro-revealed .floor-indicator,
  .app-shell.intro-revealed .hero .all-projects,
  .app-shell.intro-revealed .quick {
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* =========================================================
   TARGETED MEDIA / BRANDING REFINEMENTS
   ========================================================= */
.developer-line {
  font-size: 12px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: -12px !important;
  color: var(--wine);
  font-weight: 500
}

/* Project Views: full-bleed cinematic slideshow */
.views-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  padding: 0 !important;
  overflow: hidden;
  background: var(--dark)
}

.views-cinematic .view-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden
}

.views-cinematic .view-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.15s cubic-bezier(.22, 1, .36, 1), transform 8s linear;
  pointer-events: none
}

.views-cinematic .view-slide.active {
  opacity: 1;
  transform: scale(1.02);
  z-index: 1
}

.view-title-overlay {
  position: absolute;
  z-index: 3;
  left: 7vw;
  top: 12vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  font: 400 clamp(42px, 5vw, 72px)/.92 Playfair Display;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .25)
}

.view-title-overlay:before {
  content: '';
  position: absolute;
  left: -7vw;
  top: -6vh;
  width: 42vw;
  height: 30vh;
  background: radial-gradient(ellipse at left top, rgba(0, 0, 0, .28), transparent 70%);
  z-index: -1;
  pointer-events: none
}

.view-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 20, 18, .18);
  backdrop-filter: blur(3px)
}

.view-arrow {
  position: static !important;
  width: 36px !important;
  height: 36px !important;
  border: 1px solid rgba(255, 255, 255, .55) !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08) !important;
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease
}

.view-arrow:hover {
  background: var(--dark) !important;
  border-color: var(--dark) !important
}

.view-dots {
  display: flex;
  align-items: center;
  gap: 10px
}

.view-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease
}

.view-dots button.active {
  background: var(--dark);
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .5);
  transform: scale(1.12)
}

/* Above Luxury: same composition, scaled to use more of the section */
.features {
  padding-top: 90px;
  padding-bottom: 90px
}

.features .feature-wrap {
  width: min(86vw, 1500px);
  margin: 0 auto;
  grid-template-columns: 1.05fr .95fr;
  gap: 5vw
}

.features .feature-img {
  height: min(76vh, 780px)
}

.features .feature {
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: 30px 0
}

.features .feature>span {
  font-size: 24px
}

.features .feature h3 {
  font-size: 16px;
  letter-spacing: .13em;
  margin-bottom: 10px
}

.features .feature p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 520px
}

/* Project film: full-bleed media with editorial overlay */
.video-cinematic {
  position: relative;
  width: 100%;
  padding: 0 !important;
  background: var(--paper);
  overflow: hidden
}

.video-cinematic .video-box {
  width: 100%;
  margin: 0;
  aspect-ratio: 16/9;
  min-height: 0;
  position: relative;
  background: #000
}

.video-cinematic .video-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.video-title-overlay {
  position: absolute;
  z-index: 3;
  right: 7vw;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font: 300 clamp(38px, 5vw, 76px)/.95 Playfair Display;
  text-align: right;
  letter-spacing: -.025em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .2);
  pointer-events: none
}

.video-title-overlay span {
  display: block
}

.video-cinematic .video-audio {
  z-index: 4
}

/* Interactive map: intentionally keyed to Miyapur until official ARIA coordinates are supplied. */
.interactive-map {
  background: #e7e2d8
}

.interactive-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.82) contrast(.96)
}

@media(max-width:800px) {
  .views-cinematic {
    height: 72vh;
    min-height: 520px
  }

  .view-title-overlay {
    left: 24px;
    top: 82px;
    font-size: clamp(38px, 12vw, 58px)
  }

  .view-title-overlay:before {
    left: -24px;
    width: 85vw;
    height: 24vh
  }

  .view-controls {
    bottom: 24px;
    gap: 13px;
    padding: 7px 11px
  }

  .view-arrow {
    width: 40px !important;
    height: 40px !important
  }

  .features {
    padding-top: 75px;
    padding-bottom: 75px
  }

  .features .feature-wrap {
    width: 100%;
    gap: 28px
  }

  .features .feature-img {
    height: 56vh;
    min-height: 420px
  }

  .features .feature {
    grid-template-columns: 52px 1fr;
    padding: 22px 0
  }

  .features .feature>span {
    font-size: 20px
  }

  .features .feature h3 {
    font-size: 13px
  }

  .features .feature p {
    font-size: 12px
  }

  .video-cinematic .video-box {
    aspect-ratio: 16/10
  }

  .video-title-overlay {
    right: 24px;
    top: 44%;
    font-size: clamp(34px, 10vw, 52px)
  }

  .interactive-map {
    height: 360px
  }
}

@media(prefers-reduced-motion:reduce) {
  .views-cinematic .view-slide {
    transition: opacity .2s ease;
    transform: none !important
  }
}

/* =========================================================
   FINAL TARGETED REFINEMENTS: hero brand handoff, gallery nav,
   viewport-height film. Existing visual system remains intact.
   ========================================================= */
.hero-brand-lockup {
  position: relative;
  width: clamp(180px, 22vw, 320px);
  height: auto
}

.hero-brand-lockup .hero-logo {
  width: 100%;
  max-width: none
}

.hero-brand-lockup .hero-logo-standalone {
  position: relative;
  z-index: 2
}

.hero-brand-lockup .hero-logo-combined {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 560ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 560ms
}

.hero-brand-lockup.brand-settled.has-combined .hero-logo-standalone {
  opacity: 0 !important;
  transition: opacity 560ms cubic-bezier(.22, 1, .36, 1) !important
}

.hero-brand-lockup.brand-settled.has-combined .hero-logo-combined {
  opacity: 1;
  visibility: visible;
  transition-delay: 0ms, 0ms
}

/* Project Views: slightly higher title + restrained counter/arrows */
.view-title-overlay {
  top: 8vh
}

.view-controls {
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 0;
  background: none;
  backdrop-filter: none;
  border-radius: 0;
  color: #fff
}

.view-counter {
  font: 500 10px/1.2 Montserrat;
  letter-spacing: .22em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .3)
}

.view-arrows {
  display: flex;
  align-items: center;
  gap: 46px
}

.view-arrow {
  width: auto !important;
  height: auto !important;
  min-width: 32px;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  padding: 3px 0 !important;
  color: #fff !important;
  font: 300 25px/1 Montserrat;
  opacity: .86;
  transition: opacity .25s ease, transform .25s ease
}

.view-arrow:hover {
  background: transparent !important;
  border-color: transparent !important;
  opacity: 1;
  transform: scaleX(1.08)
}

.view-dots {
  display: none !important
}

/* Project film: full width and approximately one visible viewport high. */
.video-cinematic {
  height: 100svh;
  min-height: 560px
}

@supports(height:100dvh) {
  .video-cinematic {
    height: 100dvh
  }
}

.video-cinematic .video-box {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  margin: 0
}

.video-cinematic .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

@media(max-width:800px) {
  .hero-brand-lockup {
    width: clamp(150px, 46vw, 220px)
  }

  .view-title-overlay {
    top: 58px
  }

  .view-controls {
    bottom: 22px;
    gap: 8px
  }

  .view-arrows {
    gap: 42px
  }

  .view-arrow {
    font-size: 24px;
    min-width: 38px
  }

  .video-cinematic {
    height: 100svh;
    min-height: 0
  }

  @supports(height:100dvh) {
    .video-cinematic {
      height: 100dvh
    }
  }

  .video-cinematic .video-box {
    height: 100%;
    aspect-ratio: auto
  }

  .video-cinematic .video-box video {
    object-position: center center
  }
}

@media(prefers-reduced-motion:reduce) {

  .hero-brand-lockup .hero-logo-combined,
  .hero-brand-lockup.brand-settled.has-combined .hero-logo-standalone {
    transition-duration: 160ms !important
  }
}

/* Keep the approved final hero anchor while allowing both logo assets to share it. */
.hero-brand-lockup {
  top: 155px;
  left: -85px
}

.hero-brand-lockup .hero-logo {
  top: 0;
  left: 0;
  transform-origin: left bottom
}

.hero-brand-lockup .hero-logo-intro {
  transform-origin: center center
}

/* ===== 2026 responsive + motion refinement pass ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --sans: 'DM Sans', Arial, sans-serif;
  --serif: 'DM Serif Display', Georgia, serif
}

html,
body,
#root {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0
}

html,
body {
  overflow-x: clip
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55
}

.section-title,
.intro h2,
.stat strong,
.loc-head h3,
.contact h2,
.master-grid h3,
.view-title-overlay,
.video-title-overlay {
  font-family: var(--serif)
}

.section-reveal {
  opacity: .46;
  transform: translateY(20px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1)
}

.section-reveal.shown {
  opacity: 1;
  transform: none
}

.reveal:not(.shown) {
  opacity: .42
}

.hero {
  height: 100svh;
  min-height: 640px
}

.hero-copy {
  left: 8vw;
  bottom: 9vh
}

.hero-logo-motion-container {
  --intro-x: 0px;
  --intro-y: 0px;
  --intro-scale: 1;
  position: relative;
  width: clamp(235px, 26vw, 390px);
  height: clamp(72px, 8vw, 118px);
  transform-origin: left bottom;
  will-change: transform;
  transition: transform 1900ms cubic-bezier(.22, 1, .36, 1)
}

.hero-logo-motion-container.at-intro {
  transform: translate3d(var(--intro-x), var(--intro-y), 0) scale(var(--intro-scale))
}

.hero-logo-motion-container img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  top: auto;
  transform: none
}

.aria-standalone {
  opacity: 0;
  transition: opacity 420ms ease
}

.solo-visible .aria-standalone {
  opacity: 1
}

.aria-team4-combined {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1100ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 1100ms
}

.crossfading.has-combined .aria-standalone {
  opacity: 0;
  transition: opacity 1100ms cubic-bezier(.22, 1, .36, 1)
}

.crossfading.has-combined .aria-team4-combined {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s
}

.hero-tagline {
  position: static;
  margin: 20px 0 0;
  font-family: var(--sans);
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: .01em;
  line-height: 1.25
}

.all-projects {
  font-family: var(--sans)
}

.header,
.nav,
.kicker,
.developer-line,
.stat span,
.tabs button,
.view-counter {
  font-family: var(--sans)
}

.intro-img img {
  width: 100%;
  max-width: 100%;
  height: min(70vh, 650px);
  border-radius: 18px
}

.center-copy {
  font-size: 17px
}

.feature-img,
.club>img,
.master-grid img,
.planbox,
.location-map,
.amenity-stage {
  border-radius: 18px;
  overflow: hidden
}

.master-grid img {
  width: 100%
}

.planbox {
  width: min(94vw, 1500px);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 28px)
}

.planbox img {
  width: 100%;
  height: min(76vh, 900px);
  object-fit: contain;
  animation: planFade .42s ease
}

.missing-plan {
  height: min(60vh, 650px);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  color: #333
}

.missing-plan strong {
  font-family: var(--serif);
  font-size: 28px
}

.missing-plan span {
  font-size: 14px
}

@keyframes planFade {
  from {
    opacity: .25
  }

  to {
    opacity: 1
  }
}

.location-map {
  border-radius: 16px
}

.loc p {
  font-size: 14px
}

.loc h4 {
  font-size: 12px
}

.interactive-map iframe {
  filter: none
}

.amenity-stage img {
  height: 100%;
  object-fit: cover;
  animation: amenityFade .8s ease
}

@keyframes amenityFade {
  from {
    opacity: .25
  }

  to {
    opacity: 1
  }
}

.amenity-nav {
  min-width: min(440px, 90%);
  gap: 20px
}

.amenity-nav button {
  font-size: 22px;
  cursor: pointer
}

.amenity-nav>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1
}

.amenity-nav small {
  font-size: 10px;
  letter-spacing: .16em
}

.amenity-nav span {
  font-size: 15px
}

.amenity-list button {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  padding: 18px;
  font: 500 13px/1.4 var(--sans);
  cursor: pointer;
  color: inherit
}

.amenity-list button.active {
  color: var(--dark);
  background: color-mix(in srgb, var(--dark) 8%, transparent)
}

.amenity-list button.active b {
  color: var(--dark)
}

.asset-note {
  font-size: 12px;
  opacity: .68;
  margin-top: 20px
}

.video-cinematic,
.views-cinematic {
  width: 100vw;
  max-width: 100%;
  border-radius: 0
}

.video-cinematic {
  height: 100svh
}

.video-cinematic .video-box {
  border-radius: 0
}

.views-cinematic .view-slide {
  border-radius: 0
}

@media(max-width:800px) {
  .header {
    padding: 0 20px
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 28px 22px;
    gap: 22px;
    font-size: 14px
  }

  .menu {
    font-size: 24px;
    line-height: 1;
    padding: 8px
  }

  .hero {
    height: 100svh;
    min-height: 560px
  }

  .hero-copy {
    left: 22px;
    right: 54px;
    bottom: 9vh;
    padding: 0
  }

  .hero-logo-motion-container {
    width: clamp(190px, 58vw, 270px);
    height: 82px
  }

  .hero-tagline {
    font-size: clamp(17px, 4.6vw, 21px);
    margin-top: 12px
  }

  .all-projects {
    right: 54px;
    bottom: 4vh
  }

  .section {
    padding: 72px 22px
  }

  .section-title {
    font-size: clamp(36px, 11vw, 54px)
  }

  .intro,
  .feature-wrap,
  .loc-head,
  .club,
  .master-grid,
  .contact {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px
  }

  .intro-img img,
  .feature-img,
  .club>img {
    width: 100%;
    height: min(62svh, 520px)
  }

  .statgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .stat {
    min-width: 0;
    padding: 16px 8px
  }

  .stat strong {
    font-size: clamp(21px, 6vw, 29px)
  }

  .stat span {
    font-size: 8px
  }

  .locgrid {
    grid-template-columns: 1fr
  }

  .location-map {
    height: 360px
  }

  .amenity-stage {
    height: 62svh
  }

  .amenity-list {
    grid-template-columns: 1fr 1fr
  }

  .amenity-list button {
    padding: 14px 9px;
    font-size: 11px
  }

  .planbox {
    width: 100%;
    padding: 10px
  }

  .planbox img {
    height: 58svh
  }

  .tabs {
    flex-direction: column
  }

  .tabs button {
    width: 100%;
    text-align: left
  }

  .floor-indicator {
    right: 2px;
    width: 40px;
    height: 40svh
  }

  .floor-marker strong {
    font-size: 12px
  }

  .quick {
    z-index: 80
  }

  .video-title-overlay {
    right: 22px
  }

  .view-title-overlay {
    left: 22px
  }

  .features .feature-wrap {
    width: 100%
  }

  .contact form {
    gap: 14px
  }

  footer {
    padding: 55px 22px 100px
  }

  .building-bg img {
    object-position: 54% 20%
  }
}

@media(max-width:430px) {
  .hero-logo-motion-container {
    width: min(62vw, 245px)
  }

  .amenity-list {
    grid-template-columns: 1fr
  }

  .loc-head h3 {
    font-size: 46px
  }

  .section {
    padding-left: 20px;
    padding-right: 46px
  }

  .amenities.section,
  .floor.section,
  .location.section {
    padding-right: 46px
  }

  .view-title-overlay {
    font-size: 42px
  }

  .video-title-overlay {
    font-size: 40px
  }
}

@media(max-width:360px) {
  .section {
    padding-left: 17px;
    padding-right: 43px
  }

  .header {
    padding: 0 16px
  }

  .hero-copy {
    left: 17px;
    right: 46px
  }

  .hero-logo-motion-container {
    width: 205px
  }

  .quick a {
    padding: 10px 7px;
    font-size: 8px
  }
}

@media(prefers-reduced-motion:reduce) {

  .section-reveal,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }

  .hero-logo-motion-container {
    transition-duration: 260ms !important
  }

  .aria-standalone,
  .aria-team4-combined {
    transition-duration: 180ms !important
  }

  .amenity-stage img,
  .planbox img {
    animation: none !important
  }
}

/* ===== ARIA cinematic opening + Team4-inspired refinement ===== */
.hero.hero-video {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #18211d
}

@supports(height:100dvh) {
  .hero.hero-video {
    height: 100dvh
  }
}

.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0
}

.hero.hero-video .shade {
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 18, 15, .15), rgba(10, 18, 15, .08) 50%, rgba(10, 18, 15, .38))
}

.hero-opening-logo {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: ariaOpening 3.05s cubic-bezier(.22, 1, .36, 1) forwards
}

.hero-opening-logo img {
  width: clamp(190px, 24vw, 350px);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .16))
}

@keyframes ariaOpening {
  0% {
    opacity: 0
  }

  18% {
    opacity: 1
  }

  55% {
    opacity: 1
  }

  100% {
    opacity: 0;
    visibility: hidden
  }
}

.hero-after {
  position: absolute;
  z-index: 3;
  left: 7vw;
  bottom: 9vh;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  animation: heroAfter .8s ease 2.65s forwards
}

.hero-after p {
  margin: 0 0 5px;
  font: 500 13px/1.2 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase
}

.hero-after span {
  font: 400 clamp(18px, 1.5vw, 25px)/1.3 var(--serif);
  font-style: italic
}

.all-projects {
  z-index: 3;
  opacity: 0;
  animation: heroAfter .8s ease 2.75s forwards
}

@keyframes heroAfter {
  to {
    opacity: 1;
    transform: none
  }
}

.intro-copy h2 {
  font-size: clamp(48px, 6vw, 92px);
  line-height: .96;
  letter-spacing: -.035em
}

.intro-copy>p:not(.developer-line) {
  font-size: 18px;
  max-width: 620px
}

.developer-line {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 28px
}

.section-title {
  letter-spacing: -.025em
}

.feature h3 {
  font: 500 17px/1.3 var(--sans);
  letter-spacing: .06em
}

.feature p {
  font-size: 16px;
  line-height: 1.6
}

.club-copy>p,
.master-grid p,
.specbody p,
.loc p {
  font-size: 16px;
  line-height: 1.6
}

.spec button {
  font-size: 15px
}

.club-list span {
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
}

.location .locgrid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .16)
}

.loc {
  padding: 30px 24px 34px;
  border-right: 1px solid rgba(255, 255, 255, .12)
}

.loc:last-child {
  border-right: 0
}

.loc h4 {
  font-size: 12px;
  letter-spacing: .18em;
  margin-bottom: 18px
}

.place-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font: 400 15px/1.45 var(--sans);
  transition: color .25s ease
}

.place-link b {
  font-size: 15px;
  font-weight: 400;
  transition: transform .25s ease
}

.place-link:hover,
.place-link:focus-visible {
  color: #a9b58c;
  outline: none
}

.place-link:hover b,
.place-link:focus-visible b {
  transform: translate(3px, -3px)
}

.place-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .3s ease
}

.place-link:hover:after,
.place-link:focus-visible:after {
  width: 100%
}

.amenities {
  padding-top: 110px
}

.amenity-stage {
  height: min(70svh, 760px)
}

.amenity-list {
  margin-top: 28px
}

.amenity-list button {
  font-size: 14px
}

.amenity-nav span {
  font-size: 17px
}

.asset-note {
  font-size: 14px
}

@media(max-width:800px) {
  .hero.hero-video {
    min-height: 540px
  }

  .hero-video-media {
    object-position: 58% center
  }

  .hero-opening-logo img {
    width: min(58vw, 250px)
  }

  .hero-after {
    left: 20px;
    right: 48px;
    bottom: 10vh
  }

  .hero-after span {
    font-size: 19px
  }

  .intro-copy h2 {
    font-size: clamp(42px, 13vw, 62px)
  }

  .intro-copy>p:not(.developer-line),
  .feature p,
  .club-copy>p,
  .master-grid p,
  .specbody p {
    font-size: 16px
  }

  .feature-wrap,
  .club,
  .master-grid,
  .loc-head {
    display: flex !important;
    flex-direction: column !important
  }

  .feature-img,
  .club>img,
  .master-grid img,
  .location-map {
    order: -1
  }

  .locgrid {
    grid-template-columns: 1fr !important
  }

  .loc {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 24px 0
  }

  .place-link {
    font-size: 15px
  }

  .amenity-stage {
    height: 55svh;
    min-height: 360px
  }

  .amenity-list button {
    font-size: 13px
  }

  .floor-indicator {
    right: 0
  }

  .section {
    max-width: 100%;
    box-sizing: border-box
  }
}

@media(prefers-reduced-motion:reduce) {
  .hero-opening-logo {
    animation: ariaOpeningReduced .3s ease forwards
  }

  .hero-after,
  .all-projects {
    animation: none;
    opacity: 1;
    transform: none
  }

  .hero-video-media {
    object-position: center
  }

  @keyframes ariaOpeningReduced {
    from {
      opacity: 1
    }

    to {
      opacity: 0;
      visibility: hidden
    }
  }
}

/* ===== HERO OPENING ONLY: generated ivory composition -> local project video ===== */
.hero.hero-generated-opening {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
  background: #f4f1e9;
}

@supports(height:100dvh) {
  .hero.hero-generated-opening {
    height: 100dvh
  }
}

.hero-generated-opening .hero-video-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(.22, 1, .36, 1);
  background: #f4f1e9;
}

.hero-generated-opening.is-transitioning .hero-video-media {
  opacity: 1
}

.hero-generated-opening.video-fallback .hero-video-media {
  display: none
}

.hero-generated-opening .shade {
  z-index: 1;
  opacity: 0;
  background: linear-gradient(180deg, rgba(18, 28, 24, .04), rgba(18, 28, 24, .22));
  transition: opacity 1.5s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.hero-generated-opening.is-transitioning .shade {
  opacity: 1
}

.hero-generated-opening.video-fallback .shade {
  opacity: 0
}

.hero-generated-intro {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #26332d;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .96) 0 12%, rgba(250, 248, 243, .7) 31%, rgba(238, 233, 223, .25) 58%, transparent 76%),
    radial-gradient(ellipse at 50% 100%, rgba(221, 214, 198, .34), transparent 58%),
    linear-gradient(145deg, #faf8f3 0%, #f4f1e9 44%, #eee9df 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s cubic-bezier(.22, 1, .36, 1), visibility 0s linear 1.5s;
  pointer-events: none;
}

.hero-generated-opening.is-transitioning .hero-generated-intro {
  opacity: 0;
  visibility: hidden
}

.hero-generated-opening.video-fallback .hero-generated-intro {
  opacity: 1;
  visibility: visible;
  transition: none
}

.hero-generated-intro::before,
.hero-generated-intro::after,
.hero-geometry::before,
.hero-geometry::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(150vw, 2100px);
  height: min(150vw, 2100px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-generated-intro::before {
  background: conic-gradient(from 7deg at 50% 50%, transparent 0 7%, rgba(77, 87, 71, .032) 7% 13%, transparent 13% 25%, rgba(77, 87, 71, .022) 25% 31%, transparent 31% 48%, rgba(77, 87, 71, .028) 48% 55%, transparent 55% 70%, rgba(77, 87, 71, .02) 70% 78%, transparent 78% 100%);
  transform: translate(-50%, -50%) scaleX(1.16) rotate(-5deg);
}

.hero-generated-intro::after {
  width: 72vw;
  height: 120vh;
  border-left: 1px solid rgba(92, 102, 83, .045);
  border-right: 1px solid rgba(92, 102, 83, .035);
  transform: translate(-50%, -50%) rotate(24deg);
}

.hero-geometry {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.hero-geometry::before {
  width: 82vw;
  height: 115vh;
  border-left: clamp(40px, 8vw, 150px) solid rgba(107, 116, 95, .025);
  border-right: clamp(40px, 8vw, 150px) solid rgba(107, 116, 95, .018);
  transform: translate(-50%, -50%) rotate(-27deg);
}

.hero-geometry::after {
  width: min(64vw, 980px);
  height: min(64vw, 980px);
  border: 1px solid rgba(91, 102, 83, .045);
  border-radius: 50%;
  box-shadow: 0 0 0 clamp(55px, 8vw, 150px) rgba(255, 255, 255, .07), 0 0 0 clamp(130px, 18vw, 330px) rgba(96, 107, 87, .012);
}

.hero-intro-identity {
  position: relative;
  z-index: 2;
  width: min(78vw, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(1.5vh);
}

.hero-intro-identity img {
  width: clamp(230px, 35vw, 540px);
  max-width: 78vw;
  height: auto;
  filter: brightness(0) saturate(100%) invert(18%) sepia(9%) saturate(857%) hue-rotate(99deg) brightness(92%) contrast(87%);
}

.hero-intro-line {
  display: block;
  width: clamp(76px, 9vw, 138px);
  height: 1px;
  margin: clamp(28px, 4vh, 46px) 0 clamp(22px, 3vh, 34px);
  background: #8c8664;
  opacity: .72
}

.hero-intro-identity p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(10px, .9vw, 14px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: clamp(.28em, .65vw, .52em);
  text-indent: clamp(.28em, .65vw, .52em);
  color: #454d43;
  white-space: nowrap
}

.hero-generated-opening .hero-after,
.hero-generated-opening .all-projects {
  animation: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .7s ease .12s, transform .7s ease .12s
}

.app-shell.intro-revealed .hero-generated-opening:not(.video-fallback) .hero-after,
.app-shell.intro-revealed .hero-generated-opening:not(.video-fallback) .all-projects {
  opacity: 1;
  transform: none
}

.hero-generated-opening.video-fallback .hero-after {
  color: #26332d
}

.app-shell.intro-revealed .hero-generated-opening.video-fallback .hero-after,
.app-shell.intro-revealed .hero-generated-opening.video-fallback .all-projects {
  opacity: 1;
  transform: none;
  color: #26332d
}

@media(max-width:800px) {
  .hero.hero-generated-opening {
    min-height: 540px
  }

  .hero-generated-opening .hero-video-media {
    object-position: center
  }

  .hero-generated-intro::before {
    width: 190vh;
    height: 190vh;
    transform: translate(-50%, -50%) scaleX(.62) rotate(-4deg)
  }

  .hero-generated-intro::after {
    width: 125vw;
    height: 110vh;
    transform: translate(-50%, -50%) rotate(22deg)
  }

  .hero-geometry::before {
    width: 150vw;
    height: 115vh;
    border-left-width: 13vw;
    border-right-width: 13vw
  }

  .hero-geometry::after {
    width: 92vw;
    height: 92vw;
    box-shadow: 0 0 0 15vw rgba(255, 255, 255, .06), 0 0 0 34vw rgba(96, 107, 87, .012)
  }

  .hero-intro-identity {
    width: 86vw;
    transform: translateY(0)
  }

  .hero-intro-identity img {
    width: clamp(210px, 64vw, 310px);
    max-width: 76vw
  }

  .hero-intro-line {
    margin-top: 30px;
    margin-bottom: 24px
  }

  .hero-intro-identity p {
    font-size: clamp(9px, 2.8vw, 12px);
    letter-spacing: clamp(.2em, 1.4vw, .38em);
    text-indent: clamp(.2em, 1.4vw, .38em)
  }
}

@media(max-width:360px) {
  .hero-intro-identity p {
    font-size: 9px;
    letter-spacing: .18em;
    text-indent: .18em
  }
}

@media(prefers-reduced-motion:reduce) {

  .hero-generated-opening .hero-video-media,
  .hero-generated-opening .shade,
  .hero-generated-intro {
    transition-duration: .35s !important
  }

  .hero-generated-intro {
    transition-delay: 0s !important
  }
}


.specs .section-title {
  text-align: center;
  margin-bottom: clamp(2.25rem, 4vw, 3.75rem)
}

.spec-grid {
  width: min(100%, 1500px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px)
}

.spec-card {
  min-width: 0;
  min-height: 100px;
  padding: clamp(24px, 2.5vw, 34px);
  display: flex;
  flex-direction: column;
  background: var(--cream, #f3f0e8);
  border: 1px solid color-mix(in srgb, var(--olive, #77744f) 20%, transparent);
  border-radius: 18px;
  transition: transform 300ms ease, border-color 300ms ease
}

.spec-card-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: clamp(42px, 5vw, 68px);
  color: var(--olive, #77744f)
}

.spec-card-icon svg {
  display: block;
  width: 26px;
  height: 26px
}

.spec-card h3 {
  margin: 0 0 14px;
  color: var(--ink, var(--dark, #222));
  font: inherit;
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em
}

.spec-card-content {
  display: grid;
  gap: 9px
}

.spec-card-content p {
  margin: 0;
  color: color-mix(in srgb, var(--ink, #222) 72%, transparent);
  font-size: clamp(.95rem, 1vw, 1.04rem);
  line-height: 1.6
}

@media (hover:hover) and (pointer:fine) {
  .spec-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--olive, #77744f) 42%, transparent)
  }
}

@media (max-width:980px) {
  .spec-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .spec-card {
    min-height: 260px
  }
}

@media (max-width:620px) {
  .specs .section-title {
    margin-bottom: 2rem
  }

  

  .spec-card {
    min-height: 0;
    padding: 24px 22px 26px;
    border-radius: 16px
  }

  .spec-card-icon {
    margin-bottom: 34px
  }

  .spec-card h3 {
    font-size: 1.22rem
  }

  .spec-card-content p {
    font-size: .96rem;
    line-height: 1.6
  }
}

@media (prefers-reduced-motion:reduce) {
  .spec-card {
    transition: none
  }

  .spec-card:hover {
    transform: none
  }
}


/* TARGETED CHANGE 1: statistics moved into the existing intro/image composition */
.intro.intro-stats {
  align-items: center
}

.intro-stats-copy .section-title {
  margin-bottom: 34px
}

.intro-stats-copy .section-title.reveal {
  opacity: 1;
  transform: none
}

.intro-statgrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: center
}

.intro-statgrid .stat {
  min-height: 118px
}

.intro-statgrid .stat:last-child {
  grid-column: 1/-1
}

/* TARGETED CHANGE 2: existing white ARIA logo in the post-opening hero reveal */
.hero-after {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.hero-after-logo {
  width: clamp(118px, 11vw, 180px);
  height: auto;
  object-fit: contain;
  margin: 0 0 10px
}

.hero-generated-opening.video-fallback .hero-after-logo {
  filter: invert(1)
}

/* TARGETED CHANGE 3: Above Luxury feature-controlled image carousel */
.feature-image-stage {
  height: min(76vh, 780px);
  position: relative;
  overflow: hidden;
  border-radius: 18px
}

.features .feature-image-stage .feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity .65s ease, transform .9s ease
}

.features .feature-image-stage .feature-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1
}

.features .feature-list .feature {
  width: 100%;
  appearance: none;
  background: none;
  color: inherit;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color .3s ease, border-color .3s ease, background-color .3s ease
}

.features .feature-list .feature.active {
  border-bottom-color: var(--wine)
}

.features .feature-list .feature.active>span,
.features .feature-list .feature.active h3 {
  color: var(--wine)
}

.features .feature-list .feature:focus-visible {
  outline: 1px solid var(--wine);
  outline-offset: 4px
}

@media(max-width:800px) {
  .intro-stats-copy {
    width: 100%
  }

  .intro-statgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .intro-statgrid .stat:last-child {
    grid-column: 1/-1
  }

  .feature-image-stage {
    order: -1;
    width: 100%;
    height: min(62svh, 520px)
  }
}


/* C4 CHANGE 1 ONLY: refine post-opening ARIA logo size/compactness/spacing */
.hero-after-logo {
  width: clamp(138px, 1vw, 185px);
  height: auto;
  max-height: clamp(138px, 1vw, 205px);
  object-fit: contain;
  object-position: center bottom;
  margin: 6px 0 6px;
}

@media(max-width:800px) {
  .hero-after-logo {
    width: clamp(128px, 31vw, 175px);
    max-height: clamp(128px, 31vw, 175px);
    margin: 5px 0 1px;
  }
}


/* C5 WATERMARK TEST ONLY: decorative ARIA mark behind selected content sections */
.watermark-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.watermark-section>.aria-watermark {
  position: absolute;
  z-index: -1;
  width: clamp(350px, 38vw, 620px);
  height: auto;
  opacity: .035;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.watermark-section.dark>.aria-watermark {
  opacity: .038;
  mix-blend-mode: screen;
}

.watermark-section:not(.dark)>.aria-watermark {
  opacity: .032;
  filter: invert(1);
  mix-blend-mode: multiply;
}

/* Deliberately varied placement so the mark reads as architectural texture, not wallpaper. */
.wm-intro>.aria-watermark {
  width: clamp(390px, 42vw, 650px);
  right: -14%;
  top: 12%;
  transform: rotate(7deg)
}

.wm-features>.aria-watermark {
  left: -13%;
  bottom: -20%;
  transform: rotate(-8deg)
}

.wm-location>.aria-watermark {
  width: clamp(400px, 40vw, 640px);
  right: -11%;
  top: 22%;
  transform: rotate(10deg)
}

.wm-amenities>.aria-watermark {
  right: -15%;
  bottom: -18%;
  transform: rotate(-5deg)
}

.wm-club>.aria-watermark {
  left: -12%;
  top: 10%;
  transform: rotate(8deg)
}

.wm-master>.aria-watermark {
  right: -10%;
  top: -10%;
  transform: rotate(-9deg)
}

.wm-floor>.aria-watermark {
  left: -15%;
  bottom: -15%;
  transform: rotate(6deg)
}

.wm-specs>.aria-watermark {
  right: -12%;
  top: 24%;
  transform: rotate(-7deg)
}

.wm-contact>.aria-watermark {
  width: clamp(380px, 39vw, 610px);
  left: 37%;
  bottom: -24%;
  transform: rotate(5deg)
}

@media(max-width:800px) {
  .watermark-section>.aria-watermark {
    width: clamp(310px, 92vw, 470px);
    opacity: .026
  }

  .watermark-section.dark>.aria-watermark {
    opacity: .032
  }

  .watermark-section:not(.dark)>.aria-watermark {
    opacity: .026
  }

  .wm-intro>.aria-watermark {
    right: -42%;
    top: 8%
  }

  .wm-features>.aria-watermark {
    left: -44%;
    bottom: 2%
  }

  .wm-location>.aria-watermark {
    right: -40%;
    top: 31%
  }

  .wm-amenities>.aria-watermark {
    right: -45%;
    bottom: 7%
  }

  .wm-club>.aria-watermark {
    left: -42%;
    top: 14%
  }

  .wm-master>.aria-watermark {
    right: -39%;
    top: 4%
  }

  .wm-floor>.aria-watermark {
    left: -44%;
    bottom: 3%
  }

  .wm-specs>.aria-watermark {
    right: -42%;
    top: 33%
  }

  .wm-contact>.aria-watermark {
    left: -22%;
    bottom: -8%
  }
}


/* C6 WATERMARK SIZE CORRECTION ONLY:
   giant, centered, unrotated, uncropped ARIA mark contained within each section */
.watermark-section>.aria-watermark,
.watermark-section.dark>.aria-watermark,
.watermark-section:not(.dark)>.aria-watermark {
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;

  width: auto !important;
  height: 90% !important;
  max-width: 92% !important;
  max-height: 90% !important;

  transform: translate(-50%, -50%) !important;
  object-fit: contain !important;

  opacity: .025 !important;
  pointer-events: none !important;
  user-select: none;
  -webkit-user-drag: none;
}

.watermark-section.dark>.aria-watermark {
  opacity: .028 !important;
  filter: none !important;
  mix-blend-mode: screen;
}

.watermark-section:not(.dark)>.aria-watermark {
  opacity: .023 !important;
  filter: invert(1) !important;
  mix-blend-mode: multiply;
}

@media(max-width:800px) {

  .watermark-section>.aria-watermark,
  .watermark-section.dark>.aria-watermark,
  .watermark-section:not(.dark)>.aria-watermark {
    left: 50% !important;
    top: 50% !important;
    width: auto !important;
    height: 90% !important;
    max-width: 92% !important;
    max-height: 90% !important;
    transform: translate(-50%, -50%) !important;
  }

  .watermark-section.dark>.aria-watermark {
    opacity: .027 !important
  }

  .watermark-section:not(.dark)>.aria-watermark {
    opacity: .022 !important
  }
}


/* C8 ONLY: manual Above Luxury image controls layered inside existing image stage */
.feature-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(18, 18, 18, .24);
  color: #fff;
  font: 500 38px/1 Arial, sans-serif;
  cursor: pointer;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.feature-carousel-prev {
  left: 22px
}

.feature-carousel-next {
  right: 22px
}

.feature-carousel-arrow:hover {
  background: rgba(18, 18, 18, .38);
  border-color: rgba(255, 255, 255, .5)
}

.feature-carousel-arrow:active {
  transform: translateY(-50%) scale(.96)
}

.feature-carousel-arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .9);
  outline-offset: 3px
}

.feature-carousel-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.feature-carousel-dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
  transition: background .25s ease, transform .25s ease, opacity .25s ease;
}

.feature-carousel-dot.active {
  background: #fff;
  transform: scale(1.12);
}

.feature-carousel-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px
}

@media(max-width:800px) {
  .feature-carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 34px;
  }

  .feature-carousel-prev {
    left: 14px
  }

  .feature-carousel-next {
    right: 14px
  }

  .feature-carousel-dots {
    bottom: 15px;
    gap: 8px
  }

  .feature-carousel-dot {
    width: 8px;
    height: 8px;
    min-width: 8px
  }
}

/* =========================================================
   CLIENT REVISION PASS: League title, editorial stats,
   Above Luxury kicker, location distances, editorial specs,
   and the rebuilt footer.
   ========================================================= */

/* 1. League of Its Own title: sentence case + italic, luxury feel */
.league-title {
  font-style: italic;
  text-transform: none;
  letter-spacing: -.01em;
}

/* Editorial "League of Its Own" details: no cards, no boxes, elegant dividers */
.intro-statgrid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 640px;
}

.intro-statgrid .stat {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 24px 2px;
  text-align: left;
}

.intro-statgrid .stat span {
  order: 1;
  margin-top: 0;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .6;
}

.intro-statgrid .stat strong {
  order: 2;
  font: 400 26px/1 var(--serif);
  color: var(--ink);
  white-space: nowrap;
}

@media(max-width:800px) {
  .intro-statgrid {
    max-width: none
  }

  .intro-statgrid .stat {
    padding: 18px 0
  }

  .intro-statgrid .stat strong {
    font-size: 21px
  }
}

/* 5. "Above Luxury" heading — restyled in place (wording and position unchanged)
   to match the supplied reference: a small letter-spaced serif-adjacent kicker
   with a short accent rule beneath, rather than the large section-title treatment. */
.features .luxury-kicker {
  font: 500 13px/1.2 var(--sans);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .34em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 46px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wine);
  display: inline-block;
}

@media(max-width:800px) {
  .features .luxury-kicker {
    margin: 0 0 32px;
    padding-bottom: 12px;
    font-size: 11px;
    letter-spacing: .26em
  }
}

/* 6. Location Highlights: distance chip replaces the arrow, extra breathing room */
.locgrid {
  gap: 0
}

.loc {
  padding: 34px 26px 40px
}

.place-link {
  padding: 14px 0
}

.place-link b {
  font: 500 12px/1 var(--sans);
  letter-spacing: .03em;
  color: color-mix(in srgb, #fff 68%, transparent);
  white-space: nowrap;
  flex-shrink: 0;
}

.place-link:hover b,
.place-link:focus-visible b {
  color: #fff;
  transform: none
}

@media(max-width:800px) {
  .loc {
    padding: 26px 0
  }
}

/* 7. Specifications: editorial brochure layout — no cards, no borders around content */
.specs .section-title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem)
}

.spec-editorial {
  width: min(100%, 940px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.spec-block {
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.spec-block h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
}

.spec-block h3 small {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
}

.spec-sub {
  margin-top: 22px
}

.spec-sub:first-of-type {
  margin-top: 0
}

.spec-sub h4 {
  margin: 0 0 10px;
  font: 500 11px/1.3 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.spec-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.spec-block li {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  line-height: 1.68;
  color: color-mix(in srgb, var(--ink) 82%, transparent);
}

.spec-block li:before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 1px;
  background: var(--wine);
}

@media(max-width:800px) {
  .spec-block {
    padding: 32px 0
  }

  .spec-block h3 {
    font-size: 1.3rem
  }

  .spec-block li {
    font-size: 15px
  }
}

/* =========================================================
   FOOTER REBUILD — matches the supplied reference footer:
   logo lockups, quick links, contact, experience-center map,
   divider, and RERA / copyright bottom bar.
   ========================================================= */
.site-footer {
  --footer-gold: #c8a06a;
  display: block !important;
  padding: 70px 7vw 34px;
  background: #111;
  color: #cfcfcf;
  font-size: 13px;
}

.site-footer>div {
  display: block
}

.site-footer .footer-top {
  display: grid
}

.site-footer .footer-bottom {
  display: flex
}

.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.footer-logo-card{
  width: 220px;      /* Same width for all */
  height: 110px;     /* Same height for all */
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  background: #1c1c1c;
  border: 1px solid #ffffff12;
  border-radius: 10px;
}

.footer-logo-aria img {
  width: auto;
  height: 34px;
  object-fit: contain;
  margin: 0
}

.footer-logo-yula img {
  width: auto;
  height: 38px;
  object-fit: contain;
  margin: 0
}

.footer-logo-team4 img {
  width: auto;
  height: 38px;
  object-fit: contain;
  margin: 0;
}

.footer-team4-mark {
  font: 600 22px/1 var(--sans);
  letter-spacing: .02em;
  color: #fff
}

.footer-team4-sub {
  font: 500 9px/1 var(--sans);
  letter-spacing: .36em;
  color: #a9a9a9;
  margin-top: 2px
}

.footer-team4-brands {
  display: flex;
  gap: 10px;
  margin-top: 10px
}

.footer-team4-brands em {
  font: 400 8px/1 var(--sans);
  font-style: normal;
  letter-spacing: .04em;
  color: #777;
  text-transform: uppercase
}

.footer-heading {
  margin: 0 0 20px;
  font: 600 11px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--footer-gold);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 40px;
  row-gap: 14px;
}

.footer-links a {
  font-size: 16px;
  font-weight: 500;
  color: #d8d8d8;
  transition: color .2s ease;
}

.footer-contact-line {
  font-size: 14px;
  color: #d8d8d8;
  transition: color .2s ease;
}

.footer-links a:hover,
.footer-contact-line:hover {
  color: #fff
}

.footer-col>.footer-contact-line {
  display: block;
  margin-bottom: 12px
}

.footer-address {
  margin: 6px 0 18px;
  font-size: 13px;
  line-height: 1.65;
  color: #a8a8a8;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ffffff2a;
  display: grid;
  place-items: center;
  color: #d8d8d8;
  transition: border-color .2s ease, color .2s ease;
}

.footer-social a:hover {
  border-color: #fff;
  color: #fff
}

.footer-hours {
  margin: 0 0 16px;
  font-size: 13px;
  color: #a8a8a8
}

.footer-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ffffff14;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
  filter: saturate(.85) contrast(.97)
}

.footer-map-link {
  position: absolute;
  left: 14px;
  top: 14px;
  background: #fff;
  color: #111;
  font: 500 11px/1 var(--sans);
  letter-spacing: .03em;
  padding: 9px 14px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
}

.footer-divider {
  height: 1px;
  margin: 52px 0 26px;
  background: linear-gradient(90deg, var(--footer-gold), rgba(200, 160, 106, .12));
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:24px;
}

.footer-bottom-left{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-bottom-right{
  text-align:right;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px
}

.footer-legal-links a {
  font-size: 12px;
  color: #bbb
}

.footer-legal-links a:hover {
  color: #fff
}

.footer-copyright {
  margin: 0;
  font-size: 12px;
  color: #8c8c8c
}



.footer-rera {
  margin: 0;
  font-size: 13px;
  color: #c9c9c9
}

.footer-rera strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: .03em
}

@media(max-width:1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px
  }

  .footer-experience {
    grid-column: 1/-1
  }
}

@media(max-width:800px) {
  .site-footer {
    padding: 56px 22px 30px
  }

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

  .footer-logos {
    flex-direction: row;
    flex-wrap: wrap
  }

  .footer-logo-card img{
    max-width: 90%;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom-right {
  text-align: right;
}

.footer-divider {
  margin: 40px 0 22px;
}
}

.spec-luxury {
  max-width: 1100px;
  margin: auto
}

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

.spec-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(212, 170, 91, .35)
}

.spec-item h3 {
  color: #d4aa5b;
  font-size: 1.05rem;
  margin: 0 0 8px
}

.spec-item p {
  margin: 0;
  color: #ddd;
  line-height: 1.7
}

.spec-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
  color: #cfc7b8
}

@media(max-width:768px) {
  .spec-grid {
    grid-template-columns: 1fr
  }
}

.footer-logos {
  display: flex;
  flex-direction: column;
  align-items: center;   /* or flex-start */
  gap: 24px;
}

.footer-logo-stack {
  display: grid;
  gap: 18px
}

.footer-logo-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain
}

/* ==========================================
   PROJECTS DROPDOWN
========================================== */

.nav-dropdown{
  position:relative;
  list-style:none;
}

.nav-dropdown > a{
  display:flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  position:relative;
}

/* Remove navbar underline/hover line */
.nav-dropdown > a::before,
.nav-dropdown > a::after,
.dropdown-menu a::before,
.dropdown-menu a::after{
  display:none !important;
  content:none !important;
}

/* ===========================
 First Level Dropdown
=========================== */

.dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;

  min-width:150px;
  width:max-content;
  max-width:180px;

  padding:6px 0;
  margin:0;

  background:#fff;
  border-radius:10px;
  list-style:none;

  box-shadow:0 12px 30px rgba(0,0,0,.12);

  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.25s ease;

  z-index:9999;
}

.nav-dropdown:hover > .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* ===========================
 Dropdown Items
=========================== */

.dropdown-menu li{
  position:relative;
}

.dropdown-menu a{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:10px 14px;

  color:#222;
  text-decoration:none;
  white-space:nowrap;
  font-size:13px;

  border:none;
  background:none;

  transition:.2s;
}

.dropdown-menu a:hover{
  background:#f5f5f5;
  color:#000;
}

/* ===========================
 Second Level
=========================== */

.submenu{
  position:absolute;
  top:0;
  left:100%;

  min-width:145px;
  width:max-content;
  max-width:170px;

  padding:6px 0;
  margin-left:4px;

  background:#fff;
  border-radius:10px;
  list-style:none;

  box-shadow:0 12px 30px rgba(0,0,0,.12);

  opacity:0;
  visibility:hidden;
  transform:translateX(8px);

  transition:.25s ease;

  z-index:9999;
}

.has-submenu:hover > .submenu{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

/* Remove borders */

.dropdown-menu,
.submenu,
.dropdown-menu li,
.dropdown-menu a{
  border:none;
}

/* ===========================
 Mobile
=========================== */

@media (max-width:768px){

  .dropdown-menu,
  .submenu{
      position:static;
      opacity:1;
      visibility:visible;
      transform:none;

      display:none;

      width:100%;
      max-width:none;
      min-width:0;

      margin:0;
      padding-left:18px;

      background:transparent;
      box-shadow:none;
  }

  .nav-dropdown.open > .dropdown-menu{
      display:block;
  }

  .has-submenu.open > .submenu{
      display:block;
  }

  .dropdown-menu a{
      padding:10px 0;
  }
}

/* FORCE 3-COLUMN SPECIFICATIONS */
.spec-grid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0,1fr)) !important;
  gap:40px !important;
}

@media (max-width:1100px){
  .spec-grid{
      grid-template-columns:repeat(2, minmax(0,1fr)) !important;
  }
}

@media (max-width:768px){
  .spec-grid{
      grid-template-columns:1fr !important;
  }
}