/* Core visual system and layout for the virtual sales gallery. */
:root {
      --ivory: #f7f1e6;
      --ivory-soft: #fbf7ef;
      --champagne: #c9a75f;
      --champagne-deep: #9b7a33;
      --charcoal: #2d2924;
      --stone: #8d8678;
      --stone-soft: #d8ccba;
      --beige: #ede2d0;
      --paper: rgba(255, 251, 243, 0.88);
      --glass: rgba(42, 36, 29, 0.68);
      --line: rgba(100, 82, 48, 0.18);
      --shadow: 0 26px 80px rgba(45, 41, 36, 0.18);
      --heading: "Cormorant Garamond", Georgia, serif;
      --body: "Manrope", Arial, sans-serif;
      --header-height: 72px;
      --space-section: clamp(84px, 9vw, 132px);
      --space-edge: clamp(22px, 5vw, 86px);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--ivory);
    }

    body {
      margin: 0;
      color: var(--charcoal);
      font-family: var(--body);
      background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,0.96), transparent 30%),
        radial-gradient(circle at 78% 10%, rgba(219,197,158,0.22), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.38), transparent 38%),
        var(--ivory);
      overflow-x: hidden;
      overflow: hidden;
      cursor: default;
    }

    .page-wrapper {
      height: 100vh;
      height: 100svh;
      overflow-x: hidden;
      overflow-y: auto;
      scroll-behavior: smooth;
      scroll-snap-type: y mandatory;
      overscroll-behavior-y: contain;
    }

    .fullscreen-section {
      min-height: 100vh;
      min-height: 100svh;
      height: 100vh;
      height: 100svh;
      width: 100%;
      overflow: hidden;
      position: relative;
      scroll-snap-align: start;
      scroll-snap-stop: always;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      opacity: 0.34;
      background-image:
        url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E"),
        linear-gradient(115deg, transparent 0 34%, rgba(204, 177, 128, 0.12) 35%, transparent 48% 100%);
      mix-blend-mode: multiply;
    }
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(120deg, transparent 8%, rgba(142, 118, 72, 0.14) 8.4%, transparent 10%),
    linear-gradient(28deg, transparent 32%, rgba(255, 255, 255, 0.58) 32.6%, transparent 36%),
    linear-gradient(152deg, transparent 68%, rgba(160, 132, 78, 0.1) 68.6%, transparent 72%);
}

    .page-loader {
      position: fixed;
      inset: 0;
      z-index: 140;
      display: grid;
      place-items: center;
      color: var(--ivory-soft);
      background:
        radial-gradient(circle at 50% 42%, rgba(201, 167, 95, 0.18), transparent 28%),
        linear-gradient(135deg, #201b16, #13110f);
      transition: opacity 0.9s ease, visibility 0.9s ease;
    }

    .page-loader > * {
      grid-area: 1 / 1;
    }

    .page-loader span {
      margin-top: -92px;
      color: var(--champagne);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.38em;
      text-transform: uppercase;
    }

    .page-loader strong {
      font-family: var(--heading);
      font-size: clamp(38px, 6vw, 82px);
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    .page-loader i {
      width: min(260px, 54vw);
      height: 1px;
      margin-top: 104px;
      overflow: hidden;
      background: rgba(255, 251, 243, 0.14);
    }

    .page-loader i::after {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--champagne), transparent);
      animation: loaderLine 1.15s cubic-bezier(0.77, 0, 0.175, 1) infinite;
    }

    body:not(.is-loading) .page-loader {
      opacity: 0;
      visibility: hidden;
    }

    @keyframes loaderLine {
      from { transform: translateX(-105%); }
      to { transform: translateX(105%); }
    }

    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }

    .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(18px, 2.4vw, 34px);
      padding: 12px clamp(24px, 4vw, 64px);
      color: var(--ivory-soft);
      background: linear-gradient(180deg, rgba(23, 20, 17, 0.52), rgba(23, 20, 17, 0.12));
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
    }

    .site-nav.scrolled {
      color: var(--charcoal);
      background: rgba(251, 247, 239, 0.78);
      border-bottom-color: var(--line);
      box-shadow: 0 10px 32px rgba(45,41,36,0.06);
    }

    .brand {
      display: flex;
      align-items: center;
      min-width: 220px;
      gap: 16px;
      padding-right: clamp(8px, 1.4vw, 22px);
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .brand-mark {
      position: relative;
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      color: var(--champagne);
      border: 1px solid currentColor;
      border-right-color: transparent;
      border-radius: 50%;
      font-family: var(--heading);
      font-size: 21px;
      font-weight: 700;
      line-height: 1;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      bottom: 9px;
      width: 4px;
      background: currentColor;
    }

    .brand-mark::before { left: 13px; height: 15px; box-shadow: 6px -7px 0 currentColor, 12px -12px 0 currentColor; }
    .brand-mark::after { right: -3px; top: 18px; width: 14px; height: 3px; }

    .brand-text strong {
      display: block;
      font-family: var(--heading);
      font-size: 19px;
      font-weight: 600;
      letter-spacing: 0.17em;
    }

    .brand-text span {
      display: block;
      margin-top: -2px;
      font-size: 9px;
      letter-spacing: 0.34em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(18px, 2.1vw, 30px);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      min-width: 220px;
    }

    .link-underline {
      position: relative;
      opacity: 0.78;
    }

    .link-underline::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -9px;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.28s ease;
    }

    .link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 40px;
      padding: 11px 18px;
      color: var(--charcoal);
      background: linear-gradient(135deg, #f1dcaa, #bd9550);
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 999px;
      box-shadow: 0 12px 30px rgba(82, 63, 28, 0.18);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: transform 0.25s ease;
    }

    .cta:hover { transform: translateY(-1px); }

    .ghost-button,
    .modal-close {
      color: inherit;
      background: rgba(255, 251, 243, 0.72);
      border: 1px solid var(--line);
      border-radius: 999px;
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    }

    .hero {
      background: #191612;
      color: var(--ivory-soft);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -18%;
      z-index: 3;
      pointer-events: none;
      background:
        linear-gradient(105deg, transparent 24%, rgba(255, 236, 190, 0.12) 42%, transparent 58%),
        radial-gradient(circle at var(--light-x, 46%) var(--light-y, 38%), rgba(227, 191, 116, 0.18), transparent 24%);
      mix-blend-mode: screen;
      opacity: 0.58;
      animation: heroLight 12s ease-in-out infinite alternate;
    }

    @keyframes heroLight {
      from { transform: translate3d(-2%, 0, 0) rotate(-2deg); opacity: 0.42; }
      to { transform: translate3d(2%, -1%, 0) rotate(2deg); opacity: 0.68; }
    }

    .hero-gateway {
      position: relative;
      display: flex;
      height: 100%;
      width: 100%;
    }

    .gateway-panel {
      position: relative;
      flex: 1 1 25%;
      display: flex;
      align-items: flex-end;
      height: 100%;
      padding: clamp(88px, 12svh, 130px) clamp(28px, 4vw, 64px) clamp(46px, 7svh, 72px);
      overflow: hidden;
      color: inherit;
      font: inherit;
      text-align: left;
      background: transparent;
      border: 0;
      border-right: 1px solid rgba(255,255,255,0.11);
      isolation: isolate;
      transition: flex 1.05s cubic-bezier(.19,1,.22,1);
    }

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

    .gateway-panel::before {
      content: "";
      position: absolute;
      inset: -4%;
      z-index: -2;
      background-size: cover;
      background-position: center;
      transform: scale(1.02) translate3d(var(--parallax-x, 0), var(--drift, 0), 0);
      transition: transform 1.35s cubic-bezier(.19,1,.22,1), filter 1.2s ease;
    }

    .gateway-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 50% 78%, rgba(205, 164, 91, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(14,12,10,0.38), rgba(14,12,10,0.8)),
        linear-gradient(90deg, rgba(16,14,12,0.58), rgba(16,14,12,0.18) 52%, rgba(16,14,12,0.32));
      transition: opacity 0.8s ease, background 0.8s ease;
    }

    .gateway-panel .panel-content::after {
      content: "";
      position: absolute;
      left: -18px;
      right: -24px;
      bottom: -18px;
      height: 150%;
      z-index: -1;
      background: linear-gradient(180deg, transparent, rgba(12, 10, 8, 0.24));
      opacity: 0.72;
    }

    .gateway-panel::marker { content: ""; }

    .gateway-panel .panel-content::before {
      content: "";
      display: block;
      width: 42px;
      height: 1px;
      margin-bottom: 22px;
      background: linear-gradient(90deg, var(--champagne), transparent);
      opacity: 0.72;
      transform-origin: left;
      transition: transform 0.75s cubic-bezier(.19,1,.22,1), opacity 0.75s ease;
    }

    .hero-gateway:hover .gateway-panel { flex-basis: 20%; }
    .hero-gateway .gateway-panel:hover { flex-basis: 40%; }
    .gateway-panel:hover::before { transform: scale(1.085) translate3d(var(--parallax-x, 0), calc(var(--drift, 0) - 8px), 0);  }
    .gateway-panel:hover::after {
      opacity: 0.94;
      background:
        radial-gradient(circle at 50% 74%, rgba(218, 177, 102, 0.24), transparent 32%),
        linear-gradient(180deg, rgba(14,12,10,0.3), rgba(14,12,10,0.74)),
        linear-gradient(90deg, rgba(16,14,12,0.5), rgba(16,14,12,0.12) 52%, rgba(16,14,12,0.28));
    }

    .panel-content {
      position: relative;
      max-width: 330px;
      padding-top: 34px;
      transform: translateY(10px);
      text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
      transition: transform 0.78s cubic-bezier(.19,1,.22,1), opacity 0.78s ease;
    }

    .gateway-panel:hover .panel-content { transform: translateY(0); }
    .gateway-panel:hover .panel-content::before { transform: scaleX(1.6); opacity: 0.95; }

    .panel-kicker,
    .eyebrow {
      color: var(--champagne);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.26em;
      text-transform: uppercase;
    }

    .gateway-panel h1,
    .gateway-panel h2 {
      margin: 13px 0 12px;
      font-family: var(--heading);
      font-size: clamp(31px, 3.15vw, 52px);
      font-weight: 600;
      line-height: 0.98;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .gateway-panel p {
      max-width: 292px;
      margin: 0;
      color: rgba(255, 251, 243, 0.68);
      font-size: 13px;
      line-height: 1.72;
    }

    .panel-index {
      position: absolute;
      top: clamp(96px, 13vh, 132px);
      left: clamp(28px, 4vw, 64px);
      color: rgba(255,255,255,0.28);
      font-family: var(--heading);
      font-size: 28px;
    }

    .section {
      display: grid;
      align-items: center;
      padding: 0;
    }

    .section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0;
      background:
        linear-gradient(90deg, transparent 0 9%, rgba(150, 126, 79, 0.08) 9.1%, transparent 9.3% 100%),
        linear-gradient(90deg, transparent 0 72%, rgba(150, 126, 79, 0.06) 72.1%, transparent 72.3% 100%);
      transition: opacity 1s ease;
    }

    .section.in-view::before {
      opacity: 1;
    }

    .section.dark {
      color: var(--ivory-soft);
      background:
        linear-gradient(rgba(24,21,18,0.78), rgba(24,21,18,0.84)),
        var(--image) center / cover;
    }

    .section-inner {
      width: min(1180px, 100%);
      height: 100%;
      max-height: 100%;
      margin: 0 auto;
      display: grid;
      align-items: center;
      align-content: center;
      padding: var(--header-height, 72px) var(--space-edge) 72px;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .reveal {
      opacity: 0;
      transform: translateY(38px);
      transition:
        opacity 1s ease,
        transform 1.1s cubic-bezier(.19,1,.22,1);
    }

    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .section-header {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
      gap: clamp(22px, 5vw, 72px);
      align-items: end;
      margin-bottom: clamp(18px, 3.6svh, 38px);
    }

    h2.section-title {
      margin: 10px 0 0;
      font-family: var(--heading);
      font-size: clamp(30px, 4.4vw, 58px);
      font-weight: 600;
      line-height: 0.98;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .section-copy {
      margin: 0;
      color: var(--stone);
      font-size: clamp(13px, 1.1vw, 16px);
      line-height: 1.65;
    }

    .dark .section-copy { color: rgba(255,251,243,0.75); }

    .profile-grid,
    .residence-grid,
    .immersion-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(12px, 1.5vw, 18px);
    }

    .philosophy-card,
    .residence-card,
    .immersion-card,
    .lead-panel,
    .landmark-list {
      background: rgba(255, 251, 243, 0.74);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .philosophy-card {
      min-height: 0;
      padding: clamp(18px, 2.3vw, 28px);
      border-radius: 6px;
    }

    .card-number {
      color: var(--champagne-deep);
      font-family: var(--heading);
      font-size: clamp(25px, 3vw, 34px);
    }

    .philosophy-card h3,
    .residence-card h3,
    .amenity-card h3,
    .immersion-card h3 {
      margin: 16px 0 8px;
      font-family: var(--heading);
      font-size: clamp(22px, 2.5vw, 28px);
      font-weight: 600;
      line-height: 1.04;
    }

    .philosophy-card p,
    .residence-card p,
    .immersion-card p,
    .gallery-tile p {
      margin: 0;
      color: var(--stone);
      font-size: clamp(12px, 1vw, 14px);
      line-height: 1.55;
    }

    .cinematic-render {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
      height: min(58svh, 570px);
      min-height: 0;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 24px 56px rgba(0,0,0,0.22);
    }

    .render-image,
    .map-visual {
      position: relative;
      min-height: 0;
      height: 100%;
      background: var(--image) center / cover;
      overflow: hidden;
    }

    .render-image::after,
    .map-visual::after,
    .immersion-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(16,14,12,0.45));
    }

    .render-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 32px;
      padding: clamp(22px, 3vw, 42px);
      color: var(--ivory-soft);
      background: rgba(31,27,23,0.9);
    }

    .render-copy h3 {
      margin: 0 0 16px;
      font-family: var(--heading);
      font-size: clamp(26px, 3vw, 42px);
      font-weight: 600;
      line-height: 1;
    }

    .spec-grid {
      display: grid;
      gap: 6px;
    }

    .spec {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255,255,255,0.13);
      color: rgba(255,251,243,0.78);
    }

    .spec strong {
      color: var(--ivory-soft);
      text-align: right;
    }

    .residence-card {
      overflow: hidden;
      border-radius: 6px;
      transition: transform 0.28s ease;
    }

    .residence-card:hover,
    .immersion-card:hover,
    .amenity-card:hover,
    .gallery-tile:hover {
      transform: translateY(-6px);
    }

    .card-image,
    .amenity-image,
    .immersion-visual,
    .gallery-image {
      position: relative;
      min-height: 0;
      height: clamp(150px, 22svh, 220px);
      background: var(--image) center / cover;
      overflow: hidden;
    }

    .card-image::after,
    .amenity-image::after,
    .gallery-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 34%, rgba(20,17,14,0.58));
    }

    .card-body {
      padding: clamp(16px, 2vw, 22px);
    }

    .meta-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin: 14px 0;
      padding: 10px 0;
      border-block: 1px solid var(--line);
      color: var(--stone);
      font-size: 13px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--champagne-deep);
      border: 0;
      background: transparent;
      padding: 0;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .amenity-grid,
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: clamp(10px, 1.4vw, 16px);
    }

    .amenity-card,
    .gallery-tile {
      position: relative;
      min-height: 0;
      height: clamp(150px, 26svh, 250px);
      grid-column: span 2;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 6px;
      box-shadow: var(--shadow);
      transition: transform 0.28s ease;
    }

    .amenity-card:nth-child(1),
    .gallery-tile:nth-child(1) { grid-column: span 3; }
    .amenity-card:nth-child(2),
    .gallery-tile:nth-child(2) { grid-column: span 3; }

    .amenity-image,
    .gallery-image {
      position: absolute;
      inset: 0;
      min-height: 100%;
      transition: transform 0.65s ease;
    }

    .amenity-card:hover .amenity-image,
    .gallery-tile:hover .gallery-image {
      transform: scale(1.07);
    }

    .amenity-content,
    .gallery-content {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 18px;
      z-index: 2;
      color: var(--ivory-soft);
    }

    .amenity-content h3,
    .gallery-content h3 {
      margin: 0;
      font-family: var(--heading);
      font-size: clamp(21px, 2.4vw, 28px);
      font-weight: 600;
    }

    .immersion-card {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      transition: transform 0.55s cubic-bezier(.19,1,.22,1);
      isolation: isolate;
    }

    .immersion-visual {
      height: clamp(170px, 28svh, 260px);
      min-height: 0;
      background: var(--image) center / cover;
      transform: scale(1.01);
      transition: transform 1.1s cubic-bezier(.19,1,.22,1), filter 1s ease;
    }

    .immersion-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      opacity: 0;
      background:
        linear-gradient(110deg, transparent, rgba(255, 237, 198, 0.2), transparent),
        radial-gradient(circle at 72% 22%, rgba(201, 167, 95, 0.18), transparent 28%);
      transform: translateX(-24%);
      transition: opacity 0.6s ease, transform 0.8s cubic-bezier(.19,1,.22,1);
    }

    .immersion-card:hover {
      
    }

    .immersion-card:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    .immersion-card:hover .immersion-visual {
      transform: scale(1.08);
    }

    .play-badge {
      position: absolute;
      left: 24px;
      bottom: 24px;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      color: var(--charcoal);
      background: rgba(246, 224, 177, 0.92);
      border-radius: 50%;
      box-shadow: 0 12px 30px rgba(0,0,0,0.18);
      transition: transform 0.5s cubic-bezier(.19,1,.22,1), background 0.5s ease;
    }

    .immersion-card:hover .play-badge {
      transform: scale(1.08);
      background: rgba(251, 241, 215, 0.96);
    }

    .lead-capture {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
      gap: clamp(22px, 5vw, 74px);
      align-items: center;
    }

    .lead-panel {
      padding: clamp(18px, 3vw, 34px);
      border-radius: 6px;
    }

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

    .field {
      display: grid;
      gap: 8px;
    }

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

    label {
      color: var(--stone);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    input, select, textarea {
      width: 100%;
      border: 1px solid rgba(100,82,48,0.2);
      background: rgba(255,255,255,0.52);
      color: var(--charcoal);
      border-radius: 4px;
      padding: 11px 12px;
      outline: none;
      transition: border-color 0.2s ease;
    }

    textarea { min-height: 82px; resize: vertical; }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(155,122,51,0.64);
      box-shadow: 0 0 0 4px rgba(201,167,95,0.12);
    }

    .microcopy {
      margin: 14px 0 0;
      color: var(--stone);
      font-size: 13px;
    }

    .location-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
      gap: clamp(14px, 2vw, 22px);
      align-items: stretch;
    }

    .map-visual {
      min-height: 0;
      height: min(52svh, 500px);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background:
        linear-gradient(90deg, rgba(255,251,243,0.72) 1px, transparent 1px),
        linear-gradient(rgba(255,251,243,0.72) 1px, transparent 1px),
        linear-gradient(135deg, #cfc4b4, #efe3cf);
      background-size: 54px 54px, 54px 54px, cover;
    }

    .map-pin {
      position: absolute;
      left: 54%;
      top: 46%;
      z-index: 2;
      width: 74px;
      height: 74px;
      border-radius: 50%;
      background: rgba(45,41,36,0.88);
      border: 1px solid rgba(255,255,255,0.28);
      box-shadow: 0 0 0 18px rgba(201,167,95,0.18);
      color: var(--ivory-soft);
      display: grid;
      place-items: center;
      text-align: center;
      font-family: var(--heading);
      line-height: 0.9;
    }

    .landmark-list {
      display: grid;
      align-content: center;
      gap: 12px;
      padding: clamp(18px, 2.4vw, 28px);
      border-radius: 6px;
    }

    .landmark {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      color: var(--stone);
    }

    .landmark strong { color: var(--charcoal); }

    .final-cta {
      text-align: center;
      color: var(--ivory-soft);
      background:
        linear-gradient(rgba(25,22,18,0.74), rgba(25,22,18,0.82)),
        url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80") center / cover;
    }

    .final-cta h2 {
      max-width: 820px;
      margin: 0 auto 28px;
      font-family: var(--heading);
      font-size: clamp(34px, 5vw, 68px);
      font-weight: 600;
      line-height: 0.98;
    }

    .final-details {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 22px;
      margin-top: 28px;
      color: rgba(255,251,243,0.72);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .final-disclaimer {
      max-width: 780px;
      margin: 18px auto 0;
      color: rgba(255,251,243,0.48);
      font-size: 11px;
      line-height: 1.6;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
    }

    .ghost-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 11px 16px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer {
      padding: 42px clamp(18px, 5vw, 78px);
      color: rgba(255,251,243,0.72);
      background: #211d19;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr repeat(4, 1fr);
      gap: 24px;
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .footer strong {
      display: block;
      color: var(--ivory-soft);
      margin-bottom: 8px;
    }

    .disclaimer {
      grid-column: 1 / -1;
      color: rgba(255,251,243,0.46);
      font-size: 12px;
      line-height: 1.7;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 20px;
    }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3.2vh, 34px);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--champagne);
  border: 1px solid rgba(201, 167, 95, 0.34);
  border-radius: 50%;
  background: rgba(24, 20, 16, 0.18);
  transform: translate3d(-50%, 0, 0);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.scroll-cue span {
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translate3d(0, -2px, 0) rotate(45deg);
  animation: cuePulse 1.8s ease-in-out infinite;
}

.scroll-cue:hover {
  opacity: 0.82;
  border-color: rgba(201, 167, 95, 0.72);
  transform: translate3d(-50%, 3px, 0);
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 2.2vw, 28px);
  bottom: clamp(16px, 2.4vw, 30px);
  z-index: 58;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--champagne);
  background: rgba(32, 27, 22, 0.86);
  border: 1px solid rgba(201, 167, 95, 0.48);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.back-to-top:hover {
  background: rgba(41, 34, 27, 0.94);
  border-color: rgba(230, 198, 132, 0.82);
  transform: translate3d(0, -2px, 0);
}

