/* ================================================================
   responsive.css  —  Hero v3 + Fullscreen Mobile Nav + Dashboard
   ================================================================ */

/* ────────────────────────────────────────────
   NAVBAR  (shared across all pages)
──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184,150,110,.2), 0 8px 32px rgba(10,22,40,.28);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.logo {
  font-family: var(--font-d);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; flex: 1; }
.nav-links a {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 500;
  transition: color .28s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .28s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; gap: .75rem; align-items: center; }

/* Hamburger — top-right corner, modern lines */
.hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: background .2s;
  margin-left: auto;
}
.hamburger:hover { background: rgba(255,255,255,.14); }
.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ────────────────────────────────────────────
   FULLSCREEN MOBILE MENU OVERLAY
──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open {
  display: flex;
  animation: menuReveal .32s cubic-bezier(.4,0,.2,1) both;
}
@keyframes menuReveal {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 76px;
  border-bottom: 1px solid rgba(184,150,110,.15);
  flex-shrink: 0;
}
.mm-close {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.mm-close:hover { background: rgba(255,255,255,.14); }
.mm-links {
  display: flex;
  flex-direction: column;
  padding: 2rem 24px 1rem;
  flex: 1;
}
.mm-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.82);
  font-size: 1.5rem;
  font-family: var(--font-d);
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mm-links a::after { content: '→'; font-size: 1.1rem; opacity: .3; transition: opacity .2s, transform .2s; }
.mm-links a:hover { color: var(--gold); }
.mm-links a:hover::after { opacity: 1; transform: translateX(4px); }
.mm-bottom {
  padding: 1.5rem 24px 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mm-bottom .btn-gold { text-align: center; justify-content: center; font-size: 1rem; padding: 16px; border-radius: 8px; }
.mm-bottom .btn-outline { text-align: center; justify-content: center; font-size: 1rem; padding: 15px; border-radius: 8px; }
.mm-tagline {
  text-align: center;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .5rem;
}

/* ────────────────────────────────────────────
   HERO  — Corporate Real Estate
──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

/* BG */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform-origin: center;
  animation: heroScale 20s ease-out forwards;
}
@keyframes heroScale {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
/* Multi-layer overlay for depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,22,40,.55) 0%, rgba(10,22,40,.12) 40%, rgba(10,22,40,.7) 100%),
    linear-gradient(to right, rgba(10,22,40,.92) 0%, rgba(10,22,40,.75) 45%, rgba(10,22,40,.2) 100%);
}
/* Gold light accent — corporate glow bottom-left */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,110,.08) 0%, transparent 65%);
  pointer-events: none;
}

/* HERO BODY */
.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 28px 110px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}

/* ── LEFT ── */
.hero-left { display: flex; flex-direction: column; }

/* Category tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 2.2rem;
  animation: fadeSlide .7s ease both;
}
.hero-tag-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}
.hero-tag-text {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Headline */
.hero-left h1 {
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
  animation: fadeSlide .7s .1s ease both;
}
.hero-left h1 .h1-plain { display: block; color: var(--white); }
.hero-left h1 .h1-accent {
  display: block;
  color: var(--gold);
  position: relative;
  width: fit-content;
}
/* subtle underline bar on accent word */
.hero-left h1 .h1-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(184,150,110,0));
  border-radius: 2px;
  transform-origin: left;
  animation: lineExpand 1s 1.2s ease both;
}
@keyframes lineExpand {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* Sub text */
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.62);
  max-width: 480px;
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.88;
  animation: fadeSlide .7s .2s ease both;
}

/* Buttons */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeSlide .7s .3s ease both;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background .25s, transform .25s, box-shadow .25s;
  border: none;
  cursor: pointer;
}
.hero-cta-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184,150,110,.35);
}
.hero-cta-primary svg { transition: transform .25s; }
.hero-cta-primary:hover svg { transform: translateX(3px); }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-family: var(--font-b);
  font-weight: 500;
  font-size: .9rem;
  padding: 16px 28px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(4px);
  transition: color .25s, border-color .25s, background .25s;
  cursor: pointer;
}
.hero-cta-secondary:hover {
  color: var(--gold);
  border-color: rgba(184,150,110,.45);
  background: rgba(184,150,110,.06);
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  animation: fadeSlide .7s .42s ease both;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2.5rem;
}
.hs-block {
  padding-right: 2.5rem;
  flex-shrink: 0;
}
.hs-block:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 2.5rem;
}
.hs-num {
  display: block;
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.hs-lbl {
  display: block;
  font-size: .65rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RIGHT: Property card ── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeSlide .8s .5s ease both;
}

.hero-prop-card {
  background: rgba(10,22,40,.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}
/* thin gold top accent */
.hero-prop-card::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(184,150,110,0));
}

