    /* ═══════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════ */
    :root {
      --forest: #1a2e22;
      --forest-mid: #243d2e;
      --forest-l: #2e5040;
      --forest-faint: #f0f5f1;
      --forest-faint2: #e8f0ea;
      --gold: #b08d57;
      --gold-l: #d4af70;
      --gold-pale: #f5edda;
      --gold-xp: #faf6ee;
      --gold-dk: #8a6c3e;
      --cream: #f8f4ec;
      --cream-w: #efe8d5;
      --cream-d: #e5ddd0;
      --ink: #1c1c1c;
      --slate: #3e3e3e;
      --muted: #7e7e7e;
      --faint: #b8b8b8;
      --divider: #e8e1d4;
      --white: #fff;
      --green: #2e9e5b;
      --green-bg: rgba(46, 158, 91, .08);
      --red: #c0392b;
      --red-bg: rgba(192, 57, 43, .07);
      --amber: #c87612;
      --amber-bg: rgba(200, 118, 18, .09);
      --blue: #1e6fa8;
      --sh-xs: 0 1px 4px rgba(26, 46, 34, .06);
      --sh-sm: 0 2px 12px rgba(26, 46, 34, .08);
      --sh: 0 6px 28px rgba(26, 46, 34, .11);
      --sh-lg: 0 16px 48px rgba(26, 46, 34, .14);
      --sh-xl: 0 28px 72px rgba(26, 46, 34, .18);
      --r: 8px;
      --r-lg: 12px;
      --r-xl: 16px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      min-height: 100vh;
      overflow-x: hidden
    }

    a {
      text-decoration: none;
      color: inherit
    }

    button {
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      border: none
    }

    input,
    select,
    textarea {
      font-family: 'DM Sans', sans-serif
    }

    img {
      display: block
    }

    /* ═══════════════════════════════════════
   TOPNAV
═══════════════════════════════════════ */
    .topnav {
      background: var(--forest);
      height: 60px;
      display: flex;
      align-items: center;
      padding: 0 5vw;
      gap: 20px;
      position: sticky;
      top: 0;
      z-index: 500;
      border-bottom: 1px solid rgba(176, 141, 87, .16);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: #fff;
      letter-spacing: .3px;
      cursor: pointer;
      flex-shrink: 0
    }

    .nav-logo span {
      color: var(--gold-l)
    }

    .nav-links {
      display: flex;
      margin-left: 20px
    }

    .nav-link {
      font-size: 12.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, .5);
      padding: 0 14px;
      height: 60px;
      display: flex;
      align-items: center;
      transition: .15s;
      cursor: pointer;
      white-space: nowrap;
      border-bottom: 2px solid transparent
    }

    .nav-link:hover {
      color: rgba(255, 255, 255, .85)
    }

    .nav-link.active {
      color: var(--gold-l);
      border-bottom-color: var(--gold)
    }

    .nav-gap {
      flex: 1
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .btn-nav-ghost {
      background: transparent;
      border: 1.5px solid rgba(176, 141, 87, .35);
      color: rgba(255, 255, 255, .75);
      padding: 7px 15px;
      border-radius: 5px;
      font-size: 12.5px;
      font-weight: 600;
      transition: .2s
    }

    .btn-nav-ghost:hover {
      border-color: var(--gold-l);
      color: var(--gold-l)
    }

    .btn-nav-solid {
      background: var(--gold);
      color: var(--forest);
      padding: 7px 16px;
      border-radius: 5px;
      font-size: 12.5px;
      font-weight: 700;
      transition: .2s
    }

    .btn-nav-solid:hover {
      background: var(--gold-l)
    }

    /* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
    .breadcrumb {
      background: var(--white);
      border-bottom: 1px solid var(--divider);
      padding: 11px 5vw;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--muted)
    }

    .bc-link {
      cursor: pointer;
      transition: .15s
    }

    .bc-link:hover {
      color: var(--forest)
    }

    .bc-sep {
      opacity: .4;
      font-size: 10px
    }

    .bc-cur {
      color: var(--forest);
      font-weight: 600
    }

    /* ═══════════════════════════════════════
   MAIN LAYOUT
═══════════════════════════════════════ */
    .page-wrap {
      max-width: 1320px;
      margin: 0 auto;
      padding: 28px 5vw 80px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 32px;
      align-items: start
    }

    /* ═══════════════════════════════════════
   LEFT COLUMN
═══════════════════════════════════════ */

    /* ── Title block ── */
    .prop-title-block {
      margin-bottom: 22px
    }

    .ptb-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 10px
    }

    .ptb-badges {
      display: flex;
      gap: 7px;
      flex-wrap: wrap
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 11px;
      border-radius: 20px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .6px;
      text-transform: uppercase
    }

    .badge-type {
      background: var(--forest-faint);
      border: 1px solid rgba(26, 46, 34, .12);
      color: var(--forest-l)
    }

    .badge-status {
      background: var(--green-bg);
      border: 1px solid rgba(46, 158, 91, .2);
      color: var(--green)
    }

    .badge-actual {
      background: var(--amber-bg);
      border: 1px solid rgba(200, 118, 18, .2);
      color: var(--amber)
    }

    .ptb-actions {
      display: flex;
      gap: 8px;
      align-items: center
    }

    .btn-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid var(--divider);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      transition: .2s;
      color: var(--slate)
    }

    .btn-icon:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: var(--gold-xp)
    }

    .btn-icon.fav-on {
      border-color: var(--red);
      color: var(--red);
      background: var(--red-bg)
    }

    .prop-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 400;
      color: var(--forest);
      line-height: 1.12;
      margin-bottom: 10px
    }

    .prop-name em {
      font-style: italic;
      color: var(--forest-l)
    }

    .prop-address {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13.5px;
      color: var(--muted);
      margin-bottom: 4px
    }

    .prop-address strong {
      color: var(--slate)
    }

    .prop-price-row {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-top: 14px;
      padding: 14px 18px;
      background: var(--forest);
      border-radius: var(--r);
      position: relative;
      overflow: hidden
    }

    .prop-price-row::before {
      content: '';
      position: absolute;
      top: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(176, 141, 87, .07);
      pointer-events: none
    }

    .price-label {
      font-size: 11px;
      color: rgba(255, 255, 255, .4);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-right: 2px;
      flex-shrink: 0
    }

    .price-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      font-weight: 400;
      color: #fff;
      line-height: 1
    }

    .price-note {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .35);
      margin-left: 4px
    }

    .price-per {
      margin-left: auto;
      font-size: 11.5px;
      color: var(--gold);
      font-weight: 600;
      background: rgba(176, 141, 87, .12);
      padding: 4px 10px;
      border-radius: 20px;
      border: 1px solid rgba(176, 141, 87, .2)
    }

    /* ── Photo gallery ── */
    .gallery {
      margin-bottom: 28px
    }

    .gallery-main {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      cursor: pointer;
      background: var(--forest-faint)
    }

    .gallery-main-img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      display: block;
      transition: transform .5s ease, filter .3s
    }

    .gallery-main:hover .gallery-main-img {
      transform: scale(1.025);
      filter: brightness(.92)
    }

    .gallery-overlay-top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(to bottom, rgba(20, 38, 26, .55), transparent);
      pointer-events: none
    }

    .gallery-overlay-bot {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to top, rgba(20, 38, 26, .5), transparent);
      pointer-events: none
    }

    .gallery-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      display: flex;
      gap: 7px;
      z-index: 2
    }

    .gtag {
      padding: 4px 11px;
      border-radius: 20px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      backdrop-filter: blur(6px)
    }

    .gtag-forest {
      background: rgba(26, 46, 34, .8);
      color: var(--gold-l)
    }

    .gtag-green {
      background: rgba(46, 158, 91, .85);
      color: #fff
    }

    .gtag-amber {
      background: rgba(200, 118, 18, .85);
      color: #fff
    }

    .gallery-photo-count {
      position: absolute;
      bottom: 14px;
      right: 14px;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 11.5px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 5px;
      z-index: 2
    }

    .gallery-view-all {
      position: absolute;
      bottom: 14px;
      left: 14px;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(6px);
      color: rgba(255, 255, 255, .8);
      font-size: 11.5px;
      padding: 5px 12px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, .15);
      z-index: 2;
      cursor: pointer;
      transition: .2s
    }

    .gallery-view-all:hover {
      background: rgba(0, 0, 0, .75);
      color: #fff
    }

    .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 6px;
      margin-top: 6px
    }

    .g-thumb {
      border-radius: 6px;
      overflow: hidden;
      height: 72px;
      cursor: pointer;
      border: 2px solid transparent;
      transition: .2s;
      opacity: .7;
      position: relative
    }

    .g-thumb:hover {
      opacity: 1;
      border-color: var(--gold)
    }

    .g-thumb.active {
      opacity: 1;
      border-color: var(--forest)
    }

    .g-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .g-thumb-more {
      background: rgba(26, 46, 34, .88);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      color: #fff;
      font-size: 11.5px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 6px;
      height: 72px;
      transition: .2s;
      border: 2px solid transparent
    }

    .g-thumb-more:hover {
      background: var(--forest);
      border-color: var(--gold-l)
    }

    .g-thumb-more span {
      font-size: 18px
    }

    /* Tab nav for gallery sections */
    .gallery-tab-nav {
      display: flex;
      gap: 0;
      margin-top: 12px;
      border: 1.5px solid var(--divider);
      border-radius: var(--r);
      overflow: hidden;
      background: var(--white)
    }

    .gtab {
      flex: 1;
      padding: 9px 12px;
      background: transparent;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--muted);
      transition: .2s;
      border-right: 1px solid var(--divider);
      cursor: pointer
    }

    .gtab:last-child {
      border-right: none
    }

    .gtab:hover {
      background: var(--gold-xp);
      color: var(--forest)
    }

    .gtab.on {
      background: var(--forest);
      color: #fff
    }

    /* ── Quick stats bar ── */
    .quick-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--divider);
      border-radius: var(--r-lg);
      overflow: hidden;
      margin-bottom: 28px;
      background: var(--white)
    }

    .qs-item {
      padding: 18px 16px;
      text-align: center;
      border-right: 1px solid var(--divider);
      position: relative
    }

    .qs-item:last-child {
      border-right: none
    }

    .qs-icon {
      font-size: 22px;
      margin-bottom: 5px
    }

    .qs-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--forest);
      line-height: 1;
      margin-bottom: 3px
    }

    .qs-label {
      font-size: 10px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px
    }

    /* ── Content sections ── */
    .prop-section {
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid var(--divider)
    }

    .prop-section:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0
    }

    .sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--forest);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .sec-title::before {
      content: '';
      display: block;
      width: 3px;
      height: 20px;
      background: var(--gold);
      border-radius: 2px;
      flex-shrink: 0
    }

    /* Description */
    .prop-desc {
      font-size: 14px;
      line-height: 1.9;
      color: var(--slate)
    }

    .prop-desc p {
      margin-bottom: 12px
    }

    .prop-desc p:last-child {
      margin-bottom: 0
    }

    .prop-quote {
      margin: 18px 0;
      padding: 16px 20px;
      border-left: 3px solid var(--gold);
      background: var(--gold-xp);
      border-radius: 0 var(--r) var(--r) 0
    }

    .prop-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-style: italic;
      color: var(--forest);
      line-height: 1.6
    }

    /* Details grid */
    .details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--divider);
      border: 1px solid var(--divider);
      border-radius: var(--r-lg);
      overflow: hidden
    }

    .dg-item {
      background: var(--white);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: .15s
    }

    .dg-item:hover {
      background: var(--gold-xp)
    }

    .dg-icon {
      font-size: 18px;
      flex-shrink: 0;
      width: 26px;
      text-align: center
    }

    .dg-content {
      min-width: 0
    }

    .dg-label {
      font-size: 10.5px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-bottom: 2px
    }

    .dg-val {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--forest);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis
    }

    .dg-val.green {
      color: var(--green)
    }

    .dg-val.amber {
      color: var(--amber)
    }

    /* Full details table */
    .prop-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid var(--divider);
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--white)
    }

    .pt-row {
      display: grid;
      grid-template-columns: 200px 1fr;
      border-bottom: 1px solid var(--divider)
    }

    .pt-row:last-child {
      border-bottom: none
    }

    .pt-row:hover {
      background: var(--gold-xp)
    }

    .pt-label {
      padding: 13px 18px;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .6px;
      border-right: 1px solid var(--divider);
      background: rgba(248, 244, 236, .5);
      display: flex;
      align-items: center
    }

    .pt-val {
      padding: 13px 18px;
      font-size: 13.5px;
      color: var(--forest);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 7px
    }

    .pt-section-head {
      grid-column: 1/-1;
      padding: 9px 18px;
      background: var(--forest-faint);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--forest-l);
      border-bottom: 1px solid var(--divider)
    }

    /* Location connectivity */
    .connectivity-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    .conn-item {
      background: var(--white);
      border: 1px solid var(--divider);
      border-radius: var(--r);
      padding: 13px 15px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: .2s
    }

    .conn-item:hover {
      border-color: var(--gold);
      box-shadow: var(--sh-sm)
    }

    .conn-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      box-shadow: 0 0 0 3px var(--gold-pale)
    }

    .conn-place {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--forest)
    }

    .conn-dist {
      font-size: 12px;
      color: var(--muted);
      margin-top: 1px
    }

    .conn-arrow {
      margin-left: auto;
      font-size: 12px;
      color: var(--faint)
    }

    /* Map embed placeholder */
    .map-placeholder {
      border: 1px solid var(--divider);
      border-radius: var(--r-lg);
      height: 280px;
      background: var(--forest-faint);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      cursor: pointer;
      transition: .2s;
      overflow: hidden;
      position: relative;
      margin-top: 16px
    }

    .map-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 40%, rgba(46, 80, 64, .08) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 24L24 0 48 24 24 48z' stroke='rgba(176,141,87,0.06)' fill='none' stroke-width='1'/%3E%3C/svg%3E");
      pointer-events: none
    }

    .map-placeholder:hover {
      border-color: var(--gold);
      box-shadow: var(--sh-sm)
    }

    .map-pin {
      font-size: 40px
    }

    .map-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--forest)
    }

    .map-coords {
      font-family: 'DM Sans', sans-serif;
      font-size: 11.5px;
      color: var(--muted)
    }

    .map-cta {
      margin-top: 6px;
      font-size: 12px;
      color: var(--gold);
      font-weight: 600;
      background: var(--gold-pale);
      padding: 5px 16px;
      border-radius: 20px;
      border: 1px solid rgba(176, 141, 87, .2)
    }

    /* Activity stats */
    .activity-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px
    }

    .act-card {
      background: var(--white);
      border: 1px solid var(--divider);
      border-radius: var(--r-lg);
      padding: 18px;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .act-card::after {
      content: attr(data-bg);
      position: absolute;
      bottom: -8px;
      right: 2px;
      font-size: 52px;
      opacity: .05;
      line-height: 1;
      pointer-events: none
    }

    .act-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 400;
      color: var(--forest);
      line-height: 1
    }

    .act-label {
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px
    }

    .act-bar {
      height: 3px;
      background: var(--divider);
      border-radius: 3px;
      margin-top: 10px;
      overflow: hidden
    }

    .act-bar-fill {
      height: 100%;
      border-radius: 3px;
      background: var(--gold)
    }

    /* Trust signals */
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid var(--divider);
      border-radius: var(--r);
      padding: 10px 14px;
      font-size: 13px;
      color: var(--slate)
    }

    .trust-icon {
      font-size: 16px
    }

    /* Similar properties */
    .similar-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px
    }

    .sim-card {
      background: var(--white);
      border: 1px solid var(--divider);
      border-radius: var(--r-lg);
      overflow: hidden;
      cursor: pointer;
      transition: .25s
    }

    .sim-card:hover {
      box-shadow: var(--sh);
      transform: translateY(-3px)
    }

    .sim-img {
      height: 150px;
      width: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(.88);
      transition: .35s
    }

    .sim-card:hover .sim-img {
      filter: brightness(.78)
    }

    .sim-body {
      padding: 14px
    }

    .sim-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--forest)
    }

    .sim-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--forest);
      margin: 4px 0 3px;
      line-height: 1.3
    }

    .sim-loc {
      font-size: 11.5px;
      color: var(--muted)
    }

    .sim-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid var(--divider)
    }

    .sim-tag {
      font-size: 10px;
      background: var(--forest-faint);
      color: var(--forest-l);
      padding: 3px 8px;
      border-radius: 4px;
      font-weight: 600
    }

    .sim-cta {
      font-size: 11.5px;
      color: var(--gold);
      font-weight: 700;
      cursor: pointer
    }

    /* ═══════════════════════════════════════
   RIGHT STICKY PANEL
═══════════════════════════════════════ */
    .sticky-wrap {
      position: sticky;
      top: 80px;
      display: flex;
      flex-direction: column;
      gap: 16px
    }

    /* Enquiry card */
    .enq-card {
      background: var(--white);
      border: 1px solid var(--divider);
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--sh)
    }

    .enq-head {
      background: var(--forest);
      padding: 20px 22px;
      position: relative;
      overflow: hidden
    }

    .enq-head::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: rgba(176, 141, 87, .08);
      pointer-events: none
    }

    .enq-head::after {
      content: '';
      position: absolute;
      bottom: -30px;
      left: -20px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: rgba(176, 141, 87, .05);
      pointer-events: none
    }

    .enq-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 400;
      color: #fff;
      line-height: 1;
      margin-bottom: 2px;
      position: relative;
      z-index: 1
    }

    .enq-price-note {
      font-size: 11px;
      color: rgba(255, 255, 255, .35);
      position: relative;
      z-index: 1
    }

    .enq-status {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      position: relative;
      z-index: 1
    }

    .enq-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse 1.8s ease infinite
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(46, 158, 91, .5)
      }

      50% {
        box-shadow: 0 0 0 5px rgba(46, 158, 91, 0)
      }
    }

    .enq-status-text {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .55)
    }

    .enq-body {
      padding: 18px 22px
    }

    .form-group {
      margin-bottom: 14px
    }

    .form-label {
      display: block;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 5px;
      letter-spacing: .2px
    }

    .form-input {
      width: 100%;
      padding: 11px 13px;
      border: 1.5px solid var(--divider);
      border-radius: 6px;
      font-size: 13.5px;
      color: var(--ink);
      outline: none;
      background: var(--cream);
      transition: .2s
    }

    .form-input:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(176, 141, 87, .1);
      background: var(--white)
    }

    .form-select {
      width: 100%;
      padding: 11px 13px;
      border: 1.5px solid var(--divider);
      border-radius: 6px;
      font-size: 13px;
      color: var(--slate);
      outline: none;
      background: var(--cream);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      transition: .2s;
      cursor: pointer
    }

    .form-select:focus {
      border-color: var(--gold)
    }

    .phone-wrap {
      display: flex;
      border: 1.5px solid var(--divider);
      border-radius: 6px;
      overflow: hidden;
      transition: .2s;
      background: var(--cream)
    }

    .phone-wrap:focus-within {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(176, 141, 87, .1)
    }

    .phone-cc {
      padding: 11px 10px;
      background: var(--cream);
      border-right: 1px solid var(--divider);
      font-size: 12.5px;
      color: var(--slate);
      min-width: 100px;
      outline: none;
      appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23888'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 8px center;
      background-color: var(--cream)
    }

    .phone-num {
      flex: 1;
      padding: 11px 13px;
      border: none;
      background: transparent;
      outline: none;
      font-size: 13.5px;
      color: var(--ink)
    }

    .form-textarea {
      width: 100%;
      padding: 11px 13px;
      border: 1.5px solid var(--divider);
      border-radius: 6px;
      font-size: 13px;
      color: var(--ink);
      outline: none;
      background: var(--cream);
      resize: none;
      line-height: 1.6;
      transition: .2s;
      min-height: 78px
    }

    .form-textarea:focus {
      border-color: var(--gold);
      background: var(--white)
    }

    .form-check {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      margin-bottom: 14px
    }

    .form-check input {
      margin-top: 2px;
      accent-color: var(--forest);
      flex-shrink: 0
    }

    .form-check label {
      font-size: 11.5px;
      color: var(--muted);
      line-height: 1.55;
      cursor: pointer
    }

    .form-check label a {
      color: var(--gold);
      font-weight: 600
    }

    .btn-enquire {
      width: 100%;
      background: var(--gold);
      color: var(--forest);
      padding: 14px;
      border-radius: 7px;
      font-size: 14px;
      font-weight: 700;
      border: none;
      transition: .2s;
      position: relative;
      overflow: hidden
    }

    .btn-enquire::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
      transform: translateX(-100%);
      transition: transform .4s
    }

    .btn-enquire:hover {
      background: var(--gold-l)
    }

    .btn-enquire:hover::before {
      transform: translateX(100%)
    }

    .btn-whatsapp {
      width: 100%;
      margin-top: 9px;
      background: transparent;
      border: 1.5px solid #25D366;
      color: #1a8a46;
      padding: 12px;
      border-radius: 7px;
      font-size: 13.5px;
      font-weight: 700;
      transition: .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px
    }

    .btn-whatsapp:hover {
      background: #25D366;
      color: #fff
    }

    .btn-call {
      width: 100%;
      margin-top: 8px;
      background: var(--forest-faint);
      border: 1.5px solid rgba(26, 46, 34, .12);
      color: var(--forest);
      padding: 11px;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 600;
      transition: .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px
    }

    .btn-call:hover {
      background: var(--forest-faint2);
      border-color: rgba(26, 46, 34, .2)
    }

    /* Agent info */
    .agent-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 22px;
      border-top: 1px solid var(--divider)
    }

    .agent-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--forest);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--gold-l);
      border: 2px solid var(--gold-pale);
      flex-shrink: 0
    }

    .agent-name {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--forest)
    }

    .agent-role {
      font-size: 11.5px;
      color: var(--muted);
      margin-top: 1px
    }

    .agent-call {
      margin-left: auto;
      font-size: 12px;
      color: var(--gold);
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap
    }

    /* Trust micro */
    .enq-trust {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--divider);
      border-top: 1px solid var(--divider);
      overflow: hidden
    }

    .et-item {
      background: var(--forest-faint);
      padding: 10px 14px;
      text-align: center
    }

    .et-ico {
      font-size: 16px;
      margin-bottom: 2px
    }

    .et-label {
      font-size: 10px;
      color: var(--muted);
      line-height: 1.35
    }

    /* Share card */
    .share-card {
      background: var(--white);
      border: 1px solid var(--divider);
      border-radius: var(--r-lg);
      padding: 16px 18px
    }

    .sc-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--forest);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 12px
    }

    .share-btns {
      display: flex;
      gap: 8px;
      flex-wrap: wrap
    }

    .sh-btn {
      padding: 7px 14px;
      border-radius: 5px;
      font-size: 12px;
      font-weight: 600;
      border: 1.5px solid var(--divider);
      background: transparent;
      color: var(--slate);
      transition: .2s;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px
    }

    .sh-btn:hover {
      border-color: var(--gold);
      color: var(--forest);
      background: var(--gold-xp)
    }

    /* Alert card */
    .alert-card {
      background: var(--forest);
      border-radius: var(--r-lg);
      padding: 16px 18px;
      display: flex;
      align-items: flex-start;
      gap: 12px
    }

    .alert-icon {
      font-size: 22px;
      flex-shrink: 0;
      margin-top: 1px
    }

    .alert-text {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .7);
      line-height: 1.6
    }

    .alert-text strong {
      color: #fff;
      display: block;
      margin-bottom: 2px;
      font-size: 13px
    }

    .alert-text a {
      color: var(--gold);
      font-weight: 600;
      cursor: pointer
    }

    /* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(12, 22, 16, .65);
      backdrop-filter: blur(5px);
      z-index: 900;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px
    }

    .overlay.open {
      display: flex
    }

    .modal {
      background: var(--white);
      border-radius: var(--r-xl);
      width: 100%;
      max-width: 520px;
      overflow: hidden;
      box-shadow: var(--sh-xl);
      animation: mIn .22s ease
    }

    @keyframes mIn {
      from {
        opacity: 0;
        transform: scale(.96) translateY(14px)
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0)
      }
    }

    .modal-head {
      background: var(--forest);
      padding: 22px 26px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between
    }

    .mh-eyebrow {
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px
    }

    .mh-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      color: #fff;
      font-weight: 400;
      line-height: 1.15
    }

    .mh-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, .38);
      margin-top: 3px
    }

    .modal-close {
      background: rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .7);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .18s;
      flex-shrink: 0;
      margin-top: 2px
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, .22);
      color: #fff
    }

    .modal-body {
      padding: 22px 26px
    }

    .modal-body .form-group:last-child {
      margin-bottom: 0
    }

    .modal-foot {
      padding: 10px 26px 22px;
      display: flex;
      gap: 10px;
      justify-content: flex-end
    }

    .btn-cancel {
      padding: 10px 20px;
      border-radius: 6px;
      border: 1.5px solid var(--divider);
      background: transparent;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
      transition: .2s
    }

    .btn-cancel:hover {
      border-color: var(--slate);
      color: var(--slate)
    }

    .btn-ok {
      padding: 10px 26px;
      border-radius: 6px;
      background: var(--gold);
      color: var(--forest);
      font-size: 13.5px;
      font-weight: 700;
      transition: .2s
    }

    .btn-ok:hover {
      background: var(--gold-l)
    }

    /* Full-screen gallery lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .93);
      z-index: 1000;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center
    }

    .lightbox.open {
      display: flex
    }

    .lb-close {
      position: absolute;
      top: 18px;
      right: 22px;
      background: rgba(255, 255, 255, .1);
      color: #fff;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .2s;
      cursor: pointer
    }

    .lb-close:hover {
      background: rgba(255, 255, 255, .2)
    }

    .lb-img {
      max-width: 90vw;
      max-height: 78vh;
      border-radius: 8px;
      object-fit: contain
    }

    .lb-caption {
      color: rgba(255, 255, 255, .55);
      font-size: 12.5px;
      margin-top: 12px;
      text-align: center
    }

    .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, .1);
      color: #fff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: .2s
    }

    .lb-nav:hover {
      background: rgba(255, 255, 255, .22)
    }

    .lb-prev {
      left: 20px
    }

    .lb-next {
      right: 20px
    }

    .lb-dots {
      display: flex;
      gap: 6px;
      justify-content: center;
      margin-top: 12px
    }

    .lb-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .25);
      cursor: pointer;
      transition: .2s
    }

    .lb-dot.on {
      background: #fff
    }

    /* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
    .toast {
      position: fixed;
      bottom: 24px;
      right: 24px;
      background: var(--forest);
      color: #fff;
      padding: 12px 18px;
      border-radius: 8px;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 9px;
      z-index: 2000;
      transform: translateY(70px);
      opacity: 0;
      transition: .28s ease;
      box-shadow: var(--sh-lg);
      pointer-events: none;
      max-width: 340px
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1
    }

    /* ═══════════════════════════════════════
   FLOATING ACTION BAR (mobile feel)
═══════════════════════════════════════ */
    .float-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--white);
      border-top: 1px solid var(--divider);
      padding: 12px 5vw;
      display: none;
      gap: 10px;
      z-index: 400;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, .08)
    }

    @media(max-width:900px) {
      .float-bar {
        display: flex
      }
    }

    .fb-left {
      flex: 1
    }

    .fb-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--forest)
    }

    .fb-loc {
      font-size: 11px;
      color: var(--muted)
    }

    .fb-btn {
      background: var(--gold);
      color: var(--forest);
      padding: 12px 22px;
      border-radius: 7px;
      font-size: 13.5px;
      font-weight: 700;
      flex-shrink: 0;
      border: none;
      transition: .2s
    }

    .fb-btn:hover {
      background: var(--gold-l)
    }

    /* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
    .footer {
      background: var(--forest);
      padding: 48px 5vw 28px;
      color: rgba(255, 255, 255, .5)
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 36px;
      margin-bottom: 40px
    }

    .ft-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: #fff;
      margin-bottom: 12px;
      cursor: pointer
    }

    .ft-logo span {
      color: var(--gold-l)
    }

    .ft-desc {
      font-size: 13px;
      line-height: 1.75;
      color: rgba(255, 255, 255, .4);
      max-width: 280px;
      margin-bottom: 18px
    }

    .ft-contact {
      display: flex;
      flex-direction: column;
      gap: 5px
    }

    .ft-contact-item {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .4);
      display: flex;
      align-items: center;
      gap: 7px
    }

    .ft-contact-item a {
      color: rgba(255, 255, 255, .4);
      transition: .15s
    }

    .ft-contact-item a:hover {
      color: var(--gold-l)
    }

    .ft-heading {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px
    }

    .ft-links {
      display: flex;
      flex-direction: column;
      gap: 6px
    }

    .ft-link {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .4);
      cursor: pointer;
      transition: .15s
    }

    .ft-link:hover {
      color: var(--gold-l)
    }

    .footer-bottom {
      border-top: 1px solid rgba(176, 141, 87, .1);
      padding-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px
    }

    .ft-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, .25)
    }

    .ft-bottom-links {
      display: flex;
      gap: 18px
    }

    .ft-bottom-link {
      font-size: 12px;
      color: rgba(255, 255, 255, .25);
      cursor: pointer;
      transition: .15s
    }

    .ft-bottom-link:hover {
      color: rgba(255, 255, 255, .55)
    }

    .disclaimer {
      margin-top: 14px;
      font-size: 11px;
      color: rgba(255, 255, 255, .18);
      line-height: 1.7;
      max-width: 900px
    }

    /* ═══════════════════════════════════════
   SCROLL-TO-TOP
═══════════════════════════════════════ */
    .scroll-top {
      position: fixed;
      bottom: 24px;
      left: 24px;
      width: 40px;
      height: 40px;
      background: var(--forest);
      color: var(--gold-l);
      border-radius: 50%;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 300;
      opacity: 0;
      transform: translateY(18px);
      transition: .3s;
      cursor: pointer;
      box-shadow: var(--sh);
      border: none
    }

    .scroll-top.vis {
      opacity: 1;
      transform: translateY(0)
    }

    /* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .gallery {
      animation: fadeUp .4s ease both
    }

    .prop-title-block {
      animation: fadeUp .4s .07s ease both
    }

    .quick-stats {
      animation: fadeUp .4s .13s ease both
    }

    .prop-section {
      animation: fadeUp .35s ease both
    }

    /* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
    @media(max-width:1024px) {
      .page-wrap {
        grid-template-columns: 1fr;
        padding-bottom: 100px
      }

      .sticky-wrap {
        position: static
      }

      .similar-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:640px) {
      .details-grid {
        grid-template-columns: 1fr
      }

      .quick-stats {
        grid-template-columns: repeat(2, 1fr)
      }

      .connectivity-grid {
        grid-template-columns: 1fr
      }

      .activity-row {
        grid-template-columns: 1fr 1fr
      }

      .similar-grid {
        grid-template-columns: 1fr
      }

      .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr)
      }

      .gallery-tab-nav {
        flex-wrap: wrap
      }

      .footer-inner {
        grid-template-columns: 1fr
      }

      .prop-price-row {
        flex-wrap: wrap;
        gap: 8px
      }

      .price-per {
        margin-left: 0
      }
    }
