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

    :root {
      --gold: #C9A96E;
      --gold-light: #E2C99A;
      --gold-dark: #9A7845;
      --bg: #0D0D0B;
      --bg2: #111110;
      --bg3: #161614;
      --surface: #1A1A17;
      --surface2: #222220;
      --text: #F0EAD6;
      --text-muted: #B0A794;
      --text-dim: #8C8579;
      --white: #FDFAF3;
      --border: rgba(201, 169, 110, 0.18);
      --border-subtle: rgba(201, 169, 110, 0.08);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      font-size: clamp(15px, 0.55vw + 13.4px, 16.5px);
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold-dark);
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: clamp(16px, 2.2vw, 22px) clamp(20px, 5vw, 60px);
      background: linear-gradient(to bottom, rgba(13, 13, 11, 0.95) 0%, transparent 100%);
      backdrop-filter: blur(2px);
      transition: background 0.4s;
    }

    nav.scrolled {
      background: rgba(13, 13, 11, 0.97);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 500;
      letter-spacing: 4px;
      color: var(--gold);
      text-transform: uppercase;
      text-decoration: none;
      line-height: 1.2;
    }

    .nav-logo span {
      display: block;
      font-size: 11px;
      letter-spacing: 6px;
      color: var(--text-muted);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-cta {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 10px 24px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
      font-family: 'Montserrat', sans-serif;
      text-decoration: none;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible {
      background: var(--gold);
      color: var(--bg);
      font-weight: 600;
    }

    /* ── HERO WITH INTEGRATED FORM ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to bottom, rgba(13, 13, 11, 0.45) 0%, rgba(13, 13, 11, 0.3) 40%, rgba(13, 13, 11, 0.75) 80%, rgba(13, 13, 11, 1) 100%),
        linear-gradient(to right, rgba(13, 13, 11, 0.7) 0%, rgba(13, 13, 11, 0.3) 55%, rgba(13, 13, 11, 0.1) 100%),
        url('../images/hero-bg.png');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.05);
      animation: slowZoom 20s ease-out forwards;
    }

    @keyframes slowZoom {
      from {
        transform: scale(1.05);
      }

      to {
        transform: scale(1);
      }
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.4;
      pointer-events: none;
    }

    /* ── HERO INNER LAYOUT ── */
    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 60px 60px 80px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 60px;
      align-items: center;
      animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
    }

    @keyframes heroReveal {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── HERO COPY ── */
    .hero-copy {}

    .hero-eyebrow {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 5.5vw, 74px);
      font-weight: 300;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 24px;
      letter-spacing: -1px;
    }

    .hero-headline em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .hero-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: var(--gold);
      margin-bottom: 36px;
      letter-spacing: 1px;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 40px;
    }

    .hero-pill {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid var(--border-subtle);
      padding: 7px 14px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--bg);
      padding: 15px 32px;
      border: none;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--text);
      padding: 15px 32px;
      border: 1px solid rgba(240, 234, 214, 0.3);
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ── HERO FORM CARD ── */
    .hero-form-card {
      background: rgba(17, 17, 16, 0.92);
      border: 1px solid var(--border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 36px 32px;
      animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
    }

    .form-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 169, 110, 0.12);
      border: 1px solid var(--border);
      padding: 6px 14px;
      margin-bottom: 20px;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .form-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 300;
      color: var(--white);
      margin-bottom: 4px;
      line-height: 1.2;
    }

    .form-card-sub {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 24px;
      letter-spacing: 0.3px;
    }

    .form-group {
      margin-bottom: 14px;
    }

    .form-group label {
      display: block;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      background: rgba(22, 22, 20, 0.9);
      border: 1px solid var(--border-subtle);
      color: var(--text);
      padding: 13px 15px;
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 400;
      outline: none;
      transition: border-color 0.3s;
      -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--gold);
    }

    .form-group input::placeholder {
      color: var(--text-dim);
    }

    .form-group select option {
      background: var(--bg3);
    }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-submit-hero {
      width: 100%;
      background: var(--gold);
      color: var(--bg);
      border: none;
      padding: 15px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 4px;
    }

    .form-submit-hero:hover {
      background: var(--gold-light);
    }

    .form-card-note {
      font-size: 11px;
      color: var(--text-dim);
      text-align: center;
      margin-top: 12px;
      letter-spacing: 0.3px;
    }

    /* divider line between top & bottom trust row */
    .form-card-divider {
      height: 1px;
      background: var(--border-subtle);
      margin: 16px 0 14px;
    }

    .form-trust-row {
      display: flex;
      justify-content: space-between;
      gap: 8px;
    }

    .trust-item {
      text-align: center;
      flex: 1;
    }

    .trust-num {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: var(--gold);
      line-height: 1;
    }

    .trust-label {
      display: block;
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-top: 4px;
    }

    /* scroll indicator */
    .hero-scroll {
      position: absolute;
      right: 60px;
      bottom: 50px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      color: var(--text-dim);
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      writing-mode: vertical-rl;
      animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
    }

    .hero-scroll::after {
      content: '';
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {

      0%,
      100% {
        opacity: 0.3;
        transform: scaleY(0.5);
        transform-origin: top;
      }

      50% {
        opacity: 1;
        transform: scaleY(1);
      }
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      overflow: hidden;
    }

    .ticker-track {
      display: flex;
      gap: 0;
      white-space: nowrap;
      animation: ticker 30s linear infinite;
    }

    @keyframes ticker {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 32px;
      padding: 0 40px;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .ticker-sep {
      color: var(--gold);
      font-size: 16px;
    }

    /* ── SECTIONS ── */
    section {
      padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
    }

    .section-label {
      font-size: 11px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 30px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4.5vw, 62px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 20px;
    }

    .section-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    /* ── BRAND INTRO ── */
    .brand-intro {
      background: var(--bg);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .brand-intro-text blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-style: italic;
      color: var(--gold-light);
      line-height: 1.5;
      margin-bottom: 32px;
      padding-left: 24px;
      border-left: 2px solid var(--gold);
    }

    .brand-intro-text p {
      font-size: clamp(15px, 0.5vw + 13.5px, 16.5px);
      color: var(--text-muted);
      line-height: 1.9;
      margin-bottom: 20px;
    }

    .brand-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border-subtle);
      margin-top: 48px;
    }

    .stat {
      background: var(--bg);
      padding: 28px 20px;
      text-align: center;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
      font-weight: 300;
      color: var(--gold);
      display: block;
      line-height: 1;
    }

    .stat-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-top: 8px;
      display: block;
    }

    .brand-intro-visual {
      position: relative;
      height: 600px;
      overflow: hidden;
    }

    .brand-visual-main {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    .brand-visual-overlay {
      position: absolute;
      bottom: -1px;
      left: -1px;
      width: 55%;
      height: 45%;
      background-image: url('../images/brand-overlay.webp');
      background-size: cover;
      background-position: center;
      border: 4px solid var(--bg);
    }

    .brand-tag {
      position: absolute;
      top: 30px;
      right: 30px;
      background: rgba(13, 13, 11, 0.85);
      border: 1px solid var(--border);
      padding: 16px 24px;
      backdrop-filter: blur(10px);
    }

    .brand-tag span {
      display: block;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .brand-tag strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 300;
      color: var(--white);
      margin-top: 4px;
    }

    /* ── GALLERY ── */
    .gallery-section {
      background: var(--bg2);
      padding: 120px 0;
    }

    .gallery-header {
      padding: 0 60px;
      margin-bottom: 60px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 320px 320px;
      gap: 4px;
    }

    .gallery-item {
      overflow: hidden;
      position: relative;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
      cursor: pointer;
    }

    .gallery-item:hover {
      z-index: 2;
    }

    .gallery-item:hover .gallery-img {
      transform: scale(1.05);
    }

    .gallery-item-1 {
      grid-row: 1 / 3;
    }

    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(to top, rgba(13, 13, 11, 0.85) 0%, transparent 100%);
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .gallery-item:hover .gallery-caption {
      opacity: 1;
    }

    /* ── SPECS ── */
    .specs-section {
      background: var(--bg);
      display: grid;
      grid-template-columns: 5fr 7fr;
      padding: 0;
    }

    .specs-sticky {
      padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
      background: var(--surface);
      position: sticky;
      top: 0;
      height: fit-content;
    }

    .specs-content {
      padding: 120px 80px;
    }

    .spec-card {
      border: 1px solid var(--border-subtle);
      padding: 36px;
      margin-bottom: 24px;
      transition: border-color 0.3s, background 0.3s;
      cursor: default;
    }

    .spec-card:hover {
      border-color: var(--gold);
      background: rgba(201, 169, 110, 0.04);
    }

    .spec-icon {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .spec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 8px;
    }

    .spec-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .spec-list {
      list-style: none;
      margin-top: 12px;
    }

    .spec-list li {
      font-size: 11px;
      color: var(--text-muted);
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--border-subtle);
    }

    .spec-list li::before {
      content: '◆';
      color: var(--gold);
      font-size: 10px;
      flex-shrink: 0;
    }

    /* ── AMENITIES ── */
    .amenities-section {
      background: var(--bg3);
    }

    .amenities-intro {
      max-width: 600px;
      margin-bottom: 80px;
    }

    .amenities-intro p {
      font-size: clamp(15px, 0.5vw + 13.5px, 16.5px);
      color: var(--text-muted);
      line-height: 1.9;
      margin-top: 24px;
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--border-subtle);
    }

    .amenity {
      background: var(--bg3);
      padding: 48px 32px;
      text-align: center;
      transition: background 0.3s;
    }

    .amenity:hover {
      background: rgba(201, 169, 110, 0.06);
    }

    .amenity-icon {
      font-size: 36px;
      margin-bottom: 20px;
      display: block;
    }

    .amenity-name {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
      display: block;
    }

    .amenity-detail {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.6;
    }

    /* ── FLOOR PLANS ── */
    .floorplans-section {
      background: var(--bg2);
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 0;
    }

    .floorplan-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      min-height: 70vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .floorplan-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.8s ease;
    }

    .floorplan-card:hover .floorplan-bg {
      transform: scale(1.04);
    }

    .floorplan-card:nth-child(1) .floorplan-bg {
      background-image:
        linear-gradient(to bottom, rgba(13, 13, 11, 0.2) 0%, rgba(13, 13, 11, 0.8) 100%),
        url('../images/floorplan-1.png');
    }

    .floorplan-card:nth-child(2) .floorplan-bg {
      background-image:
        linear-gradient(to bottom, rgba(13, 13, 11, 0.2) 0%, rgba(13, 13, 11, 0.8) 100%),
        url('../images/floorplan-2.png');
    }

    .floorplan-info {
      position: relative;
      z-index: 2;
      padding: 60px;
    }

    .floorplan-type {
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .floorplan-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 300;
      color: var(--white);
      line-height: 1;
      margin-bottom: 16px;
    }

    .floorplan-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .floorplan-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border: 1px solid var(--border);
      padding: 12px 24px;
      transition: all 0.3s;
    }

    .floorplan-cta:hover {
      background: var(--gold);
      color: var(--bg);
      font-weight: 600;
    }

    /* ── LOCATION ── */
    .location-section {
      background: var(--bg);
    }

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

    .location-map {
      height: 480px;
      background: var(--surface);
      position: relative;
      overflow: hidden;
    }

    .location-map img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(60%) sepia(20%);
    }

    .map-pin {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 16px;
      height: 16px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 0 6px rgba(201, 169, 110, 0.3), 0 0 0 12px rgba(201, 169, 110, 0.15);
      animation: ping 2s ease-out infinite;
    }

    @keyframes ping {

      0%,
      100% {
        box-shadow: 0 0 0 6px rgba(201, 169, 110, 0.3), 0 0 0 12px rgba(201, 169, 110, 0.15);
      }

      50% {
        box-shadow: 0 0 0 10px rgba(201, 169, 110, 0.2), 0 0 0 20px rgba(201, 169, 110, 0.08);
      }
    }

    .location-points {
      list-style: none;
    }

    .location-point {
      display: flex;
      gap: 24px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border-subtle);
    }

    .lp-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      color: var(--gold);
      opacity: 0.4;
      line-height: 1;
      flex-shrink: 0;
      min-width: 36px;
    }

    .lp-text strong {
      display: block;
      font-size: 12px;
      letter-spacing: 1px;
      color: var(--white);
      margin-bottom: 4px;
      font-weight: 500;
    }

    .lp-text span {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ── DEVELOPER ── */
    .developer-section {
      background: var(--surface);
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 0;
    }

    .dev-visual {
      background-image: url('../images/developer-bg.webp');
      background-size: cover;
      background-position: center;
      min-height: 600px;
      position: relative;
    }

    .dev-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 0%, rgba(26, 26, 23, 0.7) 100%);
    }

    .dev-content {
      padding: 100px 80px;
    }

    .dev-content p {
      font-size: clamp(15px, 0.5vw + 13.5px, 16.5px);
      color: var(--text-muted);
      line-height: 1.9;
      margin: 24px 0;
    }

    .dev-logos {
      display: flex;
      gap: 32px;
      align-items: center;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .dev-logo-badge {
      border: 1px solid var(--border);
      padding: 16px 28px;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── FINAL CTA ── */
    .final-cta {
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 60px);
    }

    .final-cta-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(to bottom, rgba(13, 13, 11, 0.7) 0%, rgba(13, 13, 11, 0.5) 50%, rgba(13, 13, 11, 0.9) 100%),
        url('../images/final-cta-bg.png');
      background-size: cover;
      background-position: center 60%;
    }

    .final-cta-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }

    .final-cta-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 300;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .final-cta-content h2 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .final-cta-content p {
      font-size: 13px;
      color: rgba(240, 234, 214, 0.7);
      margin-bottom: 48px;
      line-height: 1.8;
      letter-spacing: 0.5px;
    }

    .final-cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
      margin: 0;
      border: none;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg);
      padding: 60px 60px 40px;
      border-top: 1px solid var(--border-subtle);
    }

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

    .footer-brand h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--gold);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .footer-brand p {
      font-size: 11px;
      color: var(--text-dim);
      max-width: 300px;
      line-height: 1.8;
      margin-top: 12px;
    }

    .footer-links h4 {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      font-size: 12px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-contact p {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 8px;
      line-height: 1.6;
    }

    .footer-bottom {
      border-top: 1px solid var(--border-subtle);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 10px;
      color: var(--text-dim);
      letter-spacing: 1px;
      flex-wrap: wrap;
      gap: 8px;
    }

    /* ── STICKY MOBILE CTA ── */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 99;
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 12px 20px;
      flex-direction: row;
      gap: 10px;
    }

    .sticky-cta a {
      flex: 1;
      text-align: center;
      padding: 14px;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 600;
    }

    .sticky-call {
      background: var(--surface);
      color: var(--gold);
      border: 1px solid var(--border);
    }

    .sticky-enquire {
      background: var(--gold);
      color: var(--bg);
      font-weight: 600;
    }

    /* ── MODAL ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal {
      background: var(--surface);
      max-width: 540px;
      width: 100%;
      padding: 60px;
      position: relative;
      border: 1px solid var(--border);
      animation: modalIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 24px;
      cursor: pointer;
      transition: color 0.3s;
    }

    .modal-close:hover {
      color: var(--gold);
    }

    .modal h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 300;
      color: var(--white);
      margin-bottom: 8px;
    }

    .modal p {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 32px;
    }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed;
      bottom: 55px;
      right: 36px;
      z-index: 90;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      text-decoration: none;
      font-size: 26px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.15s;
    }

    .reveal-delay-2 {
      transition-delay: 0.3s;
    }

    .reveal-delay-3 {
      transition-delay: 0.45s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .hero-inner {
        grid-template-columns: 1fr 380px;
        gap: 40px;
        padding: 60px 40px 80px;
      }
    }

    @media (max-width: 900px) {
      nav {
        padding: 18px 24px;
      }

      .nav-links {
        display: none;
      }

      /* hero stacks vertically on tablet/mobile */
      .hero {
        align-items: flex-start;
        padding-top: 70px;
        min-height: auto;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px 100px;
      }

      .hero-headline {
        font-size: clamp(34px, 8vw, 52px);
      }

      .hero-scroll {
        display: none;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-ghost {
        text-align: center;
      }

      /* form card full-width on mobile */
      .hero-form-card {
        padding: 28px 22px;
      }

      .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
      }

      section {
        padding: 80px 24px;
      }

      .brand-intro {
        grid-template-columns: 1fr;
      }

      .brand-intro-visual {
        height: 380px;
      }

      .gallery-section {
        padding: 80px 0;
      }

      .gallery-header {
        padding: 0 24px;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
      }

      .gallery-item-1 {
        grid-row: auto;
      }

      .gallery-item {
        height: 200px;
      }

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

      .specs-sticky {
        position: relative;
        padding: 80px 24px 40px;
      }

      .specs-content {
        padding: 40px 24px 80px;
      }

      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .floorplan-card {
        min-height: 55vh;
      }

      .floorplan-info {
        padding: 40px 24px;
      }

      .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .dev-visual {
        min-height: 260px;
      }

      .dev-content {
        padding: 60px 24px;
      }

      .final-cta {
        padding: 80px 24px;
      }

      footer {
        padding: 60px 24px 40px;
      }

      .footer-top {
        flex-direction: column;
        gap: 40px;
      }

      .sticky-cta {
        display: flex;
      }

      .wa-float {
        bottom: 90px;
        right: 20px;
      }
    }

    @media (max-width: 480px) {
      .hero-inner {
        padding: 30px 16px 100px;
      }

      .hero-form-card {
        padding: 24px 16px;
      }

      .amenities-grid {
        grid-template-columns: 1fr;
      }

      .brand-stats {
        grid-template-columns: repeat(3, 1fr);
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gallery-item {
        height: 220px;
      }

      .form-trust-row {
        gap: 4px;
      }

      .trust-num {
        font-size: 16px;
      }

      .trust-label {
        font-size: 10px;
      }
    }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Inline form validation errors ── */
.form-errors {
  background: rgba(180, 60, 60, 0.12);
  border: 1px solid rgba(200, 80, 80, 0.4);
  color: #E2A0A0;
  font-size: 11px;
  letter-spacing: 0.3px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.form-errors div + div { margin-top: 4px; }

/* ════════════════════════════════════════════
   LEGAL / CONTENT PAGES (disclaimer, privacy, terms)
════════════════════════════════════════════ */
.legal-main {
  padding: 150px 24px 110px;
  position: relative;
}
.legal-main::before {
  /* faint top gradient so fixed nav always sits on a dark band */
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  z-index: 90;
  pointer-events: none;
}
.legal-container {
  max-width: 880px;
  margin: 0 auto;
}
.legal-header {
  padding-bottom: 36px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-top: 14px;
}
.legal-title em { font-style: italic; color: var(--gold-light); }
.legal-meta {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 18px;
}

.legal-content > p {
  font-size: clamp(15px, 0.5vw + 13.5px, 16.5px);
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 20px;
}
.legal-content .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  margin-bottom: 40px;
}
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 27px;
  color: var(--white);
  margin: 44px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.legal-content h2 .sec-num {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.legal-content h3 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 12px;
  font-weight: 600;
}
.legal-content ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.legal-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  font-size: clamp(15px, 0.5vw + 13.5px, 16.5px);
  color: var(--text-muted);
  line-height: 1.85;
}
.legal-content li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 11px;
  color: var(--gold);
}
.legal-content strong { color: var(--text); font-weight: 500; }
.legal-content a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border); }
.legal-content a:hover { color: var(--gold-light); }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.legal-back:hover { color: var(--gold); }

