/* ============================================================
   Northgate Living — Socialtrafic demo
   Palette: stone #EFEAE1 · ink #161A1F · brass #C19550 · sage #6C8770
   ============================================================ */

:root {
  --stone: #EFEAE1;
  --stone-2: #E6E0D3;
  --ink: #161A1F;
  --ink-60: rgba(22, 26, 31, 0.6);
  --ink-40: rgba(22, 26, 31, 0.4);
  --ink-12: rgba(22, 26, 31, 0.12);
  --ink-08: rgba(22, 26, 31, 0.08);
  --brass: #C19550;
  --brass-dark: #A47B3C;
  --sage: #6C8770;
  --paper: #FBF8F2;
  --line: rgba(22, 26, 31, 0.10);
  --shadow: 0 30px 60px -30px rgba(22, 26, 31, 0.25);
  --radius: 14px;
  --container: 1240px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.serif { font-family: 'Playfair Display', 'Times New Roman', serif; font-weight: 500; letter-spacing: -0.01em; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: -0.015em; margin: 0; color: var(--ink); }
h1 { font-size: clamp(38px, 5.5vw, 68px); line-height: 1.04; }
h2 { font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1; }
h3 { font-size: 22px; line-height: 1.25; }
p { margin: 0; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ------------------------------------------------------------
   Buttons
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--stone);
}
.btn-primary:hover { background: var(--brass); transform: translateY(-1px); box-shadow: 0 14px 30px -12px rgba(193,149,80,.6); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-12);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-brass {
  background: var(--brass);
  color: var(--ink);
}
.btn-brass:hover { background: var(--brass-dark); color: var(--stone); transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------
   Topbar
------------------------------------------------------------ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 234, 225, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--ink);
  display: grid; place-items: center;
  color: var(--brass);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-60);
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--ink); }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.rera-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--stone-2);
  border: 1px solid var(--ink-12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.rera-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 3px rgba(108,135,112,.18);
}

/* ------------------------------------------------------------
   Hero
------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--stone);
  min-height: clamp(620px, 88vh, 880px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=2400&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: kenburns 22s ease-in-out infinite alternate;
  z-index: -2;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,26,31,0) 0%, rgba(22,26,31,0.15) 40%, rgba(22,26,31,0.85) 100%),
    linear-gradient(90deg, rgba(22,26,31,0.55) 0%, rgba(22,26,31,0) 60%);
  z-index: -1;
}
@keyframes kenburns {
  0%   { transform: scale(1.06) translate(0,0); }
  100% { transform: scale(1.14) translate(-1.5%, -1%); }
}

.hero-content {
  width: 100%;
  padding: 120px 0 80px;
}
.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--stone);
}
.chip-brass {
  background: rgba(193,149,80,0.18);
  border-color: rgba(193,149,80,0.5);
  color: #E8C896;
}
.hero h1 {
  color: var(--stone);
  max-width: 16ch;
  margin-bottom: 22px;
}
.hero p.sub {
  font-size: 17px;
  color: rgba(239,234,225,0.78);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-primary { background: var(--brass); color: var(--ink); }
.hero .btn-primary:hover { background: var(--stone); }
.hero .btn-ghost { color: var(--stone); border-color: rgba(255,255,255,0.3); }
.hero .btn-ghost:hover { border-color: var(--stone); background: rgba(255,255,255,0.06); }

.hero-meta {
  position: absolute;
  right: 28px;
  bottom: 36px;
  display: flex;
  gap: 28px;
  font-size: 12px;
  color: rgba(239,234,225,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta strong { color: var(--stone); font-weight: 600; letter-spacing: 0.06em; }
@media (max-width: 760px) {
  .hero-meta { position: static; padding: 0 28px 24px; flex-direction: column; gap: 8px; }
}

/* ------------------------------------------------------------
   Section base
------------------------------------------------------------ */
section { padding: 96px 0; position: relative; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head .eyebrow { margin-bottom: 12px; display: block; }
.section-head h2 { max-width: 22ch; }
.section-head .lede {
  max-width: 38ch;
  color: var(--ink-60);
  font-size: 16px;
}

/* ------------------------------------------------------------
   Projects
------------------------------------------------------------ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .projects-grid { grid-template-columns: 1fr; } }

.project {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.status-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22,26,31,0.78);
  color: var(--stone);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.status-badge.live { background: var(--sage); color: #fff; }
.status-badge.pre { background: var(--brass); color: var(--ink); }
.status-badge.sold { background: rgba(22,26,31,0.78); color: rgba(239,234,225,0.7); }
.project-body { padding: 22px 22px 26px; }
.project-loc {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.project-name { font-family: 'Playfair Display', serif; font-size: 26px; margin-bottom: 18px; }
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.project-meta .price { font-family: 'Playfair Display', serif; font-size: 22px; line-height: 1; }
.project-meta .price small { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-60); display: block; margin-bottom: 4px; }
.project-meta .meta-r { text-align: right; font-size: 12px; color: var(--ink-60); }
.project-meta .meta-r strong { display: block; color: var(--ink); font-size: 13px; font-weight: 600; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------
   Floor plans
------------------------------------------------------------ */
.floorplans {
  background: var(--paper);
}
.fp-tabs {
  display: inline-flex;
  background: var(--stone);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--ink-12);
  margin-bottom: 36px;
}
.fp-tab {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-60);
  border-radius: 999px;
  transition: all .25s var(--ease);
}
.fp-tab.active { background: var(--ink); color: var(--stone); }
.fp-tab:hover:not(.active) { color: var(--ink); }

