
    :root {
      --gold: #b08d57;
      --gold-l: #d4af70;
      --gold-ll: #e8c87d;
      --gold-pale: #f5edda;
      --gold-xp: #faf6ee;
      --forest: #1a2e22;
      --forest-m: #243d2e;
      --forest-l: #2e5040;
      --forest-f: #f0f5f1;
      --forest-d: #111e17;
      --cream: #f8f4ec;
      --cream-w: #efe8d5;
      --cream-d: #e4d9c4;
      --ink: #1a1a1a;
      --slate: #444;
      --muted: #888;
      --light: #b8b8b8;
      --border: #e5dfd2;
      --white: #fff;
      --red: #c0392b;
      --green: #27ae60;
      --blue: #2471a3;
      --amber: #e67e22;
      --purple: #6d28d9;
      --shadow-sm: 0 2px 12px rgba(26, 46, 34, .07);
      --shadow: 0 4px 24px rgba(26, 46, 34, .10);
      --shadow-lg: 0 14px 52px rgba(26, 46, 34, .15);
      --shadow-xl: 0 24px 80px rgba(26, 46, 34, .2);
      --radius: 10px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      min-height: 100vh;
      overflow-x: hidden
    }

    /* ════════════════════════════════════════
   VIEWS / ROUTING
════════════════════════════════════════ */
    .view {
      display: none !important
    }

    .view.active {
      display: block !important
    }

    .view.active.flex-view {
      display: flex !important
    }

    /* ════════════════════════════════════════
   TOPNAV
════════════════════════════════════════ */
    .topnav {
      background: var(--forest-d);
      padding: 0 5vw;
      display: flex;
      align-items: center;
      gap: 16px;
      height: 62px;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      border-bottom: 1px solid rgba(176, 141, 87, .18)
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: #fff;
      font-weight: 400;
      text-decoration: none;
      flex-shrink: 0;
      cursor: pointer
    }

    .nav-logo span {
      color: var(--gold-l)
    }

    .nav-links {
      display: flex;
      gap: 6px;
      flex: 1;
      margin-left: 24px
    }

    .nav-link {
      color: rgba(255, 255, 255, .55);
      font-size: 12.5px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 4px;
      cursor: pointer;
      transition: .2s;
      white-space: nowrap
    }

    .nav-link:hover {
      color: rgba(255, 255, 255, .85);
      background: rgba(255, 255, 255, .05)
    }

    .nav-link.active {
      color: var(--gold-l);
      background: rgba(176, 141, 87, .1)
    }

    .nav-badge {
      background: var(--gold);
      color: var(--forest);
      font-size: 9px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 10px;
      margin-left: 4px;
      vertical-align: middle
    }

    .nav-actions {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-shrink: 0
    }

    .nav-user-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
      color: rgba(255, 255, 255, .75);
      padding: 7px 14px;
      border-radius: 5px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: .2s
    }

    .nav-user-btn:hover {
      background: rgba(255, 255, 255, .14);
      color: #fff
    }

    .nav-user-avatar {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--forest);
      flex-shrink: 0
    }

    .btn-nav-gold {
      background: var(--gold);
      color: var(--forest);
      padding: 8px 18px;
      border-radius: 5px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: .2s
    }

    .btn-nav-gold:hover {
      background: var(--gold-l)
    }

    .nav-notif {
      position: relative;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: rgba(255, 255, 255, .6);
      font-size: 15px;
      transition: .2s
    }

    .nav-notif:hover {
      background: rgba(255, 255, 255, .14);
      color: #fff
    }

    .notif-dot {
      position: absolute;
      top: 6px;
      right: 6px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red);
      border: 2px solid var(--forest-d)
    }

    /* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
    #view-home {
      padding-top: 62px
    }

    .hero {
      min-height: 92vh;
      background: var(--forest-d);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1800&q=80') center/cover no-repeat;
      opacity: .22;
      filter: saturate(.7)
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(17, 30, 23, .97) 0%, rgba(17, 30, 23, .85) 50%, rgba(26, 46, 34, .7) 100%)
    }

    .hero-glow {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(176, 141, 87, .12) 0%, transparent 65%);
      pointer-events: none
    }

    .hero-glow2 {
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(46, 80, 64, .4) 0%, transparent 65%);
      pointer-events: none
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 80px 5vw 80px;
      max-width: 780px
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px
    }

    .hero-badge {
      background: rgba(176, 141, 87, .15);
      border: 1px solid rgba(176, 141, 87, .3);
      color: var(--gold-l);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase
    }

    .hero-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .25)
    }

    .hero-sub-eye {
      font-size: 11.5px;
      color: rgba(255, 255, 255, .35);
      letter-spacing: 1px;
      text-transform: uppercase
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 300;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 20px
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-l)
    }

    .hero-title strong {
      font-weight: 600;
      color: #fff
    }

    .hero-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, .52);
      line-height: 1.85;
      max-width: 560px;
      margin-bottom: 36px
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 52px
    }

    .btn-hero-gold {
      background: var(--gold);
      color: var(--forest);
      padding: 14px 30px;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: .25s;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .btn-hero-gold:hover {
      background: var(--gold-l);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(176, 141, 87, .35)
    }

    .btn-hero-ghost {
      background: transparent;
      color: rgba(255, 255, 255, .75);
      border: 1.5px solid rgba(255, 255, 255, .2);
      padding: 14px 28px;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: .25s
    }

    .btn-hero-ghost:hover {
      border-color: var(--gold-l);
      color: var(--gold-l)
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      padding-top: 36px;
      border-top: 1px solid rgba(255, 255, 255, .08)
    }

    .h-stat-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      color: var(--gold-l);
      font-weight: 400;
      line-height: 1
    }

    .h-stat-lab {
      font-size: 11px;
      color: rgba(255, 255, 255, .35);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 4px
    }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      animation: bounce 2.2s ease-in-out infinite
    }

    .hero-scroll span {
      font-size: 11px;
      color: rgba(255, 255, 255, .3);
      letter-spacing: 2px;
      text-transform: uppercase
    }

    .hero-scroll-line {
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, var(--gold), transparent)
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0)
      }

      50% {
        transform: translateX(-50%) translateY(6px)
      }
    }

    /* ════════════════════════════════════════
   ACCESS TIERS SECTION
════════════════════════════════════════ */
    .section {
      padding: 72px 5vw
    }

    .section-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 400;
      color: var(--forest);
      line-height: 1.15;
      margin-bottom: 12px
    }

    .section-title em {
      font-style: italic;
      color: var(--forest-l)
    }

    .section-sub {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      max-width: 540px
    }

    .center {
      text-align: center
    }

    .center .section-sub {
      margin: 0 auto
    }

    .tiers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto
    }

    .tier-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      position: relative;
      transition: .3s;
      cursor: pointer
    }

    .tier-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px)
    }

    .tier-card.featured {
      background: var(--forest);
      border-color: var(--forest);
      transform: scale(1.02)
    }

    .tier-card.featured:hover {
      transform: scale(1.02) translateY(-4px)
    }

    .tier-tag {
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px
    }

    .tier-card.featured .tier-tag {
      color: var(--gold-l)
    }

    .tier-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 6px
    }

    .tier-card.featured .tier-name {
      color: #fff
    }

    .tier-price {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 20px
    }

    .tier-card.featured .tier-price {
      color: rgba(255, 255, 255, .5)
    }

    .tier-price strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      color: var(--forest);
      display: inline-block;
      line-height: 1
    }

    .tier-card.featured .tier-price strong {
      color: var(--gold-l)
    }

    .tier-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 20px
    }

    .tier-card.featured .tier-divider {
      background: rgba(255, 255, 255, .1)
    }

    .tier-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 13px;
      color: var(--slate)
    }

    .tier-card.featured .tier-feature {
      color: rgba(255, 255, 255, .7)
    }

    .tier-feature-icon {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--forest-f);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      flex-shrink: 0;
      margin-top: 1px
    }

    .tier-card.featured .tier-feature-icon {
      background: rgba(176, 141, 87, .2)
    }

    .tier-feature.locked {
      opacity: .4
    }

    .tier-cta {
      width: 100%;
      margin-top: 24px;
      padding: 12px;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      transition: .2s;
      border: none
    }

    .tier-cta-outline {
      background: transparent;
      border: 2px solid var(--forest) !important;
      color: var(--forest)
    }

    .tier-cta-outline:hover {
      background: var(--forest);
      color: #fff
    }

    .tier-cta-gold {
      background: var(--gold);
      color: var(--forest)
    }

    .tier-cta-gold:hover {
      background: var(--gold-l)
    }

    .tier-cta-ghost {
      background: rgba(255, 255, 255, .1);
      color: #fff
    }

    .tier-cta-ghost:hover {
      background: rgba(255, 255, 255, .2)
    }

    .tier-popular-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--forest);
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 10px;
      font-weight: 700;
      white-space: nowrap
    }

    /* ════════════════════════════════════════
   LISTINGS SECTION
════════════════════════════════════════ */
    .listings-section {
      background: var(--cream);
      padding: 64px 5vw
    }

    .listings-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
      flex-wrap: wrap;
      gap: 16px
    }

    .listings-filters {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 16px
    }

    .lf-chip {
      padding: 7px 16px;
      border-radius: 20px;
      border: 1.5px solid var(--border);
      font-size: 12px;
      font-weight: 600;
      color: var(--slate);
      cursor: pointer;
      transition: .2s;
      background: var(--white)
    }

    .lf-chip:hover {
      border-color: var(--gold);
      color: var(--forest)
    }

    .lf-chip.active {
      background: var(--forest);
      border-color: var(--forest);
      color: #fff
    }

    .parcels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      gap: 22px
    }

    /* Parcel card */
    .parcel-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      transition: .28s;
      position: relative
    }

    .parcel-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px)
    }

    .pc-img-wrap {
      height: 220px;
      position: relative;
      overflow: hidden
    }

    .pc-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(.85)saturate(.85);
      transition: .4s
    }

    .parcel-card:hover .pc-img {
      filter: brightness(.75)saturate(.9);
      transform: scale(1.04)
    }

    .pc-badges {
      position: absolute;
      top: 14px;
      left: 14px;
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      z-index: 2
    }

    .pc-badge {
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase
    }

    .pcb-verified {
      background: var(--forest);
      color: var(--gold-l)
    }

    .pcb-featured {
      background: var(--gold);
      color: var(--forest)
    }

    .pcb-exclusive {
      background: #1a0a2e;
      color: #d8b4fe
    }

    .pcb-new {
      background: var(--green);
      color: #fff
    }

    .pcb-urgent {
      background: var(--red);
      color: #fff
    }

    .pc-fav {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, .92);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      border: none;
      transition: .2s;
      z-index: 2
    }

    .pc-fav:hover {
      transform: scale(1.12)
    }

    .pc-overlay-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to top, rgba(17, 30, 23, .75), transparent);
      pointer-events: none
    }

    .pc-area-tag {
      position: absolute;
      bottom: 14px;
      left: 14px;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(6px);
      color: rgba(255, 255, 255, .9);
      font-size: 11.5px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 4px;
      z-index: 2
    }

    .pc-view-count {
      position: absolute;
      bottom: 14px;
      right: 14px;
      background: rgba(0, 0, 0, .45);
      backdrop-filter: blur(4px);
      color: rgba(255, 255, 255, .7);
      font-size: 10.5px;
      padding: 4px 9px;
      border-radius: 4px;
      z-index: 2
    }

    .pc-body {
      padding: 18px 20px 16px
    }

    .pc-type-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px
    }

    .pc-type {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold)
    }

    .pc-id {
      font-size: 10px;
      color: var(--light);
      margin-left: auto
    }

    .pc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 5px;
      line-height: 1.25
    }

    .pc-location {
      font-size: 12.5px;
      color: var(--muted);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 5px
    }

    .pc-specs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 14px;
      padding: 12px;
      background: var(--cream);
      border-radius: 7px
    }

    .pc-spec-item {
      text-align: center
    }

    .pc-spec-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--forest)
    }

    .pc-spec-lab {
      font-size: 9.5px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-top: 1px
    }

    .pc-tags {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-bottom: 14px
    }

    .pc-tag {
      background: var(--forest-f);
      border: 1px solid rgba(26, 46, 34, .08);
      color: var(--forest-l);
      font-size: 10px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 4px
    }

    .pc-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 12px;
      border-top: 1px solid var(--cream-w)
    }

    .pc-price {
      font-size: 12px;
      color: var(--muted)
    }

    .pc-price strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: var(--forest);
      display: block;
      line-height: 1.1
    }

    .pc-price .on-request {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-style: italic;
      color: var(--forest-l)
    }

    .pc-actions {
      display: flex;
      gap: 7px
    }

    .btn-pc {
      padding: 8px 14px;
      border-radius: 5px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: .2s;
      border: none
    }

    .btn-pc-ghost {
      background: transparent;
      border: 1.5px solid var(--border) !important;
      color: var(--slate)
    }

    .btn-pc-ghost:hover {
      border-color: var(--forest) !important;
      color: var(--forest)
    }

    .btn-pc-gold {
      background: var(--gold);
      color: var(--forest)
    }

    .btn-pc-gold:hover {
      background: var(--gold-l)
    }

    .pc-locked {
      position: absolute;
      inset: 0;
      background: rgba(17, 30, 23, .78);
      backdrop-filter: blur(4px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 10;
      border-radius: var(--radius)
    }

    .pc-locked-icon {
      font-size: 32px;
      margin-bottom: 10px
    }

    .pc-locked-text {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, .85);
      margin-bottom: 14px;
      text-align: center;
      padding: 0 20px
    }

    .btn-unlock {
      background: var(--gold);
      color: var(--forest);
      border: none;
      padding: 9px 20px;
      border-radius: 5px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12.5px;
      font-weight: 700;
      cursor: pointer;
      transition: .2s
    }

    .btn-unlock:hover {
      background: var(--gold-l)
    }

    /* ════════════════════════════════════════
   PARCEL DETAIL VIEW
════════════════════════════════════════ */
    #view-parcel {
      padding-top: 62px
    }

    .detail-gallery {
      background: var(--forest-d);
      position: relative
    }

    .dg-main {
      height: 520px;
      overflow: hidden;
      cursor: zoom-in;
      position: relative
    }

    .dg-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(.85);
      transition: transform .5s, filter .3s
    }

    .dg-main:hover img {
      transform: scale(1.025);
      filter: brightness(.78)
    }

    .dg-overlay-top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to bottom, rgba(17, 30, 23, .6), transparent);
      pointer-events: none;
      z-index: 2
    }

    .dg-overlay-bot {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 160px;
      background: linear-gradient(to top, rgba(17, 30, 23, .7), transparent);
      pointer-events: none;
      z-index: 2
    }

    .dg-badges {
      position: absolute;
      top: 20px;
      left: 24px;
      display: flex;
      gap: 8px;
      z-index: 3
    }

    .dg-counter {
      position: absolute;
      bottom: 18px;
      right: 22px;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 12px;
      padding: 5px 12px;
      border-radius: 20px;
      z-index: 3
    }

    .dg-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 20px;
      display: flex;
      gap: 7px;
      z-index: 3
    }

    .dg-nav-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: .2s
    }

    .dg-nav-btn:hover {
      background: rgba(255, 255, 255, .28)
    }

    .dg-thumbs {
      display: flex;
      gap: 3px;
      background: var(--forest-d);
      padding: 3px
    }

    .dg-thumb {
      flex: 1;
      height: 80px;
      overflow: hidden;
      cursor: pointer;
      opacity: .5;
      transition: .2s;
      position: relative
    }

    .dg-thumb:hover,
    .dg-thumb.active {
      opacity: 1
    }

    .dg-thumb.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold)
    }

    .dg-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .detail-body {
      max-width: 1280px;
      margin: 0 auto;
      padding: 40px 4vw 100px;
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 36px;
      align-items: start
    }

    /* Left content */
    .d-title-block {
      padding-bottom: 26px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 28px
    }

    .d-meta-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      flex-wrap: wrap
    }

    .d-type-pill {
      background: var(--forest-f);
      border: 1px solid rgba(26, 46, 34, .1);
      color: var(--forest-l);
      font-size: 10px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: .8px;
      text-transform: uppercase
    }

    .d-id {
      font-size: 11px;
      color: var(--light);
      background: var(--cream-w);
      padding: 3px 9px;
      border-radius: 4px
    }

    .d-views {
      font-size: 12px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 5px
    }

    .d-verified-seal {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(39, 174, 96, .1);
      border: 1px solid rgba(39, 174, 96, .2);
      color: #1a7a45;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 11.5px;
      font-weight: 600
    }

    .d-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 500;
      color: var(--forest);
      line-height: 1.1;
      margin-bottom: 10px
    }

    .d-title em {
      font-style: italic;
      color: var(--forest-l)
    }

    .d-location {
      font-size: 14px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px
    }

    .d-location strong {
      color: var(--slate)
    }

    /* Quick specs */
    .d-quick-specs {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 28px
    }

    .dqs-item {
      background: var(--white);
      padding: 16px 12px;
      text-align: center
    }

    .dqs-icon {
      font-size: 20px;
      margin-bottom: 5px;
      display: block
    }

    .dqs-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--forest);
      line-height: 1
    }

    .dqs-lab {
      font-size: 9.5px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-top: 3px
    }

    /* Sections */
    .d-section {
      margin-bottom: 32px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--border)
    }

    .d-section:last-child {
      border-bottom: none
    }

    .d-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
    }

    .d-sec-title::before {
      content: '';
      width: 4px;
      height: 20px;
      background: var(--gold);
      border-radius: 2px;
      flex-shrink: 0
    }

    .d-sec-body {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.85
    }

    .d-sec-body p {
      margin-bottom: 12px
    }

    /* Highlights */
    .d-highlights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px
    }

    .d-hl-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 7px;
      transition: .2s
    }

    .d-hl-item:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow-sm)
    }

    .d-hl-icon {
      font-size: 22px;
      flex-shrink: 0
    }

    .d-hl-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 2px
    }

    .d-hl-desc {
      font-size: 11.5px;
      color: var(--muted);
      line-height: 1.5
    }

    /* Docs table */
    .docs-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden
    }

    .docs-table tr {
      border-bottom: 1px solid var(--cream-w)
    }

    .docs-table tr:last-child {
      border-bottom: none
    }

    .docs-table tr:hover {
      background: var(--gold-xp)
    }

    .docs-table td {
      padding: 12px 16px;
      font-size: 13px
    }

    .docs-table td:first-child {
      color: var(--muted);
      width: 38%
    }

    .docs-table td:last-child {
      color: var(--ink);
      font-weight: 600
    }

    .doc-status {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11.5px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 4px
    }

    .doc-available {
      background: rgba(39, 174, 96, .1);
      color: var(--green)
    }

    .doc-onrequest {
      background: rgba(176, 141, 87, .15);
      color: var(--gold)
    }

    .doc-verified {
      background: rgba(26, 46, 34, .07);
      color: var(--forest-l)
    }

    /* Map placeholder */
    .map-placeholder {
      height: 280px;
      background: var(--forest-f);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      position: relative;
      overflow: hidden
    }

    .map-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&q=60') center/cover no-repeat;
      opacity: .15
    }

    .map-pin {
      font-size: 42px;
      position: relative;
      z-index: 1
    }

    .map-label {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--forest);
      position: relative;
      z-index: 1
    }

    .map-sub {
      font-size: 12px;
      color: var(--muted);
      position: relative;
      z-index: 1
    }

    .btn-view-map {
      background: var(--forest);
      color: #fff;
      border: none;
      padding: 9px 20px;
      border-radius: 5px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12.5px;
      font-weight: 700;
      cursor: pointer;
      transition: .2s;
      position: relative;
      z-index: 1;
      margin-top: 4px
    }

    .btn-view-map:hover {
      background: var(--forest-m)
    }

    /* Right sidebar */
    .d-sidebar {
      position: sticky;
      top: 82px
    }

    .d-sidebar-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 16px
    }

    .dsc-header {
      background: var(--forest);
      padding: 18px 22px
    }

    .dsc-h-price {
      font-size: 12px;
      color: rgba(255, 255, 255, .45)
    }

    .dsc-h-price strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      color: var(--gold-l);
      display: block;
      line-height: 1.1
    }

    .dsc-h-price em {
      font-style: italic;
      font-size: 16px
    }

    .dsc-h-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(176, 141, 87, .2);
      color: var(--gold-l);
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 4px;
      margin-top: 6px
    }

    .dsc-body {
      padding: 18px 22px
    }

    .dsc-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 13px;
      color: var(--slate)
    }

    .dsc-row-icon {
      font-size: 16px;
      flex-shrink: 0;
      width: 20px
    }

    .dsc-row strong {
      color: var(--forest);
      margin-left: auto;
      font-size: 13.5px
    }

    .dsc-divider {
      height: 1px;
      background: var(--border);
      margin: 14px 0
    }

    .btn-dsc {
      width: 100%;
      padding: 13px;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: .2s;
      border: none;
      margin-bottom: 9px
    }

    .btn-dsc-gold {
      background: var(--gold);
      color: var(--forest)
    }

    .btn-dsc-gold:hover {
      background: var(--gold-l)
    }

    .btn-dsc-forest {
      background: var(--forest);
      color: #fff
    }

    .btn-dsc-forest:hover {
      background: var(--forest-m)
    }

    .btn-dsc-outline {
      background: transparent;
      border: 1.5px solid var(--border) !important;
      color: var(--slate)
    }

    .btn-dsc-outline:hover {
      border-color: var(--forest) !important;
      color: var(--forest)
    }

    .dsc-trust {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      background: var(--forest-f);
      border-radius: 6px;
      font-size: 11.5px;
      color: var(--forest-l);
      margin-top: 4px
    }

    .seller-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 18px 20px
    }

    .seller-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px
    }

    .seller-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--forest);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 700;
      color: var(--gold-l);
      border: 2px solid var(--gold-pale);
      flex-shrink: 0
    }

    .seller-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--forest)
    }

    .seller-type {
      font-size: 11.5px;
      color: var(--muted)
    }

    .seller-verified {
      font-size: 10.5px;
      font-weight: 700;
      color: var(--green);
      background: rgba(39, 174, 96, .1);
      padding: 2px 8px;
      border-radius: 10px
    }

    .seller-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 7px;
      overflow: hidden;
      margin-bottom: 14px
    }

    .ss-item {
      padding: 10px;
      text-align: center;
      border-right: 1px solid var(--border)
    }

    .ss-item:last-child {
      border-right: none
    }

    .ss-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--forest)
    }

    .ss-lab {
      font-size: 9.5px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .5px
    }

    /* ════════════════════════════════════════
   DASHBOARD — BUYER
════════════════════════════════════════ */
    #view-buyer {
      padding-top: 62px;
      background: var(--cream);
      min-height: 100vh
    }

    .dash-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      min-height: calc(100vh - 62px)
    }

    .dash-sidebar {
      background: var(--forest-d);
      padding: 28px 0;
      position: sticky;
      top: 62px;
      height: calc(100vh - 62px);
      overflow-y: auto
    }

    .ds-user {
      padding: 0 20px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      margin-bottom: 20px
    }

    .ds-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 12px;
      border: 2px solid rgba(176, 141, 87, .4)
    }

    .ds-name {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 2px
    }

    .ds-role {
      font-size: 11px;
      color: rgba(255, 255, 255, .35);
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .ds-nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      cursor: pointer;
      transition: .2s;
      position: relative
    }

    .ds-nav-item:hover {
      color: rgba(255, 255, 255, .85);
      background: rgba(255, 255, 255, .04)
    }

    .ds-nav-item.active {
      color: #fff;
      background: rgba(176, 141, 87, .1)
    }

    .ds-nav-item.active::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--gold);
      border-radius: 0 2px 2px 0
    }

    .ds-nav-icon {
      font-size: 16px;
      flex-shrink: 0;
      width: 20px
    }

    .ds-nav-badge {
      margin-left: auto;
      background: var(--red);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 10px
    }

    .ds-section-label {
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .2);
      padding: 16px 20px 6px
    }

    .dash-main {
      padding: 32px 36px;
      overflow-y: auto
    }

    .dash-page {
      display: none
    }

    .dash-page.active {
      display: block
    }

    .dash-welcome {
      margin-bottom: 32px
    }

    .dash-greeting {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 400;
      color: var(--forest);
      margin-bottom: 4px
    }

    .dash-greeting em {
      font-style: italic;
      color: var(--forest-l)
    }

    .dash-date {
      font-size: 13px;
      color: var(--muted)
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 28px
    }

    .stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 22px
    }

    .sc-icon-wrap {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 12px
    }

    .sc-green {
      background: rgba(39, 174, 96, .1)
    }

    .sc-gold {
      background: rgba(176, 141, 87, .1)
    }

    .sc-blue {
      background: rgba(36, 113, 163, .1)
    }

    .sc-purple {
      background: rgba(109, 40, 217, .1)
    }

    .stat-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 400;
      color: var(--forest);
      line-height: 1
    }

    .stat-lab {
      font-size: 12px;
      color: var(--muted);
      margin-top: 3px
    }

    .stat-delta {
      font-size: 11px;
      font-weight: 600;
      margin-top: 6px
    }

    .delta-up {
      color: var(--green)
    }

    .delta-down {
      color: var(--red)
    }

    .dash-table-wrap {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 24px
    }

    .dash-table-header {
      padding: 16px 22px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .dash-table-title {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--forest)
    }

    .dash-table-link {
      font-size: 12px;
      color: var(--gold);
      font-weight: 600;
      cursor: pointer
    }

    .dash-table-link:hover {
      color: var(--forest)
    }

    table.dt {
      width: 100%;
      border-collapse: collapse
    }

    table.dt th {
      padding: 11px 18px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
      text-align: left;
      border-bottom: 1px solid var(--border);
      background: var(--cream)
    }

    table.dt td {
      padding: 13px 18px;
      font-size: 13px;
      color: var(--slate);
      border-bottom: 1px solid var(--cream-w)
    }

    table.dt tbody tr:last-child td {
      border-bottom: none
    }

    table.dt tbody tr:hover td {
      background: var(--gold-xp)
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 10.5px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 10px;
      text-transform: uppercase;
      letter-spacing: .5px
    }

    .sp-pending {
      background: rgba(230, 126, 34, .12);
      color: var(--amber)
    }

    .sp-active {
      background: rgba(39, 174, 96, .1);
      color: var(--green)
    }

    .sp-closed {
      background: rgba(136, 136, 136, .12);
      color: var(--muted)
    }

    .sp-new {
      background: rgba(36, 113, 163, .1);
      color: var(--blue)
    }

    .sp-urgent {
      background: rgba(192, 57, 43, .1);
      color: var(--red)
    }

    /* ════════════════════════════════════════
   DASHBOARD — SELLER
════════════════════════════════════════ */
    #view-seller {
      padding-top: 62px;
      background: var(--cream);
      min-height: 100vh
    }

    /* ════════════════════════════════════════
   DASHBOARD — ADMIN
════════════════════════════════════════ */
    #view-admin {
      padding-top: 62px;
      background: var(--cream);
      min-height: 100vh
    }

    .admin-top-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 12px 5vw;
      display: flex;
      align-items: center;
      gap: 14px
    }

    .admin-top-bar .atb-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      background: rgba(192, 57, 43, .1);
      padding: 4px 10px;
      border-radius: 4px
    }

    .admin-top-search {
      flex: 1;
      max-width: 320px;
      position: relative
    }

    .admin-top-search input {
      width: 100%;
      padding: 8px 14px 8px 34px;
      border: 1.5px solid var(--border);
      border-radius: 5px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      outline: none;
      background: var(--cream);
      transition: .2s
    }

    .admin-top-search input:focus {
      border-color: var(--gold)
    }

    .admin-top-search .si {
      position: absolute;
      left: 11px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 13px;
      color: var(--muted)
    }

    .admin-quick-stats {
      display: flex;
      gap: 16px;
      margin-left: auto
    }

    .aqs {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12.5px;
      color: var(--slate)
    }

    .aqs-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%
    }

    /* ════════════════════════════════════════
   MODALS / OVERLAYS
════════════════════════════════════════ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17, 30, 23, .72);
      backdrop-filter: blur(6px);
      z-index: 900;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px
    }

    .modal-overlay.open {
      display: flex
    }

    .modal {
      background: var(--white);
      border-radius: 14px;
      width: 100%;
      max-width: 460px;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      animation: modalIn .3s cubic-bezier(.34, 1.56, .64, 1)
    }

    .modal-lg {
      max-width: 720px
    }

    .modal-xl {
      max-width: 960px
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: scale(.93) translateY(16px)
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0)
      }
    }

    .modal-header {
      padding: 22px 26px 16px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .modal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--forest)
    }

    .modal-close {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--cream);
      border: none;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: .2s
    }

    .modal-close:hover {
      background: var(--cream-d);
      color: var(--ink)
    }

    .modal-body {
      padding: 24px 26px
    }

    .modal-footer {
      padding: 16px 26px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 10px;
      justify-content: flex-end
    }

    /* Auth Modal */
    .auth-tabs {
      display: flex;
      border-bottom: 1px solid var(--border);
      margin: -24px -26px 24px
    }

    .auth-tab {
      flex: 1;
      padding: 14px;
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: .2s;
      background: transparent;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: 'DM Sans', sans-serif
    }

    .auth-tab.active {
      color: var(--forest);
      border-bottom-color: var(--gold)
    }

    .auth-tabs-outer {
      display: flex;
      gap: 0;
      background: var(--cream);
      border-radius: 7px;
      margin-bottom: 22px;
      overflow: hidden
    }

    .auth-role-tab {
      flex: 1;
      padding: 10px;
      text-align: center;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      transition: .2s;
      background: transparent;
      border: none;
      font-family: 'DM Sans', sans-serif
    }

    .auth-role-tab.active {
      background: var(--forest);
      color: #fff
    }

    .form-field {
      margin-bottom: 16px
    }

    .form-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 6px;
      display: block
    }

    .form-input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13.5px;
      color: var(--ink);
      outline: none;
      transition: .2s;
      background: var(--white)
    }

    .form-input:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(176, 141, 87, .1)
    }

    .form-select {
      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
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px
    }

    .form-hint {
      font-size: 11px;
      color: var(--muted);
      margin-top: 4px
    }

    .form-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 18px 0;
      color: var(--muted);
      font-size: 12px
    }

    .form-divider::before,
    .form-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border)
    }

    .btn-form {
      width: 100%;
      padding: 13px;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: .2s
    }

    .btn-form-gold {
      background: var(--gold);
      color: var(--forest)
    }

    .btn-form-gold:hover {
      background: var(--gold-l)
    }

    .btn-form-forest {
      background: var(--forest);
      color: #fff
    }

    .btn-form-forest:hover {
      background: var(--forest-m)
    }

    .btn-social {
      width: 100%;
      padding: 11px;
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: 1.5px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: .2s;
      color: var(--slate)
    }

    .btn-social:hover {
      border-color: var(--forest);
      color: var(--forest)
    }

    .auth-footer-note {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-top: 14px
    }

    .auth-footer-note a {
      color: var(--forest);
      font-weight: 600;
      cursor: pointer;
      text-decoration: none
    }

    .auth-footer-note a:hover {
      color: var(--gold)
    }

    /* Enquiry Modal */
    .eq-parcel-info {
      background: var(--cream);
      border-radius: 8px;
      padding: 14px 16px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 14px
    }

    .eq-pi-img {
      width: 64px;
      height: 64px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0
    }

    .eq-pi-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--forest)
    }

    .eq-pi-loc {
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px
    }

    .eq-pi-price {
      font-size: 12px;
      color: var(--gold);
      font-weight: 600;
      margin-top: 3px
    }

    .check-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 6px
    }

    .check-chip {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 20px;
      border: 1.5px solid var(--border);
      font-size: 12px;
      font-weight: 500;
      color: var(--slate);
      cursor: pointer;
      transition: .2s;
      background: transparent;
      user-select: none
    }

    .check-chip.checked {
      background: var(--forest-f);
      border-color: var(--forest);
      color: var(--forest)
    }

    /* NDA Modal */
    .nda-icon {
      font-size: 48px;
      text-align: center;
      margin-bottom: 12px
    }

    .nda-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      text-align: center;
      color: var(--forest);
      margin-bottom: 8px
    }

    .nda-desc {
      font-size: 13.5px;
      color: var(--muted);
      text-align: center;
      line-height: 1.7;
      margin-bottom: 20px
    }

    .nda-terms {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 16px;
      font-size: 12px;
      color: var(--slate);
      line-height: 1.75;
      max-height: 180px;
      overflow-y: auto;
      margin-bottom: 18px
    }

    .nda-agree {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--slate);
      cursor: pointer
    }

    .nda-agree input {
      margin-top: 3px;
      width: 16px;
      height: 16px;
      accent-color: var(--forest)
    }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 28px;
      right: 28px;
      background: var(--forest-d);
      color: #fff;
      padding: 14px 20px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: var(--shadow-xl);
      z-index: 1000;
      transform: translateY(80px);
      opacity: 0;
      transition: .35s cubic-bezier(.34, 1.56, .64, 1);
      pointer-events: none;
      border-left: 4px solid var(--gold);
      max-width: 360px
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1
    }

    /* ════════════════════════════════════════
   MISC UTILITIES
════════════════════════════════════════ */
    .divider {
      height: 1px;
      background: var(--border);
      margin: 28px 0
    }

    .tag-row {
      display: flex;
      gap: 6px;
      flex-wrap: wrap
    }

    .tag {
      background: var(--forest-f);
      border: 1px solid rgba(26, 46, 34, .1);
      color: var(--forest-l);
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 4px
    }

    .btn-text {
      background: none;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--forest-l);
      cursor: pointer;
      padding: 0;
      transition: .2s
    }

    .btn-text:hover {
      color: var(--gold)
    }

    /* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .fade-up {
      animation: fadeUp .5s ease both
    }

    /* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
    @media(max-width:1024px) {
      .detail-body {
        grid-template-columns: 1fr
      }

      .d-sidebar {
        position: static
      }

      .d-quick-specs {
        grid-template-columns: repeat(3, 1fr)
      }

      .tiers-grid {
        grid-template-columns: 1fr 1fr
      }

      .dash-layout {
        grid-template-columns: 1fr
      }

      .dash-sidebar {
        display: none
      }
    }

    @media(max-width:768px) {

      .tiers-grid,
      .parcels-grid {
        grid-template-columns: 1fr
      }

      .stats-row {
        grid-template-columns: 1fr 1fr
      }

      .d-highlights-grid {
        grid-template-columns: 1fr
      }

      .nav-links {
        display: none
      }

      .hero-stats {
        gap: 24px
      }
    }