@keyframes cuePulse {
  0%, 100% { opacity: 0.45; transform: translate3d(0, -3px, 0) rotate(45deg); }
  50% { opacity: 1; transform: translate3d(0, 2px, 0) rotate(45deg); }
}

/* Media assignments kept in CSS to keep HTML free of inline style attributes. */
.panel-arrival::before { background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=72'); }
.panel-residences::before { background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=72'); }
.panel-lifestyle::before { background-image: url('https://images.unsplash.com/photo-1604014238170-4def1e4e6fcf?auto=format&fit=crop&w=1200&q=72'); }
.panel-immersion::before { background-image: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=1200&q=72'); }
.section-arrival.is-loaded { --image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=72'); }
.image-arrival-render.is-loaded { --image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=72'); }
.section-lifestyle.is-loaded { --image: url('https://images.unsplash.com/photo-1576013551627-0cc20b96c2a7?auto=format&fit=crop&w=1600&q=72'); }
.image-residence-2bhk.is-loaded { --image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=900&q=72'); }
.image-residence-3bhk.is-loaded { --image: url('https://images.unsplash.com/photo-1600210491892-03d54c0aaf87?auto=format&fit=crop&w=900&q=72'); }
.image-residence-signature.is-loaded { --image: url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=900&q=72'); }
.image-amenity-club.is-loaded { --image: url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?auto=format&fit=crop&w=900&q=72'); }
.image-amenity-garden.is-loaded { --image: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=900&q=72'); }
.image-amenity-wellness.is-loaded { --image: url('https://images.unsplash.com/photo-1572331165267-854da2b10ccc?auto=format&fit=crop&w=900&q=72'); }
.image-amenity-play.is-loaded { --image: url('https://images.unsplash.com/photo-1598300056393-4aac492f4344?auto=format&fit=crop&w=900&q=72'); }
.image-amenity-security.is-loaded { --image: url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=900&q=72'); }
.image-amenity-parking.is-loaded { --image: url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=72'); }
.image-immersion-walkthrough.is-loaded { --image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1000&q=72'); }
.image-immersion-vr.is-loaded { --image: url('https://images.unsplash.com/photo-1592478411213-6153e4ebc696?auto=format&fit=crop&w=1000&q=72'); }
.image-immersion-masterplan.is-loaded { --image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1000&q=72'); }
.image-gallery-elevation.is-loaded { --image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=900&q=72'); }
.image-gallery-lobby.is-loaded { --image: url('https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=900&q=72'); }
.image-gallery-interior.is-loaded { --image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=900&q=72'); }
.image-gallery-deck.is-loaded { --image: url('https://images.unsplash.com/photo-1540518614846-7eded433c457?auto=format&fit=crop&w=900&q=72'); }
.image-gallery-night.is-loaded { --image: url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=72'); }
.image-gallery-landscape.is-loaded { --image: url('https://images.unsplash.com/photo-1600607687644-c7171b42498f?auto=format&fit=crop&w=900&q=72'); }
.modal-default { --image: url('https://images.unsplash.com/photo-1600210491369-e753d80a41f3?auto=format&fit=crop&w=1400&q=72'); }