.fp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .fp-grid { grid-template-columns: 1fr; gap: 32px; } }

.fp-svg-wrap {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}
.fp-svg { width: 100%; height: 100%; }
.fp-pane { display: none; }
.fp-pane.active { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .fp-pane.active { grid-template-columns: 1fr; gap: 32px; } }

.fp-info h3 { font-size: 36px; margin-bottom: 18px; }
.fp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fp-stat .label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 8px; }
.fp-stat .value { font-family: 'Playfair Display', serif; font-size: 28px; line-height: 1; }
.fp-stat .value small { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--ink-60); font-weight: 500; }
.fp-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 32px;
}
.fp-feats li { list-style: none; font-size: 14px; color: var(--ink); padding-left: 22px; position: relative; }
.fp-feats li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: var(--brass);
}

/* ------------------------------------------------------------
   Amenities
------------------------------------------------------------ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 980px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
.amenity {
  background: var(--stone);
  padding: 32px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: background .3s var(--ease);
}
.amenity:hover { background: var(--paper); }
.amenity svg { width: 36px; height: 36px; color: var(--brass); }
.amenity span { font-size: 13px; font-weight: 500; color: var(--ink); }

/* ------------------------------------------------------------
   Walkthrough video
------------------------------------------------------------ */
.walkthrough { background: var(--paper); }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=2000&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,26,31,0.1), rgba(22,26,31,0.5));
}
.play-btn {
  position: relative; z-index: 2;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--brass);
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform .3s var(--ease);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }

/* ------------------------------------------------------------
   Location
------------------------------------------------------------ */
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .location-grid { grid-template-columns: 1fr; gap: 32px; } }

.map-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  aspect-ratio: 5 / 4;
  position: relative;
  overflow: hidden;
}
.map-svg { width: 100%; height: 100%; }
.distance-list { display: flex; flex-direction: column; gap: 4px; }
.distance-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.distance-item:last-child { border-bottom: 0; }
.distance-pin {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--stone-2);
  display: grid; place-items: center;
  color: var(--brass);
  flex: 0 0 auto;
}
.distance-pin svg { width: 20px; height: 20px; }
.distance-name { font-weight: 500; font-size: 15px; }
.distance-sub { font-size: 12px; color: var(--ink-60); letter-spacing: 0.04em; }
.distance-time {
  margin-left: auto;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}
.distance-time small { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--ink-60); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }

