/* ============================================================
   SKYLINE GROUP — Data-Driven City Brokerage
   Sleek, tech-forward, premium. Cobalt accent on ink + white.
   ============================================================ */

:root {
  /* Palette */
  --ink: #0a0e1a;
  --ink-2: #141a2e;
  --ink-3: #1e2742;
  --slate: #5b667f;
  --mist: #8a93a8;
  --line: #e4e8f0;
  --line-2: #d2d8e6;
  --paper: #f6f8fc;
  --paper-2: #eef2f9;
  --white: #ffffff;

  /* Electric cobalt accent system */
  --cobalt: #2b5cff;
  --cobalt-bright: #4d78ff;
  --cobalt-deep: #1838c7;
  --teal: #00d4c8;
  --glow: rgba(43, 92, 255, 0.35);

  /* Gradients */
  --grad-cobalt: linear-gradient(135deg, #2b5cff 0%, #1838c7 100%);
  --grad-sky: linear-gradient(160deg, #1e2742 0%, #0a0e1a 70%);
  --grad-ink: linear-gradient(180deg, #141a2e 0%, #0a0e1a 100%);
  --grad-aurora: linear-gradient(120deg, #2b5cff 0%, #4d78ff 40%, #00d4c8 100%);

  /* Type */
  --sans: "Sora", "Manrope", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing / shape */
  --rad: 18px;
  --rad-sm: 12px;
  --rad-lg: 28px;
  --wrap: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 12px rgba(10, 14, 26, 0.06);
  --shadow: 0 18px 50px -18px rgba(10, 14, 26, 0.22);
  --shadow-lg: 0 40px 90px -30px rgba(10, 14, 26, 0.38);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--cobalt); color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { line-height: 1.05; letter-spacing: -0.025em; font-weight: 700; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cobalt);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--cobalt);
  display: inline-block;
}
.mono { font-family: var(--mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s;
  position: relative;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: var(--grad-cobalt);
  color: #fff;
  box-shadow: 0 12px 30px -10px var(--glow);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px var(--glow); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--cobalt); color: var(--cobalt); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), backdrop-filter 0.45s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(10, 14, 26, 0.3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  transition: height 0.45s var(--ease);
}
.site-header.scrolled .nav { height: 68px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-cobalt);
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -8px var(--glow);
  flex-shrink: 0;
}
.brand-logo svg { width: 22px; height: 22px; }
.brand-name {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name .b1 { font-weight: 800; font-size: 1.18rem; letter-spacing: -0.04em; }
.brand-name .b2 {
  font-family: var(--mono);
  font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--mist); text-transform: uppercase; margin-top: 3px;
}

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500;
  padding: 9px 16px; border-radius: 100px;
  color: var(--slate);
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cobalt);
}

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  font-family: var(--mono);
  font-size: 0.82rem; font-weight: 500;
  color: var(--ink);
  display: flex; align-items: center; gap: 7px;
}
.nav-phone svg { width: 14px; height: 14px; color: var(--cobalt); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 168px 0 90px;
  background: var(--grad-sky);
  color: #fff;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: -250px; right: -150px;
  background: radial-gradient(circle, rgba(43,92,255,0.4) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  animation: floatGlow 14s ease-in-out infinite;
}
@keyframes floatGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-40px, 40px); }
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--cobalt-bright); }
.hero-copy .eyebrow::before { background: var(--cobalt-bright); }
.hero h1 { margin: 22px 0 24px; }
.hero h1 .grad {
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tag {
  font-size: 1.12rem; color: #b9c2d9; max-width: 480px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* trust row */
.hero-trust {
  display: flex; gap: 30px; margin-top: 44px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust .t-n {
  font-size: 1.7rem; font-weight: 800; letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.hero-trust .t-l { font-size: 0.76rem; color: var(--mist); font-family: var(--mono); letter-spacing: 0.04em; }

/* hero media */
.hero-media { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 4 / 4.6;
}
.hero-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 50%, rgba(10,14,26,0.5));
}
/* floating data card */
.data-card {
  position: absolute;
  left: -28px; bottom: 40px;
  background: rgba(20, 26, 46, 0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--rad);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  z-index: 3;
  min-width: 220px;
}
.data-card .dc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.data-card .dc-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; color: var(--mist); text-transform: uppercase; }
.data-card .dc-pill { font-family: var(--mono); font-size: 0.7rem; color: var(--teal); display: flex; align-items: center; gap: 5px; }
.data-card .dc-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.data-card .dc-val { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.04em; }
.data-card .dc-spark { display: flex; align-items: flex-end; gap: 4px; height: 30px; margin-top: 12px; }
.data-card .dc-spark span {
  flex: 1; background: var(--grad-cobalt); border-radius: 3px 3px 0 0; opacity: 0.85;
  animation: barGrow 0.9s var(--ease) backwards;
}

.float-chip {
  position: absolute;
  top: 28px; right: -22px;
  background: rgba(255,255,255,0.95);
  border-radius: 100px;
  padding: 9px 18px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: var(--shadow);
  z-index: 3;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
}
.float-chip svg { width: 16px; height: 16px; color: var(--cobalt); }

/* ============================================================
   MARQUEE / LOGO STRIP
   ============================================================ */
.marquee {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: scroll 28s linear infinite;
  font-family: var(--mono); font-size: 0.84rem; letter-spacing: 0.08em;
}
.marquee-track span { display: flex; align-items: center; gap: 56px; }
.marquee-track b { color: var(--cobalt-bright); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; }
.section.tight { padding: 80px 0; }
.section.paper { background: var(--paper); }
.section.ink { background: var(--grad-ink); color: #fff; }

.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { margin: 18px 0 16px; }
.sec-head p { color: var(--slate); font-size: 1.08rem; }
.section.ink .sec-head p { color: #aab4cc; }

.sec-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; margin-bottom: 50px; flex-wrap: wrap;
}
.sec-head-row .sec-head { margin-bottom: 0; }

/* ============================================================
   FEATURED LISTINGS
   ============================================================ */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prop-card {
  background: #fff;
  border-radius: var(--rad);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
  display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-2); }
.prop-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.prop-card:hover .prop-media img { transform: scale(1.07); }
.prop-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(10,14,26,0.78);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.prop-tag.live { color: var(--teal); }
.prop-tag.live::before { content: "● "; }
.prop-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: grid; place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.prop-fav svg { width: 17px; height: 17px; color: var(--slate); transition: color 0.3s; }
.prop-fav:hover { background: #fff; transform: scale(1.1); }
.prop-fav:hover svg { color: var(--cobalt); }
.prop-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prop-price { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.prop-price small { font-size: 0.78rem; color: var(--mist); font-weight: 500; font-family: var(--mono); }
.prop-name { font-size: 1.05rem; font-weight: 600; margin: 6px 0 4px; }
.prop-loc { color: var(--slate); font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.prop-loc svg { width: 14px; height: 14px; color: var(--cobalt); }
.prop-specs {
  display: flex; gap: 18px; margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--slate);
}
.prop-specs .spec { display: flex; align-items: center; gap: 7px; }
.prop-specs svg { width: 16px; height: 16px; color: var(--mist); }

/* ============================================================
   FEATURE / WHY GRID
   ============================================================ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 34px 30px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--grad-aurora); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--paper-2);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background 0.4s;
}
.feature-card:hover .feature-ico { background: rgba(43,92,255,0.1); }
.feature-ico svg { width: 26px; height: 26px; color: var(--cobalt); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--slate); font-size: 0.96rem; }

/* ============================================================
   SPLIT / AGENT SECTION
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.split-media { position: relative; }
.split-frame {
  border-radius: var(--rad-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  border: 1px solid var(--line);
}
.split-frame img { width: 100%; height: 100%; object-fit: cover; }
.split .list { margin-top: 30px; display: grid; gap: 16px; }
.split .list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; color: var(--slate); }
.split .list .chk {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  background: rgba(43,92,255,0.1); display: grid; place-items: center;
}
.split .list .chk svg { width: 15px; height: 15px; color: var(--cobalt); }
.split .list b { color: var(--ink); font-weight: 600; }

.quote-badge {
  position: absolute; bottom: -26px; right: -20px;
  background: #fff; border-radius: var(--rad);
  padding: 22px 26px; box-shadow: var(--shadow); max-width: 280px;
  border: 1px solid var(--line);
}
.quote-badge .qm { font-size: 2.4rem; color: var(--cobalt); line-height: 0.6; font-weight: 800; }
.quote-badge p { font-size: 0.92rem; color: var(--ink); margin: 8px 0 12px; font-weight: 500; }
.quote-badge .qa { font-family: var(--mono); font-size: 0.72rem; color: var(--mist); }

/* ============================================================
   STATS BAND (count-up + map motif)
   ============================================================ */
.stats-band { position: relative; overflow: hidden; }
.stats-band .wrap { position: relative; z-index: 2; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.stat .s-n {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.04em;
  background: var(--grad-aurora); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "tnum"; line-height: 1;
}
.stat .s-l { font-family: var(--mono); font-size: 0.78rem; color: #aab4cc; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 12px; }

/* map motif backdrop */
.map-motif { position: absolute; inset: 0; opacity: 0.35; pointer-events: none; }
.map-motif svg { width: 100%; height: 100%; }

/* ============================================================
   NEIGHBOURHOODS
   ============================================================ */
.hood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hood {
  position: relative; border-radius: var(--rad); overflow: hidden;
  border: 1px solid var(--line); min-height: 220px;
  display: flex; align-items: flex-end; padding: 24px;
  background: var(--grad-sky); color: #fff;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.hood:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.hood img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: transform 0.9s var(--ease), opacity 0.5s; }
.hood:hover img { transform: scale(1.07); opacity: 0.7; }
.hood::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,14,26,0.85) 0%, transparent 70%); }
.hood-inner { position: relative; z-index: 2; }
.hood-inner .h-n { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
.hood-inner .h-c { font-family: var(--mono); font-size: 0.74rem; color: var(--cobalt-bright); letter-spacing: 0.08em; margin-top: 4px; }
.hood.wide { grid-column: span 2; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  border-radius: var(--rad-lg);
  background: var(--grad-cobalt);
  padding: 70px 60px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 75%);
}
.cta-banner .wrap-narrow { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 16px 0 30px; font-size: 1.1rem; }
.cta-banner .hero-actions { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #aab4cc; padding: 80px 0 36px; }
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand .brand-name .b1 { color: #fff; }
.foot-brand p { margin: 20px 0; font-size: 0.94rem; max-width: 280px; }
.foot-social { display: flex; gap: 12px; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.05); display: grid; place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.foot-social a:hover { background: var(--cobalt); transform: translateY(-3px); }
.foot-social svg { width: 17px; height: 17px; color: #fff; }
.foot-col h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--mono); font-weight: 600; margin-bottom: 18px; }
.foot-col ul { display: grid; gap: 11px; }
.foot-col a { font-size: 0.92rem; transition: color 0.25s; }
.foot-col a:hover { color: #fff; }
.foot-nap { font-style: normal; font-size: 0.92rem; line-height: 1.9; }
.foot-nap a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; flex-wrap: wrap; gap: 14px;
  font-size: 0.82rem; color: var(--mist);
}
.foot-disclaimer {
  margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.76rem; color: var(--mist); line-height: 1.7; max-width: 900px;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-head {
  padding: 150px 0 70px;
  background: var(--grad-sky);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-head .hero-bg-grid { mask-image: radial-gradient(ellipse 70% 80% at 30% 40%, #000, transparent 70%); }
.page-head .wrap { position: relative; z-index: 2; }
.page-head .eyebrow { color: var(--cobalt-bright); }
.page-head .eyebrow::before { background: var(--cobalt-bright); }
.page-head h1 { margin: 18px 0 16px; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-head p { color: #b9c2d9; font-size: 1.1rem; max-width: 560px; }
.breadcrumb { font-family: var(--mono); font-size: 0.74rem; color: var(--mist); margin-bottom: 8px; letter-spacing: 0.06em; }
.breadcrumb a:hover { color: var(--cobalt-bright); }

/* ============================================================
   LISTINGS PAGE — filter bar
   ============================================================ */
.filter-bar {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--rad);
  padding: 16px; box-shadow: var(--shadow-sm);
  margin-bottom: 44px;
}
.filter-chip {
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.04em;
  padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line-2);
  color: var(--slate); transition: all 0.3s;
}
.filter-chip:hover { border-color: var(--cobalt); color: var(--cobalt); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-bar .search {
  margin-left: auto; display: flex; align-items: center; gap: 9px;
  background: var(--paper); border-radius: 100px; padding: 9px 18px; min-width: 200px;
}
.filter-bar .search svg { width: 16px; height: 16px; color: var(--mist); }
.filter-bar .search input { border: none; background: none; outline: none; font-family: var(--sans); font-size: 0.88rem; width: 100%; color: var(--ink); }

.listings-grid.four { grid-template-columns: repeat(4, 1fr); }

.result-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 12px; }
.result-meta .count { font-family: var(--mono); font-size: 0.86rem; color: var(--slate); }
.result-meta .count b { color: var(--ink); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--rad-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); letter-spacing: 0.01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line-2); border-radius: var(--rad-sm);
  font-family: var(--sans); font-size: 0.94rem; color: var(--ink);
  background: var(--paper); transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cobalt); background: #fff;
  box-shadow: 0 0 0 4px rgba(43,92,255,0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
[data-form-note] {
  margin-top: 18px; font-size: 0.92rem; font-weight: 500;
  padding: 0; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s, padding 0.4s;
  border-radius: var(--rad-sm);
}
[data-form-note].show {
  max-height: 120px; opacity: 1; padding: 14px 16px;
  background: rgba(0,212,200,0.1); color: #047a72; border: 1px solid rgba(0,212,200,0.3);
}

.contact-side { display: grid; gap: 18px; }
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--rad);
  padding: 26px; display: flex; gap: 16px; align-items: flex-start;
  transition: border-color 0.3s, transform 0.4s;
}
.info-card:hover { border-color: var(--line-2); transform: translateX(4px); }
.info-ico {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(43,92,255,0.08); display: grid; place-items: center;
}
.info-ico svg { width: 22px; height: 22px; color: var(--cobalt); }
.info-card h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--mono); color: var(--mist); margin-bottom: 6px; }
.info-card p { font-size: 0.98rem; color: var(--ink); font-weight: 500; line-height: 1.5; }
.info-card a:hover { color: var(--cobalt); }

.hours-card { background: var(--grad-ink); color: #fff; border-radius: var(--rad); padding: 28px; }
.hours-card h4 { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cobalt-bright); margin-bottom: 18px; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.92rem; }
.hours-row:last-child { border: none; }
.hours-row span:first-child { color: #aab4cc; }
.hours-row.closed span:last-child { color: var(--mist); }

.map-card {
  border-radius: var(--rad-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); margin-top: 44px; position: relative;
  background: var(--ink);
}
.map-card svg { width: 100%; height: 100%; display: block; }
.map-pin-label {
  position: absolute; top: 22px; left: 22px;
  background: #fff; border-radius: 100px; padding: 10px 18px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow);
  font-size: 0.86rem; font-weight: 600;
}
.map-pin-label svg { width: 16px; height: 16px; color: var(--cobalt); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.featured-post {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--rad-lg);
  overflow: hidden; box-shadow: var(--shadow); margin-bottom: 60px;
}
.featured-post .fp-media { position: relative; overflow: hidden; min-height: 360px; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.fp-meta { display: flex; gap: 14px; align-items: center; font-family: var(--mono); font-size: 0.74rem; color: var(--mist); letter-spacing: 0.06em; margin-bottom: 18px; }
.fp-cat { background: rgba(43,92,255,0.1); color: var(--cobalt); padding: 5px 12px; border-radius: 100px; }
.featured-post h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); margin-bottom: 16px; }
.featured-post p { color: var(--slate); margin-bottom: 24px; }
.read-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--cobalt); font-size: 0.95rem; }
.read-link .arr { transition: transform 0.4s var(--ease); }
.read-link:hover .arr { transform: translateX(5px); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--rad);
  overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.post-media { aspect-ratio: 16/10; overflow: hidden; background: var(--grad-sky); position: relative; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.06); }
