/* =========================================================
   נדל"ן עפולה — Design Tokens
   Palette:  navy-950 #10202E · navy-800 #1B3448 · gold-500 #C9A24C
             gold-300 #E4CE93 · cream-50 #F7F3E9 · stone-200 #E9E1CE
             ink-800 #26241C
   Type:     Display  — "Frank Ruhl Libre" (עברית, סריף עיתונאי)
             Body     — "Assistant"
             Utility  — "Heebo" (מספרים, תוויות, נתונים)
   Signature: "קו רקיע" — מוטיב בנייני מדרגות זהב, נגזר מהלוגו,
              משמש כמפריד סקשנים ובאפקט hover על כרטיסי נכס.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@500;700;900&family=Assistant:wght@400;500;600;700&family=Heebo:wght@400;500;700&display=swap');

:root{
  --navy-950:#10202E;
  --navy-900:#152838;
  --navy-800:#1B3448;
  --gold-500:#C9A24C;
  --gold-400:#D8B667;
  --gold-300:#E4CE93;
  --cream-50:#F7F3E9;
  --cream-100:#F1EBDB;
  --stone-200:#E9E1CE;
  --stone-300:#DCD1B4;
  --ink-800:#26241C;
  --ink-600:#4A4636;
  --white:#FFFFFF;

  --display: 'Frank Ruhl Libre', serif;
  --body: 'Assistant', sans-serif;
  --utility: 'Heebo', sans-serif;

  --radius-s: 4px;
  --radius-m: 10px;
  --shadow-card: 0 14px 34px -18px rgba(16,32,46,.35);
  --shadow-pop: 0 24px 60px -20px rgba(16,32,46,.45);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--body);
  background:var(--cream-50);
  color:var(--ink-800);
  direction:rtl;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
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;}
.container{max-width:1180px; margin:0 auto; padding:0 28px;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; transition-duration:.001ms !important;}
  html{scroll-behavior:auto;}
}

/* ---------- skyline signature (SVG data as CSS mask/shape) ---------- */
.skyline-divider{
  width:100%;
  height:34px;
  background-repeat:repeat-x;
  background-size:220px 34px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='34' viewBox='0 0 220 34'%3E%3Cg fill='%23C9A24C'%3E%3Crect x='4' y='10' width='16' height='24'/%3E%3Crect x='24' y='2' width='14' height='32'/%3E%3Crect x='42' y='16' width='18' height='18'/%3E%3Crect x='66' y='8' width='12' height='26'/%3E%3Crect x='84' y='0' width='16' height='34'/%3E%3Crect x='106' y='14' width='14' height='20'/%3E%3Crect x='128' y='6' width='18' height='28'/%3E%3Crect x='152' y='18' width='12' height='16'/%3E%3Crect x='170' y='4' width='16' height='30'/%3E%3Crect x='192' y='12' width='20' height='22'/%3E%3C/g%3E%3C/svg%3E");
}
.skyline-divider.dark{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='34' viewBox='0 0 220 34'%3E%3Cg fill='%2310202E'%3E%3Crect x='4' y='10' width='16' height='24'/%3E%3Crect x='24' y='2' width='14' height='32'/%3E%3Crect x='42' y='16' width='18' height='18'/%3E%3Crect x='66' y='8' width='12' height='26'/%3E%3Crect x='84' y='0' width='16' height='34'/%3E%3Crect x='106' y='14' width='14' height='20'/%3E%3Crect x='128' y='6' width='18' height='28'/%3E%3Crect x='152' y='18' width='12' height='16'/%3E%3Crect x='170' y='4' width='16' height='30'/%3E%3Crect x='192' y='12' width='20' height='22'/%3E%3C/g%3E%3C/svg%3E");
}

.eyebrow{
  display:flex; align-items:center; gap:10px;
  font-family:var(--utility);
  font-size:13px;
  letter-spacing:.04em;
  color:var(--gold-500);
  font-weight:700;
  margin-bottom:14px;
}
.eyebrow .glyph{
  width:22px; height:16px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16'%3E%3Cg fill='%23C9A24C'%3E%3Crect x='0' y='5' width='4' height='11'/%3E%3Crect x='6' y='0' width='4' height='16'/%3E%3Crect x='12' y='7' width='4' height='9'/%3E%3Crect x='18' y='3' width='4' height='13'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat;
}