@media (max-width: 600px) {
  .legal-main { padding: 120px 18px 80px; }
  .legal-content h2 { font-size: 23px; gap: 10px; }
}

/* ════════════════════════════════════════════
   REFINEMENT LAYER v2 — readability, touch & a11y
   (theme, palette and font families unchanged)
════════════════════════════════════════════ */

/* Comfortable reading measure for long-form copy blocks */
.brand-intro-text p,
.location-section p,
.dev-content p {
  max-width: 60ch;
}

/* Keyboard focus — visible gold ring (mouse users unaffected) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
.form-group input:focus-visible,
.form-group select:focus-visible {
  outline-offset: 0;
}

/* ── Mobile & touch refinements ── */
@media (max-width: 600px) {
  /* 16px inputs stop iOS Safari from zooming the page on focus */
  .form-group input,
  .form-group select {
    font-size: 16px;
  }

  /* Generous, thumb-friendly tap targets */
  .btn-primary,
  .btn-ghost,
  .nav-cta,
  .form-submit-hero,
  .floorplan-cta,
  .sticky-call,
  .sticky-enquire {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Slightly tighter tracking so letter-spaced labels don't wrap awkwardly */
  .hero-eyebrow,
  .section-label,
  .nav-cta,
  .hero-pill {
    letter-spacing: 2px;
  }

  /* Roomier hero pills for tapability/legibility */
  .hero-pill {
    padding: 8px 14px;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ════════════════════════════════════════════
   MOBILE NAV — hamburger + slide-in drawer
════════════════════════════════════════════ */
.nav-toggle {
  display: none;            /* shown only on mobile via media query */
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
}
.nav-toggle span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 7, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu-overlay.open { opacity: 1; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(84vw, 350px);
  background: var(--bg2);
  border-left: 1px solid var(--border);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 26px 30px 34px;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-menu-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: color 0.25s;
}
.mobile-menu-close:hover { color: var(--gold); }

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.mobile-menu-links li { border-bottom: 1px solid var(--border-subtle); }
.mobile-menu-links a {
  display: block;
  padding: 16px 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-menu-foot { margin-top: 26px; }
.mobile-menu-cta {
  display: block;
  text-align: center;
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
  font-weight: 600;
  padding: 15px;
  margin-bottom: 16px;
}
.mobile-menu-cta:hover,
.mobile-menu-cta:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg);
}
.mobile-menu-call {
  display: block;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.mobile-menu-call:hover { color: var(--gold); }

/* Lock background scroll while the drawer is open */
body.menu-open { overflow: hidden; }

/* Toggle visibility at the same breakpoint where desktop links hide */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-cta-desktop { display: none; }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-overlay { display: none; }
}

@media (max-width: 900px) {
  footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-cta {
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}