.post-media .grad-cover { position: absolute; inset: 0; background: var(--grad-sky); display: grid; place-items: center; }
.post-media .grad-cover svg { width: 64px; height: 64px; opacity: 0.4; }
.post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-body .fp-meta { margin-bottom: 14px; }
.post-body h3 { margin-bottom: 10px; line-height: 1.25; }
.post-body p { color: var(--slate); font-size: 0.92rem; flex: 1; }
.post-body .read-link { margin-top: 18px; font-size: 0.88rem; }

/* newsletter inset */
.news-inset {
  background: var(--grad-ink); border-radius: var(--rad-lg);
  padding: 50px; display: grid; grid-template-columns: 1fr auto; gap: 30px;
  align-items: center; color: #fff; margin-top: 60px;
}
.news-inset h3 { font-size: 1.6rem; margin-bottom: 8px; }
.news-inset p { color: #aab4cc; }
.news-form { display: flex; gap: 10px; }
.news-form input {
  padding: 14px 18px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05); color: #fff; font-family: var(--sans); min-width: 240px;
}
.news-form input::placeholder { color: var(--mist); }
.news-form input:focus { outline: none; border-color: var(--cobalt-bright); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .listings-grid, .feature-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid.four { grid-template-columns: repeat(2, 1fr); }
  .hood-grid { grid-template-columns: repeat(2, 1fr); }
  .hood.wide { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-media { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .quote-badge { right: 20px; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .fp-media { min-height: 280px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; position: fixed; inset: 86px 0 auto 0;
    flex-direction: column; gap: 0; padding: 20px 28px 30px;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    box-shadow: var(--shadow); animation: dropIn 0.4s var(--ease);
  }
  .nav.open .nav-links a { padding: 15px 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav.open .nav-cta { display: flex; position: fixed; inset: auto 0 0 0; flex-direction: column; padding: 24px 28px; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); gap: 14px; box-shadow: 0 -10px 30px -20px rgba(0,0,0,0.3); }
  .nav.open .nav-cta .btn { width: 100%; justify-content: center; }
  @keyframes dropIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; } }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .news-inset { grid-template-columns: 1fr; }
  .news-form input { min-width: 0; flex: 1; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .section { padding: 72px 0; }
  .hero { padding: 130px 0 70px; }
  .listings-grid, .feature-grid, .blog-grid, .listings-grid.four, .hood-grid { grid-template-columns: 1fr; }
  .hood.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .cta-banner { padding: 48px 26px; }
  .hero-trust { flex-wrap: wrap; gap: 22px; }
  .data-card { left: 0; min-width: 0; }
  .float-chip { right: 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .quote-badge { position: static; max-width: none; margin-top: 18px; }
  .featured-post .fp-body { padding: 30px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track, .hero-glow { animation: none; }
}