section{padding:88px 0;}
.section-head{max-width:640px; margin-bottom:48px;}
.section-head h2{
  font-family:var(--display);
  font-size:clamp(28px,3.4vw,40px);
  font-weight:700;
  color:var(--navy-950);
  margin-bottom:12px;
}
.section-head p{color:var(--ink-600); font-size:16.5px;}

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(247,243,233,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--stone-300);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
.brand{display:flex; align-items:center; gap:12px;}
.brand-mark{
  width:44px; height:44px; border-radius:8px; overflow:hidden;
  border:1px solid var(--stone-300);
}
.brand-mark img{width:100%; height:100%; object-fit:cover;}
.brand-text{font-family:var(--display); font-weight:700; font-size:19px; color:var(--navy-950); line-height:1.1;}
.brand-text span{display:block; font-family:var(--utility); font-size:11px; font-weight:400; color:var(--ink-600); letter-spacing:.03em; margin-top:3px;}

.main-nav{display:flex; align-items:center; gap:34px;}
.main-nav a{
  font-family:var(--utility); font-size:14.5px; font-weight:500; color:var(--ink-800);
  position:relative; padding:6px 0;
}
.main-nav a::after{
  content:''; position:absolute; right:0; bottom:0; width:0; height:2px; background:var(--gold-500);
  transition:width .25s ease;
}
.main-nav a:hover::after{width:100%;}
.nav-cta{
  background:var(--navy-950); color:var(--cream-50) !important;
  padding:11px 22px; border-radius:6px; font-weight:600 !important;
}
.nav-cta::after{display:none;}
.nav-cta:hover{background:var(--navy-800);}

.nav-toggle{display:none; flex-direction:column; gap:5px; width:26px;}
.nav-toggle span{height:2px; background:var(--navy-950); display:block;}