/* ------------------------------------------------------------
   Reviews
------------------------------------------------------------ */
.reviews { background: var(--paper); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; } }
.review {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 20px;
}
.review-quote {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}
.review-quote::before {
  content: "\201C";
  position: absolute; left: -4px; top: -14px;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--brass);
}
.review-meta { border-top: 1px solid var(--line); padding-top: 16px; margin-top: auto; }
.review-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.review-prop { font-size: 12px; color: var(--ink-60); letter-spacing: 0.06em; margin-top: 4px; }
.review-stars { color: var(--brass); letter-spacing: 2px; font-size: 13px; margin-bottom: 6px; }

/* ------------------------------------------------------------
   Site visit form
------------------------------------------------------------ */
.sitevisit-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .sitevisit-grid { grid-template-columns: 1fr; gap: 40px; } }

.sv-side h2 { margin-bottom: 18px; }
.sv-side p { color: var(--ink-60); margin-bottom: 28px; max-width: 36ch; }
.sv-points { display: flex; flex-direction: column; gap: 16px; }
.sv-point { display: flex; gap: 14px; align-items: flex-start; }
.sv-point-num {
  width: 32px; height: 32px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
}
.sv-point-text { font-size: 14px; color: var(--ink); }
.sv-point-text strong { display: block; margin-bottom: 2px; }
.sv-point-text span { color: var(--ink-60); font-size: 13px; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 22px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 8px;
}
.form-input, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--stone);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
  appearance: none;
}
.form-input:focus, .form-select:focus { outline: none; border-color: var(--brass); background: var(--paper); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23161A1F' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 560px) { .slot-grid { grid-template-columns: repeat(2, 1fr); } }
.slot {
  padding: 12px 8px;
  background: var(--stone);
  border: 1px solid var(--ink-12);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  transition: all .2s var(--ease);
}
.slot:hover { border-color: var(--ink-40); }
.slot.selected { background: var(--ink); color: var(--brass); border-color: var(--ink); }
.slot .slot-day { display: block; font-size: 11px; color: var(--ink-60); margin-bottom: 4px; letter-spacing: 0.08em; text-transform: uppercase; }
.slot.selected .slot-day { color: rgba(239,234,225,0.6); }

.form-submit {
  width: 100%;
  padding: 16px 22px;
  background: #25D366;
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s var(--ease), transform .2s var(--ease);
  margin-top: 8px;
}
.form-submit:hover { background: #1FB456; transform: translateY(-1px); }
.form-submit svg { width: 20px; height: 20px; }
.form-note { font-size: 12px; color: var(--ink-60); text-align: center; margin-top: 14px; }

/* ------------------------------------------------------------
   Channel partner strip
------------------------------------------------------------ */
.partner-strip {
  background: var(--ink);
  color: var(--stone);
  padding: 64px 0;
}
.partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.partner-inner h2 { color: var(--stone); max-width: 18ch; }
.partner-inner .eyebrow { color: var(--brass); }
.partner-inner p { color: rgba(239,234,225,0.65); margin: 12px 0 0; max-width: 42ch; }
.partner-inner .btn-brass { padding: 16px 26px; font-size: 14px; }

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
footer {
  background: var(--stone-2);
  padding: 56px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 14px; color: var(--ink); margin-bottom: 10px; opacity: 0.75; transition: opacity .2s; }
.footer-col a:hover { opacity: 1; }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-name { font-size: 24px; }
.footer-about { font-size: 14px; color: var(--ink-60); max-width: 32ch; line-height: 1.6; }
.footer-rera {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  color: var(--ink);
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  letter-spacing: 0.04em;
}
.footer-rera strong { color: var(--brass); display: block; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-60);
  flex-wrap: wrap;
  gap: 16px;
}
.socialtrafic-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.socialtrafic-credit strong { color: var(--ink); font-weight: 600; }
.socialtrafic-credit::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 50%;
}

/* ------------------------------------------------------------
   Mobile nav
------------------------------------------------------------ */
.menu-btn { display: none; }
@media (max-width: 880px) {
  .nav { display: none; }
  .rera-pill { display: none; }
  .topbar-right .btn-primary { padding: 12px 18px; font-size: 13px; }
}

/* ------------------------------------------------------------
   Misc
------------------------------------------------------------ */
::selection { background: var(--brass); color: var(--ink); }