.hpc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 10px;
}
.hpc-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.hpc-type {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 11px;
  border-radius: 3px;
}
.hpc-img {
  height: 168px;
  margin: 0 14px;
  border-radius: 8px;
  overflow: hidden;
}
.hpc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.hero-prop-card:hover .hpc-img img { transform: scale(1.04); }
.hpc-body { padding: 16px 18px 20px; }
.hpc-name {
  color: white;
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.hpc-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  margin-bottom: 14px;
}
.hpc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}
.hpc-price {
  font-family: var(--font-d);
  font-size: 1.55rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hpc-price-lbl {
  font-size: .64rem;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.hpc-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hpc-chip {
  font-size: .67rem;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 3px 9px;
  border-radius: 3px;
}
.hpc-cta {
  display: block;
  text-align: center;
  padding: 11px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .05em;
  border-radius: 4px;
  transition: background .2s;
}
.hpc-cta:hover { background: var(--gold-2); }

/* Commission pill below card */
.hpc-commission {
  background: rgba(10,22,40,.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(184,150,110,.22);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hpc-comm-icon { font-size: 1.3rem; flex-shrink: 0; }
.hpc-comm-val {
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
}
.hpc-comm-lbl {
  font-size: .62rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.28);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(184,150,110,.5), transparent);
}

/* ────────────────────────────────────────────
   HOMEPAGE  extras
──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-img-stack {
  position: relative;
  height: 520px;
}
.why-img-stack .wi-main {
  width: 76%; height: 390px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--sh-xl);
  position: absolute; top: 0; left: 0;
}
.why-img-stack .wi-accent {
  width: 58%; height: 260px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--sh-xl);
  position: absolute; bottom: 0; right: 0;
  border: 4px solid var(--white);
}
.why-badge {
  position: absolute;
  bottom: 50%; right: 22%;
  transform: translateY(50%);
  background: var(--gold);
  border-radius: 50%;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 32px rgba(184,150,110,.5);
  z-index: 2;
}
.why-points { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.why-point  { display: flex; align-items: flex-start; gap: .9rem; }
.wp-num {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: rgba(184,150,110,.1);
  border: 1px solid rgba(184,150,110,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: .9rem; color: var(--gold); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.wp-text h4 { font-size: .94rem; margin-bottom: .2rem; }
.wp-text p  { font-size: .84rem; color: var(--gray); line-height: 1.65; }

.numbers-section { padding: 80px 0; background: var(--navy); position: relative; overflow: hidden; }
.numbers-section::before { content: ''; position: absolute; left: -100px; top: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(184,150,110,.06) 0%, transparent 70%); pointer-events: none; }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.07); border-radius: var(--r); overflow: hidden; }
.number-item { background: var(--navy); padding: 2.5rem; text-align: center; transition: var(--t); }
.number-item:hover { background: var(--navy-2); }
.number-item strong { display: block; font-family: var(--font-d); font-size: 3.4rem; color: var(--gold); line-height: 1; margin-bottom: .5rem; }
.number-item span   { font-size: .7rem; color: rgba(255,255,255,.38); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-xl); margin-top: 3rem; }
.spotlight-img { height: 480px; overflow: hidden; }
.spotlight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.spotlight:hover .spotlight-img img { transform: scale(1.04); }
.spotlight-info { background: var(--navy); padding: 3rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.spotlight-info h2 { color: white; font-size: 2.2rem; margin: .4rem 0 1.1rem; }
.spotlight-info p  { color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 2rem; font-size: .92rem; }
.spotlight-specs { display: flex; gap: 2rem; margin-bottom: 2.25rem; }
.ss-item strong { display: block; font-family: var(--font-d); font-size: 1.5rem; color: var(--gold); }
.ss-item span   { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }

.reviews-featured { display: grid; grid-template-columns: 320px 1fr; gap: 4.5rem; align-items: start; }
.reviews-scroll { display: flex; flex-direction: column; gap: 1.5rem; }
.overall-rating { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem; background: var(--white); border-radius: var(--r); border: 1px solid var(--line); margin-bottom: 1.75rem; box-shadow: var(--sh-sm); }
.rating-num     { font-family: var(--font-d); font-size: 4rem; color: var(--navy); line-height: 1; }
.rating-stars   { color: var(--gold); font-size: 1.05rem; margin-bottom: .2rem; }
.rating-count   { font-size: .78rem; color: var(--gray); }
.review-card-v2 { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 1.75rem 2rem; transition: var(--t); position: relative; }
.review-card-v2::before { content: '"'; font-family: var(--font-d); font-size: 6rem; color: var(--gold); opacity: .1; position: absolute; top: -14px; left: 16px; line-height: 1; pointer-events: none; }
.review-card-v2:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: var(--gold-3); }
.rcv2-stars  { color: var(--gold); font-size: .8rem; margin-bottom: .9rem; letter-spacing: 2px; }
.rcv2-body   { font-size: .93rem; color: var(--navy); line-height: 1.78; opacity: .85; margin-bottom: 1.35rem; font-style: italic; }
.rcv2-foot   { display: flex; justify-content: space-between; align-items: center; padding-top: 1.1rem; border-top: 1px solid var(--line); flex-wrap: wrap; gap: .5rem; }
.rcv2-person { display: flex; align-items: center; gap: .75rem; }
.rcv2-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--cream-2); flex-shrink: 0; }
.rcv2-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rcv2-name   { font-weight: 700; font-size: .88rem; }
.rcv2-role   { font-size: .74rem; color: var(--gray); }
.rcv2-earned { font-size: .76rem; color: var(--green); font-weight: 700; white-space: nowrap; }

.comm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.comm-split .col-text h2 { margin: .5rem 0 1.1rem; }
.comm-split .col-text p  { color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }

.rev-left h2 { margin: .5rem 0 1.2rem; }
.rev-left p  { color: var(--gray); line-height: 1.8; margin-bottom: 1.75rem; }

/* ────────────────────────────────────────────
   MOBILE SIDEBAR (dashboard)
──────────────────────────────────────────── */
.mob-sidebar-toggle { display: none; }

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 799;
  backdrop-filter: blur(2px);
}
.sidebar-backdrop.show { display: block; }

/* ════════════════════════════════════════════
   RESPONSIVE  —  breakpoints
════════════════════════════════════════════ */

/* 1280px */
@media (max-width: 1280px) {
  .hero-body { grid-template-columns: 1fr 320px; gap: 44px; }
}

/* 1100px — tablet landscape */
@media (max-width: 1100px) {
  /* hero */
  .hero-body { grid-template-columns: 1fr; padding: 80px 28px 100px; }
  .hero-right { display: none; }
  .hero-left h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
  .hero-desc { max-width: 600px; }

  /* site sections */
  .why-grid         { grid-template-columns: 1fr; gap: 3rem; }
  .why-img-stack    { display: none; }
  .numbers-grid     { grid-template-columns: repeat(2,1fr); }
  .spotlight        { grid-template-columns: 1fr; }
  .spotlight-img    { height: 300px; }
  .spotlight-info   { padding: 2.5rem; }
  .comm-split       { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-featured { grid-template-columns: 1fr; gap: 2.5rem; }

  /* footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* auth */
  .auth-left { display: none; }
  .auth-page { grid-template-columns: 1fr; }

  /* dashboard */
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .mob-sidebar-toggle { display: flex; }

  /* sidebar open state */
  .sidebar.sidebar-open {
    display: flex !important;
    position: fixed;
    top: 0; left: 0;
    width: 260px;
    height: 100vh;
    height: 100dvh;
    z-index: 800;
    flex-direction: column;
    animation: sidebarIn .28s cubic-bezier(.4,0,.2,1) both;
  }
  @keyframes sidebarIn {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
  }

  /* property detail */
  .prop-detail-body { grid-template-columns: 1fr; }
  .prop-gallery     { grid-template-columns: 1fr; height: 300px; }
  .prop-gallery .side-imgs { display: none; }

  /* properties listing */
  .props-layout  { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
}

/* 900px — tablet portrait */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section   { padding: 72px 0; }
  .hero-body { padding: 72px 20px 90px; }
  .hero-left h1 { font-size: clamp(2.5rem, 7vw, 4rem); }
  .hs-block:not(:last-child) { margin-right: 2rem; padding-right: 2rem; }

  .props-grid    { grid-template-columns: repeat(2,1fr); }
  .steps-v2      { grid-template-columns: repeat(2,1fr); }
  .steps-v2::before { display: none; }
  .detail-specs  { grid-template-columns: repeat(2,1fr); }
  .mission-grid  { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2,1fr); }
  .contact-grid  { grid-template-columns: 1fr; }
  .prop-list-card { grid-template-columns: 200px 1fr; }
}

/* 768px — mobile */
@media (max-width: 768px) {
  /* NAVBAR */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex !important; }
  .nav-inner  { height: 64px; padding: 0 20px; }

  /* HERO */
  .hero-body  { padding: 60px 20px 80px; }
  .hero-left h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-tag   { margin-bottom: 1.75rem; }
  .hero-desc  { font-size: .95rem; margin-bottom: 2.25rem; }
  .hero-ctas  { gap: .75rem; margin-bottom: 3rem; }
  .hero-stats { padding-top: 2rem; }
  .hs-block:not(:last-child) { padding-right: 1.5rem; margin-right: 1.5rem; }
  .hs-num { font-size: 1.7rem; }
  .hero-scroll { display: none; }

  /* trust strip */
  .trust-strip { display: none; }

  /* sections */
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 2.5rem; }

  /* numbers */
  .numbers-section { padding: 56px 0; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); border-radius: 10px; }
  .number-item  { padding: 1.75rem 1.25rem; }
  .number-item strong { font-size: 2.6rem; }

  /* steps */
  .steps-v2 { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .step-v2  { padding: 0 .5rem; }

  /* properties */
  .props-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .prop-list-card { grid-template-columns: 1fr; }

  /* reviews */
  .review-card-v2 { padding: 1.4rem 1.5rem; }
  .rcv2-body { font-size: .88rem; }
  .review-card-v2::before { display: none; }

  /* auth */
  .auth-right { padding: 40px 24px; }
  .auth-box h3 { font-size: 1.85rem; }

  /* dashboard */
  .stat-cards     { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .dashboard-body { padding: 1rem; }
  .dash-card-body { padding: 1rem 1.1rem; }
  .topbar         { padding: 0 1rem; height: 60px; }
  .topbar-title   { font-size: .88rem; }
  .user-pill      { padding: 4px 10px 4px 4px; }
  .user-pill span { display: none; }
  .table-wrap     { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table     { font-size: .78rem; min-width: 500px; }
  .data-table td,
  .data-table th  { padding: 9px 10px; }
  .ref-box-dash   { flex-direction: column; gap: 1rem; padding: 1.25rem; }
  .bar-chart      { height: 100px; }

  /* wallet */
  .wallet-card    { padding: 1.75rem; }
  .wallet-amount  { font-size: 2.4rem; }
  .wallet-actions { flex-direction: column; }
  .wallet-actions .btn-gold,
  .wallet-actions .btn-outline { width: 100%; justify-content: center; }

  /* modal */
  .modal-backdrop { align-items: flex-end; }
  .modal-box      { border-radius: var(--r) var(--r) 0 0; max-width: 100%; margin: 0; padding: 2rem 1.5rem; }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* footer */
  .footer-top    { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .35rem; }

  /* profile */
  .profile-grid-2 { grid-template-columns: 1fr !important; }
}

/* 480px — small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner  { padding: 0 16px; height: 60px; }

  /* hero */
  .hero-body { padding: 48px 16px 72px; }
  .hero-left h1 { font-size: clamp(1.95rem, 9.5vw, 2.7rem); letter-spacing: -.01em; }
  .hero-tag-text { font-size: .62rem; }
  .hero-desc  { font-size: .9rem; }
  .hero-ctas  { flex-direction: column; }
  .hero-cta-primary,
  .hero-cta-secondary { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; padding-top: 1.75rem; }
  .hs-block:not(:last-child) { border-right: none; margin-right: 0; padding-right: 0; }
  .hs-block { width: calc(50% - .75rem); }
  .hs-num { font-size: 1.6rem; }

  /* sections */
  .section { padding: 52px 0; }
  .section-head h2 { font-size: 1.85rem; }

  /* numbers */
  .number-item strong { font-size: 2.1rem; }
  .number-item span   { font-size: .62rem; }

  /* steps */
  .steps-v2 { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; }
  .step-circle { width: 64px; height: 64px; }
  .step-num-v2 { font-size: 1.35rem; }

  /* spotlight */
  .spotlight-info { padding: 1.75rem; }
  .spotlight-info h2 { font-size: 1.6rem; }
  .spotlight-specs { gap: 1.25rem; }

  /* dashboard */
  .stat-cards  { gap: .75rem; }
  .sc-value    { font-size: 1.6rem; }
  .dash-page-title { font-size: 1.5rem; }

  /* cta */
  .cta-btn-row { flex-direction: column; align-items: stretch; }
  .cta-btn-row a { text-align: center; justify-content: center; }

  /* commission */
  .comm-visual { padding: 1.5rem; }
  .cl-rate { font-size: 1.9rem; }
  .comm-level { flex-direction: column; align-items: flex-start; gap: .5rem; padding: 1rem; }

  /* auth */
  .auth-right { padding: 28px 16px; }
  .auth-box h3 { font-size: 1.6rem; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
}

/* 360px — very small */
@media (max-width: 360px) {
  .hero-left h1 { font-size: 1.8rem; }
  .hero-stats { gap: 1rem; }
  .hs-block { width: 100%; }
  .stat-cards { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .logo { font-size: 1.5rem; }
}

/* ────────────────────────────────────────────
   MOBILE SIDEBAR TOGGLE BUTTON
──────────────────────────────────────────── */
.mob-sidebar-toggle {
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 7px;
  font-family: var(--font-b);
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.mob-sidebar-toggle:hover { background: var(--cream); }
.mob-sidebar-toggle svg { flex-shrink: 0; }

/* TOUCH TARGETS */
@media (max-width: 768px) {
  .btn-gold, .btn-outline, .btn-navy { min-height: 44px; }
  .sidebar-nav a { min-height: 44px; }
  .hamburger     { min-height: 44px; min-width: 44px; }
}