/* ---------- hero ---------- */
.hero{
  position:relative;
  background:linear-gradient(180deg,var(--navy-950) 0%, var(--navy-900) 62%, var(--navy-800) 100%);
  color:var(--cream-50);
  padding:100px 0 0;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(circle at 82% 15%, rgba(201,162,76,.16), transparent 45%);
  pointer-events:none;
}
.hero-inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:center;
  padding-bottom:70px;
}
.hero-eyebrow{
  font-family:var(--utility); font-size:13px; letter-spacing:.08em; color:var(--gold-400);
  font-weight:700; margin-bottom:20px; display:flex; align-items:center; gap:10px;
}
.hero-eyebrow::before{content:''; width:30px; height:1px; background:var(--gold-400);}
.hero h1{
  font-family:var(--display); font-weight:900; font-size:clamp(38px,5vw,58px);
  line-height:1.12; margin-bottom:22px;
}
.hero h1 em{font-style:normal; color:var(--gold-400);}
.hero p.lead{font-size:18px; color:#CBD5DE; max-width:480px; margin-bottom:34px;}
.hero-stats{display:flex; gap:34px;}
.hero-stats div{font-family:var(--utility);}
.hero-stats strong{display:block; font-size:26px; font-weight:700; color:var(--gold-300);}
.hero-stats span{font-size:13px; color:#9FB0BC;}

.hero-visual{
  position:relative; border-radius:14px; overflow:hidden;
  aspect-ratio:4/5; box-shadow:var(--shadow-pop);
  background:linear-gradient(160deg,#2A3F52,#152534);
}
.hero-visual .skyline-art{
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23E4CE93'/%3E%3Cstop offset='1' stop-color='%23C9A24C'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='url(%23g)' opacity='0.92'%3E%3Crect x='30' y='260' width='46' height='190'/%3E%3Crect x='84' y='170' width='40' height='280'/%3E%3Crect x='132' y='300' width='52' height='150'/%3E%3Crect x='192' y='120' width='34' height='330'/%3E%3Crect x='234' y='230' width='46' height='220'/%3E%3Crect x='288' y='60' width='40' height='390'/%3E%3Crect x='336' y='200' width='50' height='250'/%3E%3C/g%3E%3Cg fill='%23F7F3E9' opacity='.5'%3E%3Crect x='40' y='280' width='8' height='10'/%3E%3Crect x='58' y='280' width='8' height='10'/%3E%3Crect x='40' y='310' width='8' height='10'/%3E%3Crect x='58' y='310' width='8' height='10'/%3E%3Crect x='94' y='200' width='8' height='10'/%3E%3Crect x='110' y='200' width='8' height='10'/%3E%3Crect x='94' y='230' width='8' height='10'/%3E%3Crect x='110' y='230' width='8' height='10'/%3E%3Crect x='200' y='150' width='8' height='10'/%3E%3Crect x='210' y='150' width='8' height='10'/%3E%3Crect x='200' y='180' width='8' height='10'/%3E%3Crect x='210' y='180' width='8' height='10'/%3E%3Crect x='298' y='90' width='8' height='10'/%3E%3Crect x='312' y='90' width='8' height='10'/%3E%3Crect x='298' y='120' width='8' height='10'/%3E%3Crect x='312' y='120' width='8' height='10'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:bottom; background-size:cover;
}
.hero-visual .moon{
  position:absolute; top:34px; left:34px; width:70px; height:70px; border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #FCF3D8, var(--gold-300));
  box-shadow:0 0 60px 10px rgba(228,206,147,.35);
}

/* ---------- search card ---------- */
.search-card{
  position:relative; z-index:3;
  background:var(--white);
  border-radius:14px;
  box-shadow:var(--shadow-pop);
  padding:26px 28px;
  margin-top:-46px;
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr auto; gap:16px; align-items:end;
}
.field{display:flex; flex-direction:column; gap:8px;}
.field label{font-family:var(--utility); font-size:12px; font-weight:700; color:var(--ink-600); letter-spacing:.02em;}
.field select, .field input{
  font-family:var(--body); font-size:15px; color:var(--ink-800);
  border:1px solid var(--stone-300); border-radius:7px; padding:12px 12px;
  background:var(--cream-50);
}
.field select:focus, .field input:focus{outline:2px solid var(--gold-500); outline-offset:1px;}
.search-btn{
  background:var(--navy-950); color:var(--cream-50);
  border-radius:7px; padding:13px 30px; font-weight:700; font-family:var(--utility);
  white-space:nowrap;
  transition:background .2s;
}
.search-btn:hover{background:var(--gold-500); color:var(--navy-950);}

@media (max-width:900px){
  .hero-inner{grid-template-columns:1fr;}
  .search-card{grid-template-columns:1fr 1fr; margin-top:24px;}
  .search-btn{grid-column:1/-1;}
}

/* ---------- news strip ---------- */
.news-strip{background:var(--navy-950); color:var(--cream-50); padding:0;}
.news-strip .container{
  display:flex; align-items:center; gap:26px; padding:16px 28px; overflow-x:auto;
}
.news-tag{
  flex:0 0 auto; font-family:var(--utility); font-size:12px; font-weight:700;
  color:var(--navy-950); background:var(--gold-400); padding:5px 12px; border-radius:20px;
}
.news-strip a{font-size:14.5px; white-space:nowrap; color:#D9E1E7; border-left:1px solid #2A3F52; padding-left:26px;}
.news-strip a:last-child{border-left:none;}
.news-strip a:hover{color:var(--gold-300);}

/* ---------- property cards ---------- */
.property-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.card{
  background:var(--white); border-radius:12px; overflow:hidden;
  box-shadow:var(--shadow-card); border:1px solid var(--stone-200);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{transform:translateY(-6px); box-shadow:var(--shadow-pop);}
.card-media{position:relative; aspect-ratio:4/3; overflow:hidden;}
.card-media .skyline-fill{
  position:absolute; inset:0; background:linear-gradient(155deg,var(--stone-300),var(--stone-200));
}
.card-media .skyline-fill svg{width:100%; height:100%;}
.card-badge{
  position:absolute; top:12px; right:12px; z-index:2;
  background:var(--navy-950); color:var(--gold-300);
  font-family:var(--utility); font-size:11.5px; font-weight:700;
  padding:5px 11px; border-radius:20px;
}
.card-price{
  position:absolute; bottom:12px; left:12px; z-index:2;
  background:var(--white); color:var(--navy-950);
  font-family:var(--utility); font-weight:700; font-size:15px;
  padding:6px 13px; border-radius:8px;
}
.card-body{padding:18px 18px 20px;}
.card-body h3{font-family:var(--display); font-size:18.5px; font-weight:700; color:var(--navy-950); margin-bottom:6px;}
.card-meta{display:flex; gap:14px; font-family:var(--utility); font-size:13px; color:var(--ink-600); margin-top:12px; padding-top:12px; border-top:1px dashed var(--stone-300);}
.card-meta span{display:flex; align-items:center; gap:5px;}

.section-cream{background:var(--cream-100);}

/* ---------- valuation cta ---------- */
.valuation{
  background:var(--navy-950); color:var(--cream-50);
  border-radius:18px; padding:56px 50px;
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
  position:relative; overflow:hidden;
}
.valuation::after{
  content:''; position:absolute; left:-40px; bottom:-40px; width:220px; height:220px;
  background:radial-gradient(circle, rgba(201,162,76,.22), transparent 70%);
}
.valuation h2{font-family:var(--display); font-size:clamp(26px,3vw,34px); margin-bottom:14px;}
.valuation p{color:#CBD5DE; margin-bottom:0; max-width:420px;}
.valuation-form{background:var(--white); border-radius:12px; padding:26px; color:var(--ink-800); position:relative; z-index:2;}
.valuation-form .field{margin-bottom:14px;}
.valuation-form .submit{
  width:100%; background:var(--gold-500); color:var(--navy-950); font-weight:700;
  padding:13px; border-radius:7px; font-family:var(--utility); margin-top:4px;
  transition:background .2s;
}
.valuation-form .submit:hover{background:var(--gold-400);}
.valuation-form .note{font-size:11.5px; color:var(--ink-600); margin-top:10px;}

@media (max-width:860px){.valuation{grid-template-columns:1fr; padding:36px 24px;}}

/* ---------- testimonials ---------- */
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.testi{
  background:var(--white); border:1px solid var(--stone-200); border-radius:12px;
  padding:26px; position:relative;
}
.testi .quote-mark{
  font-family:var(--display); font-size:52px; color:var(--gold-300); line-height:0; display:block; margin-bottom:10px;
}
.testi p.body-text{color:var(--ink-800); font-size:15px; margin-bottom:18px;}
.testi-person{display:flex; align-items:center; gap:12px;}
.testi-avatar{width:38px; height:38px; border-radius:50%; background:var(--navy-950); display:flex; align-items:center; justify-content:center; color:var(--gold-300); font-family:var(--display); font-weight:700;}
.testi-person strong{display:block; font-size:14px;}
.testi-person span{font-size:12.5px; color:var(--ink-600);}

/* ---------- footer / lead form ---------- */
.footer-cta{background:var(--navy-950); color:var(--cream-50); padding:70px 0 0;}
.footer-cta .grid{display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; padding-bottom:60px;}
.footer-cta h2{font-family:var(--display); font-size:30px; margin-bottom:14px;}
.footer-cta p{color:#B9C4CC; max-width:420px;}
.footer-form{display:flex; gap:10px; margin-top:22px;}
.footer-form input{
  flex:1; padding:13px 14px; border-radius:7px; border:1px solid #2A3F52; background:#182B3B; color:var(--cream-50);
  font-family:var(--body);
}
.footer-form input::placeholder{color:#7E93A1;}
.footer-form button{background:var(--gold-500); color:var(--navy-950); padding:13px 22px; border-radius:7px; font-weight:700; font-family:var(--utility); white-space:nowrap;}
.footer-form button:hover{background:var(--gold-400);}

.quick-form{background:#152838; border-radius:12px; padding:24px;}
.quick-form .field{margin-bottom:12px;}
.quick-form input, .quick-form select, .quick-form textarea{
  width:100%; padding:11px 12px; border-radius:7px; border:1px solid #2A3F52; background:#0F1E2B; color:var(--cream-50); font-family:var(--body);
}
.quick-form label{color:#9FB0BC; font-size:12px; font-family:var(--utility); margin-bottom:6px; display:block;}
.quick-form .submit{background:var(--gold-500); color:var(--navy-950); width:100%; padding:12px; border-radius:7px; font-weight:700; font-family:var(--utility); margin-top:4px;}
.quick-form .submit:hover{background:var(--gold-400);}

.footer-bottom{border-top:1px solid #223648; padding:26px 0;}
.footer-bottom .container{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;}
.footer-bottom .flogo{display:flex; align-items:center; gap:10px; font-family:var(--display); font-weight:700;}
.footer-links{display:flex; gap:22px; font-family:var(--utility); font-size:13px; color:#9FB0BC;}
.footer-links a:hover{color:var(--gold-300);}
.copyright{font-family:var(--utility); font-size:12px; color:#6E828F;}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold-500); outline-offset:2px;
}

@media (max-width:900px){
  .main-nav{position:fixed; inset:78px 0 0 0; background:var(--cream-50); flex-direction:column; padding:30px 28px; gap:22px; transform:translateY(-110%); transition:transform .3s ease; height:calc(100vh - 78px); align-items:flex-start;}
  .main-nav.open{transform:translateY(0);}
  .nav-toggle{display:flex;}
  .property-grid{grid-template-columns:1fr 1fr;}
  .testi-grid{grid-template-columns:1fr;}
  .footer-cta .grid{grid-template-columns:1fr;}
}
@media (max-width:600px){
  section{padding:60px 0;}
  .property-grid{grid-template-columns:1fr;}
  .hero-stats{flex-wrap:wrap; gap:22px;}
}

/* ---------- מבזק חדשות בסגנון טלוויזיוני ---------- */
.news-ticker{
  background:linear-gradient(90deg, var(--navy-950), var(--navy-800));
  cursor:pointer; user-select:none;
  border-bottom:1px solid rgba(228,206,147,.25);
}
.news-ticker .container{
  display:flex; align-items:center; gap:18px; padding:13px 28px; min-height:52px;
}
.ticker-badge{
  flex:0 0 auto; display:flex; align-items:center; gap:7px;
  background:var(--gold-500); color:var(--navy-950);
  font-family:var(--utility); font-weight:800; font-size:12px; letter-spacing:.03em;
  padding:6px 14px; border-radius:20px;
}
.ticker-badge .pulse-dot{
  width:7px; height:7px; border-radius:50%; background:#D0392B;
  animation:tickerPulse 1.4s infinite;
}
@keyframes tickerPulse{
  0%{box-shadow:0 0 0 0 rgba(208,57,43,.65);}
  70%{box-shadow:0 0 0 7px rgba(208,57,43,0);}
  100%{box-shadow:0 0 0 0 rgba(208,57,43,0);}
}
.ticker-viewport{flex:1 1 auto; overflow:hidden; position:relative; height:22px;}
.ticker-headline{
  position:absolute; inset:0;
  display:flex; align-items:center;
  color:var(--cream-50); font-family:var(--body); font-size:14.5px;
  opacity:0; transform:translateY(8px);
  transition:opacity .5s ease, transform .5s ease;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.ticker-headline.show{opacity:1; transform:translateY(0);}
.ticker-hint{
  flex:0 0 auto; font-family:var(--utility); font-size:12px; font-weight:600; color:var(--gold-300);
  display:flex; align-items:center; gap:4px; white-space:nowrap;
}
.news-ticker:hover .ticker-hint{color:var(--gold-400);}
@media (max-width:640px){ .ticker-hint{display:none;} }

/* פופ-אפ כל החדשות */
.news-modal-overlay{
  position:fixed; inset:0; z-index:200; display:none;
  align-items:center; justify-content:center; padding:20px;
  background:rgba(16,32,46,.6); backdrop-filter:blur(2px);
}
.news-modal-overlay.open{display:flex;}
.news-modal{
  background:var(--white); border-radius:16px; width:100%; max-width:480px; max-height:80vh;
  display:flex; flex-direction:column; box-shadow:var(--shadow-pop); overflow:hidden;
}
.news-modal-head{
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 24px; border-bottom:1px solid var(--stone-200); background:var(--navy-950);
}
.news-modal-head h3{font-family:var(--display); color:var(--cream-50); font-size:18px;}
.news-modal-close{width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,.12); color:var(--cream-50); font-size:15px;}
.news-modal-close:hover{background:rgba(255,255,255,.22);}
.news-modal-list{list-style:none; overflow-y:auto; padding:8px 0;}
.news-modal-list li{padding:14px 24px; border-bottom:1px dashed var(--stone-200); font-family:var(--body); font-size:14.5px; color:var(--ink-800);}
.news-modal-list li time{display:block; font-family:var(--utility); font-size:11.5px; color:var(--gold-500); font-weight:700; margin-bottom:4px;}
.news-modal-list li:last-child{border-bottom:none;}

/* =========================================================
   שכבת שדרוג — יוקרתי / מכירתי / חדשני
   ========================================================= */

.gold-text{
  background:linear-gradient(100deg, var(--gold-300), var(--gold-500) 45%, var(--gold-300));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* header gets a shadow once page scrolls */
.site-header.scrolled{box-shadow:0 10px 30px -18px rgba(16,32,46,.25);}

/* scroll-reveal utility */
.reveal{opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1; transform:translateY(0);}
.reveal-stagger.in > *{transition-delay:calc(var(--i,0) * 90ms);}

/* ---------- hero v2 — mesh glow + trust chips ---------- */
.hero{
  background:
    radial-gradient(circle at 88% 8%, rgba(201,162,76,.24), transparent 40%),
    radial-gradient(circle at 8% 85%, rgba(201,162,76,.10), transparent 45%),
    linear-gradient(180deg,var(--navy-950) 0%, var(--navy-900) 62%, var(--navy-800) 100%);
}
.hero::after{
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image:radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:26px 26px;
  mask-image:linear-gradient(180deg, black, transparent 75%);
}
.trust-chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:28px;}
.trust-chip{
  display:flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.06); border:1px solid rgba(228,206,147,.28);
  backdrop-filter:blur(6px);
  padding:9px 16px; border-radius:30px;
  font-family:var(--utility); font-size:12.5px; font-weight:600; color:var(--gold-300);
}
.trust-chip .dot{width:6px; height:6px; border-radius:50%; background:var(--gold-500); box-shadow:0 0 8px 2px rgba(201,162,76,.6);}

.hero-visual{border:1px solid rgba(228,206,147,.25);}
.hero-visual::before{
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, transparent 40%, rgba(16,32,46,.55) 100%);
}
.live-badge{
  position:absolute; top:22px; right:22px; z-index:3;
  display:flex; align-items:center; gap:8px;
  background:rgba(16,32,46,.68); backdrop-filter:blur(8px);
  border:1px solid rgba(228,206,147,.3);
  color:var(--gold-300); font-family:var(--utility); font-size:11.5px; font-weight:700;
  padding:8px 14px; border-radius:30px;
}
.live-badge .pulse{width:7px; height:7px; border-radius:50%; background:#8FD19E; animation:pulse 1.8s infinite;}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(143,209,158,.6);} 70%{box-shadow:0 0 0 8px rgba(143,209,158,0);} 100%{box-shadow:0 0 0 0 rgba(143,209,158,0);}}

/* glass search card */
.search-card{
  background:rgba(255,255,255,.85); backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.6);
}

/* ---------- bento property showcase ---------- */
.bento-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  grid-template-rows:auto auto;
  gap:22px;
}
.bento-grid .card.feature{grid-row:1/3;}
.bento-grid .card.feature .card-media{aspect-ratio:auto; height:100%; min-height:420px;}
@media (max-width:900px){
  .bento-grid{grid-template-columns:1fr;}
  .bento-grid .card.feature{grid-row:auto;}
  .bento-grid .card.feature .card-media{min-height:260px;}
}

.card-media{position:relative;}
.card-media .skyline-fill{transition:transform .6s cubic-bezier(.22,1,.36,1);}
.card:hover .card-media .skyline-fill{transform:scale(1.06);}
.card-media::after{
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, transparent 55%, rgba(16,32,46,.55) 100%);
  pointer-events:none;
}
.ribbon{
  position:absolute; top:12px; left:12px; z-index:2;
  background:linear-gradient(100deg, var(--gold-400), var(--gold-500));
  color:var(--navy-950); font-family:var(--utility); font-weight:700; font-size:11px;
  padding:5px 12px; border-radius:20px;
  box-shadow:0 8px 18px -8px rgba(201,162,76,.7);
}
.view-count{
  position:absolute; bottom:12px; right:12px; z-index:2;
  display:flex; align-items:center; gap:5px;
  background:rgba(16,32,46,.55); backdrop-filter:blur(4px);
  color:var(--cream-50); font-family:var(--utility); font-size:11px; font-weight:600;
  padding:5px 10px; border-radius:20px;
}

/* ---------- why-us trust section ---------- */
.why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.why-card{background:var(--white); border:1px solid var(--stone-200); border-radius:12px; padding:24px 20px; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;}
.why-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-card); border-color:var(--gold-300);}
.why-icon{
  width:44px; height:44px; border-radius:10px; margin-bottom:16px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color:var(--gold-300); font-size:19px;
}
.why-card h3{font-family:var(--display); font-size:16.5px; color:var(--navy-950); margin-bottom:8px;}
.why-card p{font-size:13.5px; color:var(--ink-600);}
@media (max-width:900px){.why-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.why-grid{grid-template-columns:1fr;}}

/* ---------- star ratings ---------- */
.stars{color:var(--gold-500); font-size:14px; letter-spacing:2px; margin-bottom:10px;}

/* ---------- glowing valuation card ---------- */
.valuation{position:relative; border:1px solid rgba(228,206,147,.25);}
.valuation::before{
  content:''; position:absolute; inset:-1px; border-radius:19px; z-index:0; padding:1px;
  background:linear-gradient(120deg, rgba(228,206,147,.55), transparent 40%, transparent 60%, rgba(228,206,147,.35));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  pointer-events:none;
}
.valuation-form{box-shadow:0 30px 60px -25px rgba(16,32,46,.5);}

/* ---------- floating whatsapp cta ---------- */
.wa-float{
  position:fixed; bottom:26px; left:26px; z-index:80;
  display:flex; align-items:center; gap:10px;
  background:#1B3448; color:var(--cream-50);
  padding:14px 20px 14px 16px; border-radius:40px;
  box-shadow:0 16px 34px -14px rgba(16,32,46,.55);
  font-family:var(--utility); font-size:13.5px; font-weight:700;
  border:1px solid rgba(228,206,147,.3);
  transition:transform .2s ease, background .2s ease;
}
.wa-float:hover{transform:translateY(-3px); background:var(--gold-500); color:var(--navy-950);}
.wa-float .wa-ico{
  width:26px; height:26px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:14px; flex-shrink:0;
}
@media (max-width:560px){
  .wa-float{bottom:18px; left:18px; padding:12px 16px 12px 12px; font-size:12.5px;}
  .wa-float span.txt{display:none;}
}

/* animated stat counters reuse .hero-stats strong via JS text updates */

/* ---------- mortgage calculator ---------- */
.mortgage-grid{display:grid; grid-template-columns:1.3fr 1fr; gap:26px; align-items:start;}
.mortgage-calc, .mortgage-contact{
  background:var(--white); border:1px solid var(--stone-200); border-radius:14px; padding:26px;
}
.mortgage-calc-row{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.mortgage-result{
  display:flex; flex-direction:column; gap:10px; margin-top:18px; padding-top:18px; border-top:1px dashed var(--stone-300);
}
.mortgage-result div{display:flex; justify-content:space-between; align-items:baseline;}
.mortgage-result span{font-family:var(--utility); font-size:13px; color:var(--ink-600);}
.mortgage-result strong{font-family:var(--display); font-size:20px; color:var(--navy-950);}
.mortgage-result div:first-child strong{color:var(--gold-500); font-size:26px;}
.mortgage-contact{background:var(--navy-950);}
.mortgage-contact p{color:var(--cream-50) !important;}
.mortgage-contact .field label{color:#9FB0BC;}
.mortgage-contact .field input{background:#0F1E2B; border-color:#2A3F52; color:var(--cream-50);}
@media (max-width:860px){.mortgage-grid{grid-template-columns:1fr;} .mortgage-calc-row{grid-template-columns:1fr 1fr;}}

