
/* ── RESET ── */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:#fff;color:#0c163a;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{text-decoration:none}
button{font-family:'Inter',sans-serif;cursor:pointer}

/* ── VARIABLES ── */
:root{
  --navy:#0c163a;
  --navy2:#162050;
  --pink:#e92264;
  --pink2:#ff4d85;
  --white:#ffffff;
  --off:#f5f6fa;
  --gray:#6b7593;
  --border:#e4e7f0;
  --dark:#07091f;
  --serif:'Inter',sans-serif;
  --sans:'Inter',sans-serif;
  --nav-h:72px;
}

/* ── LOADER ── */
#loader{
  position:fixed;inset:0;background:var(--navy);z-index:9999;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2rem;
  transition:opacity .16s ease,visibility .16s ease;pointer-events:none
}
#loader.done{opacity:0;visibility:hidden;pointer-events:none}
.ld-word{display:flex;gap:6px}
.ld-word span{
  font-family:var(--serif);font-size:4rem;font-weight:900;color:#fff;letter-spacing:0.05em;
  opacity:1;transform:none;
  animation:none
}
@keyframes ldUp{to{opacity:1;transform:none}}
.ld-bar{width:120px;height:2px;background:rgba(255,255,255,.12);border-radius:2px;overflow:hidden}
.ld-bar-fill{height:100%;background:var(--pink);animation:ldBar 1.1s ease forwards}
@keyframes ldBar{from{width:0}to{width:100%}}

/* ── MOBILE OVERLAY MENU ── */
#mobileMenu{
  position:fixed;inset:0;z-index:990;
  pointer-events:none;
}
#mobileMenu .mob-bg{
  position:absolute;inset:0;background:var(--navy);
  transform:translateX(105%);
  transition:transform .55s cubic-bezier(.77,0,.18,1)
}
#mobileMenu.open .mob-bg{transform:none}
#mobileMenu.open{pointer-events:all}
.mob-inner{
  position:relative;z-index:1;height:100%;
  display:flex;flex-direction:column;
  padding:calc(var(--nav-h) + 1.5rem) 8vw 3rem;
  overflow-y:auto;gap:0
}
.mob-links{list-style:none;flex:1}
.mob-item{border-bottom:1px solid rgba(255,255,255,.08);overflow:hidden}
.mob-link{
  display:flex;flex-direction:column;padding:1.1rem 0;
  font-family:var(--serif);font-size:clamp(2rem,7vw,3rem);font-weight:700;color:#fff;
  opacity:0;transform:translateX(-30px);
  transition:color .25s,opacity .4s,transform .4s
}
.mob-link b{font-family:var(--sans);font-size:.65rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:.15rem;font-style:normal}
#mobileMenu.open .mob-link{opacity:1;transform:none}
.mob-link:hover{color:var(--pink)}
.mob-foot{margin-top:2rem;display:flex;flex-direction:column;gap:1rem}
.mob-cta-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.9rem 2.2rem;background:var(--pink);color:#fff;
  font-weight:700;font-size:.85rem;letter-spacing:.06em;text-transform:uppercase;
  border-radius:100px;transition:background .3s;width:fit-content
}
.mob-cta-btn:hover{background:var(--pink2)}
.mob-socials{display:flex;gap:1.5rem}
.mob-socials a{font-size:.75rem;color:rgba(255,255,255,.35);text-transform:uppercase;letter-spacing:.12em;transition:color .2s}
.mob-socials a:hover{color:#fff}
/* Stagger links */
#mobileMenu.open .mob-item:nth-child(1) .mob-link{transition-delay:.12s}
#mobileMenu.open .mob-item:nth-child(2) .mob-link{transition-delay:.19s}
#mobileMenu.open .mob-item:nth-child(3) .mob-link{transition-delay:.26s}
#mobileMenu.open .mob-item:nth-child(4) .mob-link{transition-delay:.33s}
#mobileMenu.open .mob-item:nth-child(5) .mob-link{transition-delay:.40s}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:var(--nav-h);padding:0 5vw;
  display:flex;align-items:center;justify-content:space-between;
  transition:background .4s,box-shadow .4s,backdrop-filter .4s
}
nav.scrolled{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  box-shadow:0 1px 0 var(--border)
}
.n-logo{
  font-family:var(--serif);font-size:1.45rem;font-weight:900;color:#fff;
  letter-spacing:.03em;transition:color .3s;flex-shrink:0
}
.n-logo sup{color:var(--pink);font-size:.55em;vertical-align:super}
nav.scrolled .n-logo{color:var(--navy)}
.n-links{display:flex;list-style:none;gap:2rem;align-items:center}
.n-link{
  font-size:.78rem;font-weight:600;letter-spacing:.07em;text-transform:uppercase;
  color:rgba(255,255,255,.8);transition:color .3s;position:relative
}
.n-link::after{
  content:'';position:absolute;bottom:-3px;left:0;right:0;height:2px;
  background:var(--pink);transform:scaleX(0);transform-origin:left;transition:transform .3s
}
.n-link:hover{color:#fff}
.n-link:hover::after{transform:scaleX(1)}
nav.scrolled .n-link{color:var(--gray)}
nav.scrolled .n-link:hover{color:var(--navy)}
.n-right{display:flex;align-items:center;gap:.8rem}
.n-cta{
  padding:.55rem 1.5rem;background:var(--pink);color:#fff;
  font-size:.78rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  border-radius:100px;transition:all .3s;white-space:nowrap;flex-shrink:0
}
.n-cta:hover{background:var(--pink2);transform:translateY(-1px);box-shadow:0 6px 20px rgba(233,34,100,.35)}
/* Hamburger */
.ham{display:none;flex-direction:column;gap:5px;padding:5px;z-index:1001;cursor:pointer;flex-shrink:0}
.hline{width:24px;height:2px;background:#fff;border-radius:2px;transition:all .35s}
nav.scrolled .hline{background:var(--navy)}
.ham.open .hline:nth-child(1){transform:translateY(7px) rotate(45deg)}
.ham.open .hline:nth-child(2){opacity:0;transform:scaleX(0)}
.ham.open .hline:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
/* Override ham lines when menu is open regardless of scroll */
.ham.open .hline{background:#fff !important}

/* ── HERO ── */
#hero{
  position:relative;height:100vh;min-height:640px;
  display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden
}
.h-slides{position:absolute;inset:0}
.h-slide{position:absolute;inset:0;opacity:0;transition:opacity 1.6s ease}
.h-slide.on{opacity:1}
.h-slide img{width:100%;height:100%;object-fit:cover}
.h-overlay{
  position:absolute;inset:0;
  background:linear-gradient(105deg,rgba(7,9,31,.82) 0%,rgba(7,9,31,.45) 55%,rgba(7,9,31,.2) 100%),
             linear-gradient(to top,rgba(7,9,31,.88) 0%,transparent 45%)
}
/* slide counter — right side */
.h-counter{
  position:absolute;right:4vw;top:50%;transform:translateY(-50%);
  z-index:3;display:flex;flex-direction:column;align-items:center;gap:.6rem
}
.h-count-num{
  font-family:var(--serif);font-size:2rem;font-weight:700;color:#fff;line-height:1;
  min-width:2.2ch;text-align:center
}
.h-count-bar{width:1px;height:56px;background:rgba(255,255,255,.18);position:relative;overflow:hidden}
.h-count-fill{position:absolute;top:0;left:0;width:100%;background:var(--pink)}
.h-count-total{font-size:.7rem;color:rgba(255,255,255,.35);letter-spacing:.1em}
/* hero content */
.h-content{
  position:relative;z-index:2;
  padding:0 6vw calc(3.5rem + 90px); /* bottom leaves room for search bar */
  max-width:680px;width:100%
}
.h-badge{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.35rem 1rem;border-radius:100px;
  background:rgba(233,34,100,.15);border:1px solid rgba(233,34,100,.4);
  margin-bottom:1.4rem;
  opacity:0;animation:aUp .7s 1.4s both
}
.h-badge-dot{width:6px;height:6px;border-radius:50%;background:var(--pink);animation:blink 2s infinite}
@keyframes blink{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.45;transform:scale(1.5)}}
.h-badge span{color:#fff;font-size:.7rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase}
.h-title{
  font-family:var(--serif);font-size:clamp(2.8rem,7vw,6rem);font-weight:900;
  color:#fff;line-height:.97;letter-spacing:-.02em;
  margin-bottom:1.1rem;
  opacity:0;animation:aUp .9s 1.55s both
}
.h-title em{font-style:italic;font-weight:300;color:var(--pink)}
.h-sub{
  font-size:clamp(.88rem,1.4vw,1rem);color:rgba(255,255,255,.65);
  line-height:1.8;max-width:440px;margin-bottom:2.2rem;font-weight:300;
  opacity:0;animation:aUp .9s 1.7s both
}
.h-btns{
  display:flex;gap:.8rem;flex-wrap:wrap;
  opacity:0;animation:aUp .9s 1.85s both
}
.btn-p{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.85rem 1.9rem;background:var(--pink);color:#fff;
  font-weight:700;font-size:.82rem;letter-spacing:.05em;border-radius:100px;transition:all .3s
}
.btn-p:hover{background:var(--pink2);transform:translateY(-2px);box-shadow:0 10px 28px rgba(233,34,100,.4)}
.btn-g{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.85rem 1.9rem;background:rgba(255,255,255,.1);color:#fff;
  font-weight:500;font-size:.82rem;letter-spacing:.05em;border-radius:100px;
  border:1px solid rgba(255,255,255,.28);backdrop-filter:blur(10px);transition:all .3s
}
.btn-g:hover{background:rgba(255,255,255,.2)}
/* slide thumbnails bottom-right */
.h-thumbs{
  position:absolute;bottom:2rem;right:4vw;z-index:3;
  display:flex;gap:.5rem
}
.h-thumb{
  width:64px;height:44px;border-radius:8px;overflow:hidden;
  border:2px solid transparent;opacity:.45;cursor:pointer;transition:all .3s
}
.h-thumb img{width:100%;height:100%;object-fit:cover}
.h-thumb.on{border-color:var(--pink);opacity:1}
@keyframes aUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}

/* ── SEARCH BAR ── */
/* sits below hero, NOT overlapping; white bg card with shadow */
.search-wrap{
  background:var(--white);
  padding:0 5vw;
  margin-top:0; /* no negative margin */
  position:relative;z-index:10;
  box-shadow:0 4px 30px rgba(12,22,58,.08)
}
.search-box{
  max-width:1100px;margin:0 auto;
  display:flex;align-items:stretch;
  border-bottom:none;
}
.s-field{
  flex:1;display:flex;flex-direction:column;gap:.25rem;
  padding:1.3rem 1.6rem;
  border-right:1px solid var(--border);
  min-width:0
}
.s-field:first-child{padding-left:0}
.s-field label{
  font-size:.62rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
  color:var(--pink);
}
.s-field input,.s-field select{
  border:none;outline:none;background:transparent;
  font-family:var(--sans);font-size:.92rem;font-weight:600;color:var(--navy);
  width:100%;min-width:0
}
.s-field select{cursor:pointer;appearance:none;-webkit-appearance:none}
.s-btn{
  flex-shrink:0;display:flex;align-items:center;gap:.5rem;
  padding:1.3rem 2rem;
  background:var(--pink);color:#fff;border:none;
  font-size:.8rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  transition:background .3s;white-space:nowrap;cursor:pointer
}
.s-btn:hover{background:var(--pink2)}
.s-btn svg{width:15px;height:15px;flex-shrink:0}

/* ── STATS ── */
.stats{
  background:var(--navy);
  display:flex;justify-content:center;flex-wrap:wrap;
  padding:2.5rem 5vw
}
.st{
  flex:1;min-width:140px;max-width:220px;
  text-align:center;padding:1.2rem 1rem;
  border-right:1px solid rgba(255,255,255,.08)
}
.st:last-child{border-right:none}
.st-n{
  font-family:var(--serif);font-size:2.6rem;font-weight:900;color:#fff;line-height:1;display:block;
}
.st-n em{color:var(--pink);font-style:normal}
.st-l{display:block;font-size:.68rem;color:rgba(255,255,255,.4);letter-spacing:.14em;text-transform:uppercase;margin-top:.3rem}

/* ── COMMON SECTION ── */
section{padding:6rem 5vw}
.sec-wrap{max-width:1120px;margin:0 auto}
.s-tag{display:block;font-size:.68rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--pink);margin-bottom:.7rem}
.s-ttl{font-family:var(--serif);font-size:clamp(1.9rem,3.8vw,3rem);font-weight:900;color:var(--navy);line-height:1.12;margin-bottom:.9rem}
.s-ttl em{font-style:italic;font-weight:300;color:var(--pink)}
.s-hd{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:3rem;gap:1rem;flex-wrap:wrap}
.s-all{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.78rem;font-weight:700;color:var(--navy);
  border-bottom:2px solid var(--pink);padding-bottom:2px;
  transition:color .2s,gap .2s;white-space:nowrap;align-self:flex-end
}
.s-all:hover{color:var(--pink);gap:.7rem}

/* ── DISTRICTS ── */
#districts{background:var(--off)}
#districts .sec-wrap{max-width:1120px;margin:0 auto}
.dist-grid{
  display:grid;
  grid-template-columns:1.55fr 1fr 1fr;
  grid-template-rows:270px 270px;
  gap:.9rem
}
.dc{position:relative;border-radius:14px;overflow:hidden;cursor:pointer}
.dc:first-child{grid-row:1/3}
.dc img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease;display:block}
.dc:first-child img{height:100%}
.dc:not(:first-child) img{height:100%}
.dc:hover img{transform:scale(1.06)}
.dc-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(7,9,31,.88) 0%,transparent 55%);transition:background .4s}
.dc:hover .dc-ov{background:linear-gradient(to top,rgba(233,34,100,.7) 0%,rgba(7,9,31,.25) 55%)}
.dc-body{position:absolute;bottom:0;left:0;right:0;padding:1.3rem 1.2rem}
.dc-n{display:block;font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--pink);margin-bottom:.25rem}
.dc-t{font-family:var(--serif);font-size:1.35rem;font-weight:700;color:#fff;line-height:1.15;margin-bottom:.5rem}
.dc:first-child .dc-t{font-size:2rem}
.dc-tags{display:flex;flex-wrap:wrap;gap:4px}
.dc-tag{
  font-size:.62rem;padding:2px 9px;border-radius:100px;
  background:rgba(255,255,255,.12);color:rgba(255,255,255,.8);
  backdrop-filter:blur(6px)
}

/* ── MOSAIC GALLERY ── */
#gallery{background:#fff;padding:6rem 5vw}
.mosaic{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:210px 210px;
  gap:.7rem;
  max-width:1120px;margin:0 auto
}
.mi{border-radius:12px;overflow:hidden;position:relative}
.mi:nth-child(1){grid-column:1/3}
.mi:nth-child(4){grid-column:4/5;grid-row:1/3}
.mi img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease;display:block}
.mi:hover img{transform:scale(1.07)}
.mi-lbl{
  position:absolute;bottom:0;left:0;right:0;padding:.9rem;
  background:linear-gradient(to top,rgba(7,9,31,.72),transparent);
  color:#fff;font-size:.75rem;font-weight:600;letter-spacing:.04em;
  transform:translateY(110%);transition:transform .3s
}
.mi:hover .mi-lbl{transform:none}

/* ── SERVICES ── */
#services{background:var(--navy)}
#services .s-ttl{color:#fff}
#services .s-all{color:#fff;border-bottom-color:var(--pink)}
#services .s-all:hover{color:var(--pink)}
.srv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.sc{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);
  border-radius:14px;padding:2rem 1.7rem;
  transition:transform .4s,border-color .4s,background .4s;
  position:relative;overflow:hidden
}
.sc::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(233,34,100,.07),transparent);
  opacity:0;transition:opacity .4s
}
.sc:hover{transform:translateY(-5px);border-color:rgba(233,34,100,.3)}
.sc:hover::before{opacity:1}
.sc-ico{
  width:48px;height:48px;border-radius:12px;
  background:rgba(233,34,100,.14);
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;margin-bottom:1.3rem
}
.sc-t{font-family:var(--serif);font-size:1.3rem;font-weight:700;color:#fff;margin-bottom:.55rem}
.sc-d{font-size:.85rem;color:rgba(255,255,255,.47);line-height:1.75;font-weight:300}
.sc-lnk{
  display:inline-flex;align-items:center;gap:.35rem;
  color:var(--pink);font-size:.76rem;font-weight:700;
  margin-top:1rem;letter-spacing:.05em;transition:gap .2s
}
.sc-lnk:hover{gap:.6rem}

/* ── BOOKING / FORM ── */
#booking{
  background:linear-gradient(135deg,var(--navy) 0%,#162456 60%,var(--navy) 100%);
  padding:6rem 5vw;position:relative;overflow:hidden
}
.bk-blob{
  position:absolute;border-radius:50%;pointer-events:none;
  background:rgba(233,34,100,.06)
}
.bk-blob:nth-child(1){width:560px;height:560px;top:-180px;right:-80px}
.bk-blob:nth-child(2){width:380px;height:380px;bottom:-160px;left:-80px}
.bk-inner{
  position:relative;z-index:1;max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start
}
.bk-left .s-ttl{color:#fff}
.bk-sub{font-size:.95rem;color:rgba(255,255,255,.5);line-height:1.85;font-weight:300;margin-bottom:1.8rem}
.bk-checks{display:flex;flex-direction:column;gap:.7rem}
.bk-ch{display:flex;align-items:center;gap:.75rem;font-size:.88rem;color:rgba(255,255,255,.7)}
.bk-dot{
  width:18px;height:18px;flex-shrink:0;border-radius:50%;
  background:var(--pink);display:flex;align-items:center;justify-content:center;
  font-size:.6rem;color:#fff;font-weight:700
}
.bk-form{
  background:#fff;border-radius:18px;padding:2.2rem;
  box-shadow:0 24px 70px rgba(0,0,0,.28)
}
.bk-form-t{font-family:var(--serif);font-size:1.5rem;font-weight:900;color:var(--navy);margin-bottom:.2rem}
.bk-form-s{font-size:.78rem;color:var(--gray);margin-bottom:1.6rem}
.fg{margin-bottom:1rem}
.fl{display:block;font-size:.62rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--gray);margin-bottom:.35rem}
.fi,.fsl,.fta{
  width:100%;padding:.7rem .9rem;
  border:1.5px solid var(--border);border-radius:9px;
  font-family:var(--sans);font-size:.88rem;color:var(--navy);
  background:#fff;outline:none;transition:border-color .3s
}
.fi:focus,.fsl:focus,.fta:focus{border-color:var(--pink)}
.fta{resize:vertical;min-height:72px}
.fg2{display:grid;grid-template-columns:1fr 1fr;gap:.85rem}
.fbtn{
  width:100%;padding:.9rem;
  background:var(--pink);color:#fff;border:none;border-radius:100px;
  font-family:var(--sans);font-weight:700;font-size:.85rem;letter-spacing:.06em;
  cursor:pointer;transition:all .3s;margin-top:.4rem;
  display:flex;align-items:center;justify-content:center;gap:.4rem
}
.fbtn:hover{background:var(--pink2);box-shadow:0 8px 22px rgba(233,34,100,.38);transform:translateY(-1px)}
.f-note{text-align:center;font-size:.7rem;color:var(--gray);margin-top:.7rem}

/* ── PLACES ── */
#places{background:var(--off)}
.p-tabs{
  display:inline-flex;background:#fff;border-radius:10px;padding:.35rem;
  box-shadow:0 2px 10px rgba(12,22,58,.09);margin-bottom:2.5rem;flex-wrap:wrap;gap:.2rem
}
.ptab{
  padding:.55rem 1.3rem;border:none;background:transparent;border-radius:8px;
  font-family:var(--sans);font-size:.78rem;font-weight:700;color:var(--gray);
  cursor:pointer;letter-spacing:.04em;transition:all .3s
}
.ptab.active{background:var(--navy);color:#fff}
.p-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem;
  transition:opacity .3s,transform .3s
}
.pc{
  background:#fff;border-radius:13px;overflow:hidden;
  box-shadow:0 2px 10px rgba(12,22,58,.06);
  transition:transform .35s,box-shadow .35s
}
.pc:hover{transform:translateY(-5px);box-shadow:0 14px 36px rgba(12,22,58,.12)}
.pc-img{height:148px;overflow:hidden;position:relative;flex-shrink:0}
.pc-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.pc:hover .pc-img img{transform:scale(1.07)}
.pc-bdg{
  position:absolute;top:9px;left:9px;
  padding:2px 9px;border-radius:100px;
  font-size:.6rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase
}
.bdg-gold{background:#f4d460;color:#5a3c00}
.bdg-pink{background:var(--pink);color:#fff}
.bdg-navy{background:var(--navy);color:#fff}
.pc-body{padding:1rem}
.pc-cat{font-size:.62rem;text-transform:uppercase;letter-spacing:.14em;color:var(--pink);font-weight:700;margin-bottom:.2rem}
.pc-name{font-weight:700;font-size:.9rem;color:var(--navy);margin-bottom:.2rem;line-height:1.3}
.pc-info{font-size:.75rem;color:var(--gray)}
.pc-rate{display:flex;align-items:center;gap:.3rem;margin-top:.4rem}
.pc-stars{color:#f4c842;font-size:.7rem}
.pc-rn{font-size:.73rem;font-weight:700;color:var(--navy)}

/* ── REVIEWS ── */
#reviews{background:#fff}
.rv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem;margin-top:3rem}
.rv{
  background:var(--off);border-radius:14px;padding:1.8rem;
  transition:transform .35s,box-shadow .35s
}
.rv:hover{transform:translateY(-4px);box-shadow:0 10px 28px rgba(12,22,58,.09)}
.rv-q{font-family:var(--serif);font-size:2.5rem;color:var(--pink);line-height:1;margin-bottom:.3rem}
.rv-txt{font-size:.88rem;color:#555;line-height:1.8;font-weight:300;margin-bottom:1.3rem}
.rv-au{display:flex;align-items:center;gap:.75rem}
.rv-av{
  width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:.85rem;color:#fff;flex-shrink:0
}
.rv-name{font-weight:700;font-size:.85rem;color:var(--navy)}
.rv-from{font-size:.72rem;color:var(--gray)}

/* ── INSIGHTS ── */
#insights{background:var(--off)}
.ins-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:1.3rem;margin-top:2.8rem}
.ins{background:#fff;border-radius:14px;overflow:hidden;transition:transform .35s,box-shadow .35s;cursor:pointer}
.ins:hover{transform:translateY(-5px);box-shadow:0 14px 36px rgba(12,22,58,.11)}
.ins-img img{width:100%;object-fit:cover;transition:transform .5s;display:block}
.ins:first-child .ins-img img{height:220px}
.ins:not(:first-child) .ins-img img{height:150px}
.ins:hover .ins-img img{transform:scale(1.05)}
.ins-body{padding:1.3rem}
.ins-cat{font-size:.62rem;text-transform:uppercase;letter-spacing:.18em;color:var(--pink);font-weight:700;margin-bottom:.35rem}
.ins-t{font-family:var(--serif);font-size:1.05rem;font-weight:700;color:var(--navy);line-height:1.35;margin-bottom:.4rem}
.ins:first-child .ins-t{font-size:1.35rem}
.ins-d{font-size:.72rem;color:var(--gray)}

/* ── FOOTER ── */
footer{background:var(--dark);padding:5rem 5vw 2.5rem}
.ft{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3.5rem;margin-bottom:3.5rem;max-width:1120px;margin-left:auto;margin-right:auto}
.ft-logo{font-family:var(--serif);font-size:1.6rem;font-weight:900;color:#fff;display:block;margin-bottom:.9rem}
.ft-logo sup{color:var(--pink);font-size:.55em;vertical-align:super}
.ft-desc{font-size:.83rem;color:rgba(255,255,255,.37);line-height:1.8;font-weight:300;max-width:270px;margin-bottom:1.4rem}
.ft-nl{display:flex;background:rgba(255,255,255,.07);border-radius:100px;overflow:hidden;border:1px solid rgba(255,255,255,.1)}
.ft-nl input{flex:1;min-width:0;background:transparent;border:none;outline:none;padding:.65rem 1.1rem;font-family:var(--sans);color:#fff;font-size:.82rem}
.ft-nl input::placeholder{color:rgba(255,255,255,.28)}
.ft-nl button{padding:.65rem 1.1rem;background:var(--pink);border:none;color:#fff;font-family:var(--sans);font-weight:700;font-size:.75rem;border-radius:0 100px 100px 0;cursor:pointer;transition:background .3s}
.ft-nl button:hover{background:var(--pink2)}
.ft-ct{font-size:.62rem;text-transform:uppercase;letter-spacing:.18em;color:rgba(255,255,255,.28);margin-bottom:1rem}
.ft-ls{list-style:none;display:flex;flex-direction:column;gap:.55rem}
.ft-ls a{font-size:.84rem;color:rgba(255,255,255,.45);transition:color .2s}
.ft-ls a:hover{color:#fff}
.ft-btm{
  border-top:1px solid rgba(255,255,255,.07);padding-top:2rem;
  display:flex;justify-content:space-between;align-items:center;
  font-size:.72rem;color:rgba(255,255,255,.22);flex-wrap:wrap;gap:.8rem;
  max-width:1120px;margin:0 auto
}
.ft-btm a{color:rgba(255,255,255,.22);transition:color .2s}
.ft-btm a:hover{color:rgba(255,255,255,.5)}
.ft-btm-r{display:flex;gap:1.3rem}

/* ── SCROLL REVEAL ── */
.rv-el{opacity:0;transform:translateY(32px);transition:opacity .75s ease,transform .75s ease}
.rv-el.in{opacity:1;transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}
.d4{transition-delay:.4s}.d5{transition-delay:.5s}

/* ── RESPONSIVE ── */
@media(max-width:1050px){
  .dist-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .dc:first-child{grid-row:auto;grid-column:1/3}
  .dc:first-child img,.dc:not(:first-child) img{height:280px}
  .srv-grid{grid-template-columns:1fr 1fr}
  .bk-inner{grid-template-columns:1fr;gap:3rem}
  .ins-grid{grid-template-columns:1fr 1fr}
  .rv-grid{grid-template-columns:1fr 1fr}
  .ft{grid-template-columns:1fr 1fr;gap:2.5rem}
  .n-links{gap:1.4rem}
}
@media(max-width:768px){
  :root{--nav-h:64px}
  .n-links{display:none}
  .n-right .n-cta{display:none}
  .ham{display:flex}
  .h-counter{display:none}
  .h-thumbs{display:none}
  .h-content{padding:0 5vw calc(2.5rem + 70px)}
  /* search bar stacked on mobile */
  .search-box{flex-direction:column}
  .s-field{border-right:none;border-bottom:1px solid var(--border);padding:1rem 0}
  .s-field:first-child{padding-left:0}
  .s-field:last-of-type{border-bottom:none}
  .s-btn{border-radius:0;justify-content:center}
  /* stats */
  .st{min-width:50%;border-bottom:1px solid rgba(255,255,255,.08)}
  .st:nth-child(2n){border-right:none}
  .st:last-child{border-bottom:none}
  /* sections */
  section{padding:4rem 5vw}
  /* district grid */
  .dist-grid{grid-template-columns:1fr}
  .dc:first-child{grid-column:1}
  .dc:first-child img,.dc:not(:first-child) img{height:240px}
  /* mosaic */
  .mosaic{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .mi:nth-child(1){grid-column:1/3}
  .mi:nth-child(4){grid-column:auto;grid-row:auto}
  .mi,.mi img{height:170px}
  /* others */
  .srv-grid{grid-template-columns:1fr}
  .p-grid{grid-template-columns:1fr 1fr}
  .rv-grid{grid-template-columns:1fr}
  .ins-grid{grid-template-columns:1fr}
  .ft{grid-template-columns:1fr;gap:2rem}
  .fg2{grid-template-columns:1fr}
  .s-hd{flex-direction:column;align-items:flex-start}
}
@media(max-width:480px){
  .p-grid{grid-template-columns:1fr}
  .h-btns{flex-direction:column;align-items:flex-start}
}


/* CMS additions */
body.page-inner{background:#fff}.inner-hero{min-height:390px;height:48vh;position:relative;display:flex;align-items:flex-end;padding:0 5vw 4rem;overflow:hidden}.inner-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.inner-hero:after{content:"";position:absolute;inset:0;background:linear-gradient(105deg,rgba(7,9,31,.86),rgba(7,9,31,.35)),linear-gradient(to top,rgba(7,9,31,.9),transparent 55%)}.inner-hero-content{position:relative;z-index:2;max-width:850px}.crumb{font-size:.72rem;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.55);font-weight:700;margin-bottom:.8rem}.inner-hero h1{font-family:var(--serif);font-size:clamp(2.4rem,5vw,5rem);line-height:1;color:#fff;margin:0}.inner-hero p{max-width:660px;color:rgba(255,255,255,.68);line-height:1.8;margin-top:1rem}.content-pad{padding:5.5rem 5vw}.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.4rem}.card-link{display:block;background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;box-shadow:0 2px 12px rgba(12,22,58,.06);transition:.3s}.card-link:hover{transform:translateY(-5px);box-shadow:0 18px 45px rgba(12,22,58,.12)}.card-link .pic{height:210px;overflow:hidden}.card-link .pic img{width:100%;height:100%;object-fit:cover;transition:.5s}.card-link:hover .pic img{transform:scale(1.05)}.card-link .body{padding:1.25rem}.meta{font-size:.65rem;text-transform:uppercase;letter-spacing:.16em;color:var(--pink);font-weight:800;margin-bottom:.35rem}.card-link h3{font-family:var(--serif);font-size:1.4rem;line-height:1.2;color:var(--navy);margin-bottom:.55rem}.card-link p{font-size:.86rem;color:var(--gray);line-height:1.7}.page-copy{font-size:1rem;line-height:1.85;color:#414a68}.page-copy h2{font-family:var(--serif);font-size:2.1rem;color:var(--navy);margin:2rem 0 .8rem}.page-copy ul{padding-left:1.2rem;margin:1rem 0}.page-copy li{margin:.4rem 0}.district-map{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}.map-tile{min-height:180px;border-radius:18px;padding:1.3rem;color:#fff;position:relative;overflow:hidden;display:flex;flex-direction:column;justify-content:flex-end}.map-tile:after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(7,9,31,.6),transparent)}.map-tile>*{position:relative;z-index:1}.map-tile span{font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;opacity:.75}.map-tile h3{font-family:var(--serif);font-size:1.7rem}.m1{background:#e92264}.m2{background:#0c163a}.m3{background:#f59e0b}.m4{background:#2563eb}.m5{background:#16a34a}.m6{background:#7c3aed}.planner{max-width:960px;margin:0 auto;background:#fff;border-radius:22px;border:1px solid var(--border);box-shadow:0 20px 60px rgba(12,22,58,.1);overflow:hidden}.steps{display:flex;background:var(--navy);color:#fff}.step-dot{flex:1;padding:1rem;text-align:center;font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;border-right:1px solid rgba(255,255,255,.1);opacity:.45}.step-dot.active{opacity:1;background:rgba(233,34,100,.18)}.step-panel{display:none;padding:2rem}.step-panel.active{display:block}.planner .fg{margin-bottom:1.2rem}.planner-actions{display:flex;justify-content:space-between;gap:.8rem;margin-top:1.3rem}.btn-dark{border:none;background:var(--navy);color:#fff;border-radius:100px;padding:.85rem 1.4rem;font-weight:800}.btn-light{border:1px solid var(--border);background:#fff;color:var(--navy);border-radius:100px;padding:.85rem 1.4rem;font-weight:800}.search-wrap form{display:flex;width:100%}.article-layout,.place-layout{display:grid;grid-template-columns:1fr 330px;gap:3rem;align-items:start}.side-box{background:var(--off);border-radius:18px;padding:1.5rem;position:sticky;top:95px}.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem;margin-top:1.5rem}.gallery-grid img{height:170px;width:100%;object-fit:cover;border-radius:12px}.video-frame{aspect-ratio:16/9;border-radius:16px;overflow:hidden;background:#000;margin-top:1.5rem}.video-frame iframe{width:100%;height:100%;border:0}.alert{padding:1rem;border-radius:12px;margin-bottom:1rem}.alert.ok{background:#e9f9ef;color:#11622d}.alert.err{background:#fff0f3;color:#971235}.empty{padding:2rem;background:var(--off);border-radius:14px;color:var(--gray)}
@media(max-width:900px){.grid-3,.grid-2,.district-map{grid-template-columns:1fr 1fr}.article-layout,.place-layout{grid-template-columns:1fr}.side-box{position:static}.search-wrap form{flex-direction:column}.steps{overflow:auto}.step-dot{min-width:130px}.gallery-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.grid-3,.grid-2,.district-map,.gallery-grid{grid-template-columns:1fr}.inner-hero{height:auto;min-height:340px}.content-pad{padding:3.5rem 5vw}}

/* CMS update: static logos + fast fade only, no moving reveal animations */
.site-logo-img{display:block;max-height:42px;width:auto;object-fit:contain}.ft-logo .site-logo-img{max-height:54px}.site-logo-text{display:inline-block}
.rv-el{opacity:0;transform:none!important;transition:opacity .22s ease!important}.rv-el.in{opacity:1;transform:none!important}.d1,.d2,.d3,.d4,.d5{transition-delay:0s!important}
.h-slide{transition:opacity .35s ease!important}.ld-word span{opacity:1!important;transform:none!important;animation:none!important}.ld-bar-fill{animation:none!important;width:100%!important}#loader{transition:opacity .18s ease,visibility .18s ease!important}
.dc img,.mi img,.pc-img img,.ins-img img,.card-link .pic img{transition:opacity .22s ease!important;transform:none!important}.dc:hover img,.mi:hover img,.pc:hover .pc-img img,.ins:hover .ins-img img,.card-link:hover .pic img{transform:none!important;opacity:.92}
.card-link,.pc,.rv,.ins,.sc,.btn-p,.n-cta,.s-all,.fbtn{transition:opacity .22s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease,color .18s ease!important}.card-link:hover,.pc:hover,.rv:hover,.ins:hover,.sc:hover,.btn-p:hover,.n-cta:hover,.fbtn:hover{transform:none!important}.mob-bg{transition:opacity .2s ease!important;transform:none!important;opacity:0}.mobileMenu.open .mob-bg,#mobileMenu.open .mob-bg{opacity:1}.mob-link{transform:none!important;transition:opacity .18s ease,color .18s ease!important}.hline{transition:opacity .18s ease,background .18s ease!important}
.rating-row{display:flex;align-items:center;gap:.45rem;flex-wrap:wrap;margin:.35rem 0 .45rem}.rating-stars{display:inline-flex;gap:1px;font-size:.9rem;letter-spacing:.02em}.rating-stars .on{color:#f4c842}.rating-stars .off{color:#d9deea}.rating-number{font-size:.78rem;font-weight:800;color:var(--navy);background:#fff7d1;border:1px solid #f3d36b;border-radius:999px;padding:2px 8px}.place-tabs-home{margin-bottom:2rem}.place-card[hidden]{display:none!important}

/* ─────────────────────────────────────────────
   UPDATE 2 — stronger hero search, no stats, better places tabs,
   improved districts UI and rounded footer
───────────────────────────────────────────── */
body{background:linear-gradient(180deg,#fff 0%,#f7f8fc 54%,#fff 100%)}
#hero{min-height:760px;padding-bottom:120px}
.h-content{padding-bottom:2.4rem;max-width:760px}
.hero-search-panel{
  position:absolute;left:5vw;right:5vw;bottom:28px;z-index:12;
  max-width:1180px;margin:0 auto;
  opacity:0;transform:none!important;animation:softFade .32s ease .18s both;
}
.hero-search-box{
  width:100%;display:grid!important;grid-template-columns:1.2fr .9fr 1.05fr 1fr auto;
  align-items:stretch;background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.55);border-radius:28px;overflow:hidden;
  box-shadow:0 30px 90px rgba(7,9,31,.32), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter:blur(20px);
}
.hero-search-box .s-field{padding:1.05rem 1.25rem;border-right:1px solid rgba(12,22,58,.09);border-bottom:0;background:linear-gradient(180deg,rgba(255,255,255,.55),rgba(245,246,250,.38))}
.hero-search-box .s-field:first-child{padding-left:1.35rem}
.hero-search-box .s-field label{font-size:.58rem;color:var(--pink);letter-spacing:.17em;margin-bottom:.15rem}
.hero-search-box .s-field input,.hero-search-box .s-field select{font-size:.88rem;font-weight:750;color:var(--navy)}
.hero-search-box .s-btn{border:0;border-radius:22px;margin:.55rem;padding:0 1.65rem;background:linear-gradient(135deg,var(--pink),var(--pink2));box-shadow:0 13px 30px rgba(233,34,100,.35);justify-content:center;min-width:148px}
.hero-search-box .s-btn:hover{background:linear-gradient(135deg,var(--pink2),var(--pink));box-shadow:0 16px 35px rgba(233,34,100,.45)}
.search-wrap{display:none!important}.stats{display:none!important}
@keyframes softFade{from{opacity:0}to{opacity:1}}

#places{background:linear-gradient(180deg,#fff 0%,#f4f6fb 100%);padding-top:6.5rem}
.place-tabs-home,.p-tabs{
  display:inline-flex!important;gap:.45rem;align-items:center;margin-bottom:2.1rem;
  background:#fff;border:1px solid rgba(12,22,58,.08);border-radius:999px;padding:.42rem;
  box-shadow:0 14px 38px rgba(12,22,58,.08)
}
.place-tabs-home .ptab,.p-tabs .ptab{border:0;border-radius:999px;padding:.7rem 1.2rem;background:transparent;color:#63708f;font-weight:850;font-size:.76rem;letter-spacing:.03em;transition:background .18s ease,color .18s ease,box-shadow .18s ease!important}
.place-tabs-home .ptab.active,.p-tabs .ptab.active{background:var(--navy);color:#fff;box-shadow:0 10px 24px rgba(12,22,58,.18)}
[data-place-grid]{transition:opacity .18s ease}.place-card{position:relative}.place-card[hidden]{display:none!important}
.rating-row{margin:.5rem 0 .55rem}.rating-stars{font-size:1rem}.rating-number{background:#fff3bd;color:#3b2a00;border-color:#f3d36b;font-weight:900}

#districts{background:radial-gradient(circle at top left,rgba(233,34,100,.08),transparent 32%),linear-gradient(180deg,#f7f8fc,#ffffff)}
.district-map{display:grid!important;grid-template-columns:1.1fr 1fr 1fr;gap:1.05rem;align-items:stretch;counter-reset:district}
.map-tile{
  min-height:210px!important;border-radius:28px!important;padding:1.45rem!important;color:#fff!important;
  border:1px solid rgba(255,255,255,.32);box-shadow:0 20px 52px rgba(12,22,58,.12);
  isolation:isolate;overflow:hidden;transition:opacity .2s ease,box-shadow .2s ease!important
}
.map-tile:nth-child(1){grid-row:span 2;min-height:430px!important}.map-tile:nth-child(1) h3{font-size:2.35rem!important}
.map-tile:before{content:"";position:absolute;inset:0;z-index:0;background:radial-gradient(circle at 18% 15%,rgba(255,255,255,.34),transparent 27%),linear-gradient(135deg,rgba(255,255,255,.12),rgba(0,0,0,.18))}
.map-tile:after{content:""!important;position:absolute;right:-48px;top:-52px;width:150px;height:150px;border-radius:50%;background:rgba(255,255,255,.17)!important;inset:auto!important}
.map-tile>*{position:relative;z-index:1}.map-tile span{display:inline-flex;width:max-content;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.22);border-radius:999px;padding:.35rem .65rem;margin-bottom:auto;font-weight:850;opacity:1!important}.map-tile h3{font-family:var(--serif);font-size:1.65rem!important;line-height:1.05;margin:.8rem 0 .45rem}.map-tile p{font-size:.9rem;line-height:1.55;color:rgba(255,255,255,.82);max-width:92%}.map-tile:hover{box-shadow:0 26px 66px rgba(12,22,58,.18);opacity:.94}
.map-tile:hover h3{text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:5px;text-decoration-color:rgba(255,255,255,.55)}

footer{background:transparent!important;padding:3rem 5vw 2.2rem!important}
footer .ft{max-width:1180px;margin:0 auto 0!important;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;background:linear-gradient(135deg,#07102f 0%,#0c163a 58%,#171f4c 100%);border:1px solid rgba(255,255,255,.08);border-radius:34px;padding:3rem;box-shadow:0 30px 90px rgba(7,9,31,.24);position:relative;overflow:hidden}
footer .ft:before{content:"";position:absolute;right:-120px;top:-150px;width:380px;height:380px;border-radius:50%;background:rgba(233,34,100,.16);filter:blur(8px)}
footer .ft>*{position:relative;z-index:1}.ft-logo img.site-logo{max-height:54px}.ft-logo{display:block;margin-bottom:1rem}.ft-desc{color:rgba(255,255,255,.56)}.ft-ct{color:rgba(255,255,255,.42)}.ft-ls a{color:rgba(255,255,255,.62)}.ft-ls a:hover{color:#fff}.ft-nl{background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.12)}.ft-nl button{border-radius:999px;margin:3px}.ft-btm{max-width:1180px;margin:.9rem auto 0!important;border-top:0!important;padding:1rem 1.2rem!important;background:#fff;border-radius:999px;box-shadow:0 12px 32px rgba(12,22,58,.06);color:#7a849e!important}.ft-btm a{color:#7a849e!important}
@media(max-width:1050px){.hero-search-box{grid-template-columns:1fr 1fr}.hero-search-box .s-btn{grid-column:1/-1;height:54px}.district-map{grid-template-columns:1fr 1fr}.map-tile:nth-child(1){grid-row:auto;min-height:240px!important}footer .ft{grid-template-columns:1fr 1fr}}
@media(max-width:768px){#hero{min-height:820px;padding-bottom:265px}.hero-search-panel{left:4vw;right:4vw;bottom:24px}.hero-search-box{grid-template-columns:1fr;border-radius:24px}.hero-search-box .s-field{border-right:0;border-bottom:1px solid rgba(12,22,58,.08);padding:1rem 1.1rem}.hero-search-box .s-field:first-child{padding-left:1.1rem}.place-tabs-home,.p-tabs{width:100%;overflow:auto;justify-content:flex-start;border-radius:20px}.place-tabs-home .ptab,.p-tabs .ptab{white-space:nowrap}.district-map{grid-template-columns:1fr!important}.map-tile,.map-tile:nth-child(1){min-height:220px!important}footer .ft{grid-template-columns:1fr;border-radius:26px;padding:2rem}footer .ft-btm{border-radius:22px;align-items:flex-start}}

/* === BOLD FIX v4: hero search, working filters, premium districts, premium footer === */
html body .rv-el{opacity:0;transform:translateY(12px);transition:opacity .28s ease,transform .28s ease}
html body .rv-el.in{opacity:1;transform:none}
html body #hero{position:relative;min-height:760px;padding:0 0 128px!important;display:flex;align-items:flex-end;overflow:visible;background:#07102f}
html body #hero .h-content{padding-bottom:3.2rem!important}
html body .hero-search-panel{position:absolute!important;z-index:20;left:50%!important;right:auto!important;bottom:-58px!important;transform:translateX(-50%)!important;width:min(1120px,90vw)!important;margin:0!important;animation:heroSearchFade .32s ease both .12s}
@keyframes heroSearchFade{from{opacity:0;transform:translateX(-50%) translateY(14px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}
html body .hero-search-box{display:grid!important;grid-template-columns:1.05fr .9fr 1fr .95fr auto!important;align-items:stretch!important;width:100%!important;background:rgba(255,255,255,.94)!important;backdrop-filter:blur(20px)!important;border:1px solid rgba(255,255,255,.65)!important;border-radius:30px!important;box-shadow:0 28px 85px rgba(7,9,31,.28)!important;overflow:hidden!important;padding:.45rem!important}
html body .hero-search-box .s-field{display:flex!important;flex-direction:column!important;justify-content:center!important;min-height:78px!important;padding:1rem 1.25rem!important;background:linear-gradient(180deg,rgba(255,255,255,.75),rgba(245,246,250,.42))!important;border:0!important;border-right:1px solid rgba(12,22,58,.08)!important}
html body .hero-search-box .s-field:first-child{border-radius:24px 0 0 24px!important}
html body .hero-search-box label{font-size:.58rem!important;font-weight:900!important;letter-spacing:.18em!important;text-transform:uppercase!important;color:var(--pink)!important;margin-bottom:.28rem!important}
html body .hero-search-box input,html body .hero-search-box select{border:0!important;background:transparent!important;outline:0!important;font:800 .9rem var(--sans)!important;color:var(--navy)!important;width:100%!important}
html body .hero-search-box input::placeholder{color:#929bb3!important;font-weight:650!important}
html body .hero-search-box .s-btn{height:auto!important;min-height:78px!important;border:0!important;border-radius:24px!important;margin:0!important;padding:0 1.55rem!important;background:linear-gradient(135deg,var(--pink),#ff5b91)!important;color:#fff!important;box-shadow:0 16px 36px rgba(233,34,100,.34)!important;font-size:.76rem!important;font-weight:950!important;letter-spacing:.08em!important;text-transform:uppercase!important;white-space:nowrap!important}
html body .hero-search-box .s-btn:hover{transform:translateY(-1px)!important;box-shadow:0 20px 42px rgba(233,34,100,.44)!important}
html body #places{padding-top:8rem!important;background:linear-gradient(180deg,#fff 0%,#f7f8fc 100%)!important}
html body .place-tabs-home{display:inline-flex!important;gap:.35rem!important;background:#fff!important;border:1px solid var(--border)!important;border-radius:999px!important;padding:.35rem!important;box-shadow:0 16px 40px rgba(12,22,58,.08)!important;margin-bottom:2rem!important}
html body .place-tabs-home .ptab{border:0!important;border-radius:999px!important;padding:.72rem 1.25rem!important;background:transparent!important;color:#6b7593!important;font-weight:900!important}
html body .place-tabs-home .ptab.active{background:var(--navy)!important;color:#fff!important;box-shadow:0 8px 22px rgba(12,22,58,.18)!important}
html body .place-card{transition:opacity .22s ease,transform .22s ease,box-shadow .22s ease!important}
html body .place-card.is-hidden{opacity:0!important;transform:scale(.98)!important;pointer-events:none!important}
html body .rating-row{display:flex;align-items:center;gap:.55rem;margin:.45rem 0 .35rem!important}
html body .rating-stars{letter-spacing:.06em;font-size:.86rem;line-height:1;color:#d4dae8;white-space:nowrap}
html body .rating-stars .on{color:#f6b500!important;text-shadow:0 1px 0 rgba(0,0,0,.05)}
html body .rating-stars .off{color:#d4dae8!important}
html body .rating-number{font-size:.78rem;font-weight:950;color:var(--navy);background:#fff4c4;border:1px solid #f6d35c;border-radius:999px;padding:.12rem .52rem}
html body #districts.districts-ui{background:radial-gradient(circle at 8% 0%,rgba(233,34,100,.12),transparent 32%),linear-gradient(180deg,#f7f8fc,#fff)!important;padding-top:6.5rem!important}
html body .district-map-premium{display:grid!important;grid-template-columns:1.25fr 1fr 1fr!important;grid-auto-rows:230px!important;gap:1.05rem!important}
html body .district-card{min-height:0!important;border-radius:28px!important;background-size:cover!important;background-position:center!important;padding:1.3rem!important;color:#fff!important;position:relative!important;overflow:hidden!important;display:flex!important;flex-direction:column!important;justify-content:space-between!important;border:1px solid rgba(255,255,255,.38)!important;box-shadow:0 18px 55px rgba(12,22,58,.14)!important;isolation:isolate!important;transition:transform .22s ease,box-shadow .22s ease!important}
html body .district-card:nth-child(1){grid-row:span 2!important}
html body .district-card:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at top right,var(--accent),transparent 34%);opacity:.46;z-index:-1;transition:opacity .22s ease}
html body .district-card:after{content:"";position:absolute;inset:auto 1.1rem 1.1rem auto;width:54px;height:54px;border-radius:18px;background:rgba(255,255,255,.15);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.22)}
html body .district-card:hover{transform:translateY(-5px)!important;box-shadow:0 28px 75px rgba(12,22,58,.2)!important}
html body .district-card:hover:before{opacity:.72}
html body .district-number{align-self:flex-start;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.24);backdrop-filter:blur(10px);border-radius:999px;padding:.48rem .85rem;font-size:.66rem;font-weight:950;letter-spacing:.15em;text-transform:uppercase}
html body .district-content{max-width:92%}
html body .district-content h3{font-family:var(--serif);font-size:clamp(1.55rem,2.2vw,2.3rem)!important;line-height:1.05!important;margin-bottom:.45rem!important;color:#fff!important}
html body .district-content p{font-size:.9rem!important;color:rgba(255,255,255,.82)!important;line-height:1.55!important;margin-bottom:.8rem!important}
html body .district-cta{display:inline-flex;font-size:.72rem;font-weight:950;letter-spacing:.08em;text-transform:uppercase;color:#fff;background:rgba(233,34,100,.88);border-radius:999px;padding:.55rem .8rem}
html body .site-footer{background:linear-gradient(180deg,#fff 0%,#f4f6fb 100%)!important;padding:4rem 5vw 2.4rem!important}
html body .footer-card{max-width:1180px;margin:0 auto!important;display:grid!important;grid-template-columns:2.1fr 1fr 1fr 1fr!important;gap:3rem!important;background:linear-gradient(135deg,#07102f 0%,#0c163a 56%,#20275d 100%)!important;border-radius:36px!important;padding:3.2rem!important;box-shadow:0 32px 95px rgba(7,9,31,.26)!important;position:relative!important;overflow:hidden!important;border:1px solid rgba(255,255,255,.1)!important}
html body .footer-card:before{content:"";position:absolute;right:-130px;top:-150px;width:420px;height:420px;border-radius:50%;background:rgba(233,34,100,.18);filter:blur(10px)}
html body .footer-card:after{content:"";position:absolute;left:2rem;bottom:-90px;width:260px;height:260px;border-radius:50%;background:rgba(255,255,255,.055);filter:blur(8px)}
html body .footer-card>*{position:relative;z-index:1}
html body .footer-logo{display:inline-flex!important;margin-bottom:1.2rem!important;color:#fff!important;font-family:var(--serif);font-size:1.65rem;font-weight:900}
html body .footer-logo img.site-logo-img{max-height:58px;width:auto;object-fit:contain}
html body .footer-desc{color:rgba(255,255,255,.58)!important;line-height:1.85!important;max-width:340px!important}
html body .footer-newsletter{max-width:360px;margin-top:1.35rem;background:rgba(255,255,255,.09)!important;border:1px solid rgba(255,255,255,.12)!important;border-radius:999px!important;padding:.25rem!important;display:flex!important;overflow:hidden!important}
html body .footer-newsletter input{color:#fff!important;background:transparent!important;border:0!important;outline:0!important;padding:.82rem 1rem!important;min-width:0!important;flex:1!important}
html body .footer-newsletter button{border:0!important;border-radius:999px!important;background:var(--pink)!important;color:#fff!important;font-weight:900!important;padding:.82rem 1.15rem!important}
html body .footer-card .ft-ct{color:rgba(255,255,255,.42)!important;font-size:.65rem!important;font-weight:950!important;letter-spacing:.18em!important;text-transform:uppercase!important;margin-bottom:1rem!important}
html body .footer-card .ft-ls{list-style:none!important;padding:0!important;margin:0!important;display:flex!important;flex-direction:column!important;gap:.65rem!important}
html body .footer-card .ft-ls a{color:rgba(255,255,255,.66)!important;font-size:.88rem!important}.footer-card .ft-ls a:hover{color:#fff!important}
html body .footer-bottom{max-width:1180px;margin:1rem auto 0!important;background:#fff!important;border-radius:999px!important;padding:1rem 1.3rem!important;display:flex!important;justify-content:space-between!important;gap:1rem!important;box-shadow:0 14px 36px rgba(12,22,58,.07)!important;color:#75809a!important;font-size:.76rem!important}
html body .footer-bottom div{display:flex;gap:1.2rem}.footer-bottom a{color:#75809a!important}
@media(max-width:1050px){html body .hero-search-box{grid-template-columns:1fr 1fr!important}html body .hero-search-box .s-btn{grid-column:1/-1!important;height:58px!important;min-height:58px!important}html body .district-map-premium{grid-template-columns:1fr 1fr!important}.district-card:nth-child(1){grid-row:auto!important}.footer-card{grid-template-columns:1fr 1fr!important}}
@media(max-width:760px){html body #hero{min-height:900px!important;padding-bottom:360px!important}html body .hero-search-panel{bottom:26px!important;width:92vw!important}.hero-search-box{grid-template-columns:1fr!important;border-radius:26px!important}.hero-search-box .s-field{min-height:66px!important;border-right:0!important;border-bottom:1px solid rgba(12,22,58,.08)!important}.hero-search-box .s-field:first-child{border-radius:20px 20px 0 0!important}.hero-search-box .s-btn{min-height:56px!important}.district-map-premium{grid-template-columns:1fr!important;grid-auto-rows:220px!important}.footer-card{grid-template-columns:1fr!important;border-radius:28px!important;padding:2.1rem!important}.footer-bottom{border-radius:24px!important;align-items:flex-start!important;flex-direction:column!important}.place-tabs-home{max-width:100%;overflow:auto}}

/* === STABLE PATCH v6: clean header, fixed filters, simple districts, clean footer === */
html body #hero.hero-stable{
  position:relative!important;
  min-height:760px!important;
  height:auto!important;
  padding:118px 5vw 64px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
  background:#07102f!important;
}
html body #hero.hero-stable .h-slides, html body #hero.hero-stable .h-overlay{position:absolute!important;inset:0!important;z-index:0!important}
html body #hero.hero-stable .h-slide img{width:100%!important;height:100%!important;object-fit:cover!important}
html body #hero.hero-stable .h-overlay{background:linear-gradient(105deg,rgba(7,9,31,.88),rgba(7,9,31,.48) 55%,rgba(7,9,31,.70)),linear-gradient(to top,rgba(7,9,31,.94),rgba(7,9,31,0) 45%)!important}
html body .hero-stable-inner{position:relative!important;z-index:2!important;width:min(1120px,100%)!important;margin:0 auto!important;display:grid!important;grid-template-columns:minmax(0,1fr)!important;gap:2rem!important}
html body .hero-copy-block{max-width:720px!important}
html body #hero.hero-stable .h-content{padding:0!important;max-width:none!important;width:auto!important}
html body #hero.hero-stable .h-title{font-size:clamp(2.7rem,6.2vw,5.8rem)!important;line-height:.98!important;margin-bottom:1rem!important;animation:stableFade .35s ease both!important;transform:none!important}
html body #hero.hero-stable .h-sub{max-width:560px!important;margin-bottom:1.55rem!important;animation:stableFade .35s ease both .04s!important;transform:none!important}
html body #hero.hero-stable .h-badge, html body #hero.hero-stable .h-btns{animation:stableFade .35s ease both!important;transform:none!important}
html body #hero.hero-stable .h-counter, html body #hero.hero-stable .h-thumbs, html body #hero.hero-stable .hero-search-panel{display:none!important}
@keyframes stableFade{from{opacity:0}to{opacity:1}}

html body .hero-search-card{
  width:100%!important;
  background:rgba(255,255,255,.95)!important;
  border:1px solid rgba(255,255,255,.72)!important;
  border-radius:28px!important;
  box-shadow:0 26px 80px rgba(0,0,0,.25)!important;
  padding:.9rem!important;
  display:grid!important;
  grid-template-columns:235px 1fr!important;
  gap:.7rem!important;
  align-items:stretch!important;
  backdrop-filter:blur(16px)!important;
  animation:stableFade .35s ease both .08s!important;
}
html body .hero-search-title{background:linear-gradient(135deg,var(--navy),#162456)!important;color:#fff!important;border-radius:22px!important;padding:1.2rem 1.25rem!important;display:flex!important;flex-direction:column!important;justify-content:center!important;gap:.35rem!important}
html body .hero-search-title strong{font-family:var(--serif)!important;font-size:1.15rem!important;line-height:1.15!important;color:#fff!important}
html body .hero-search-title span{font-size:.76rem!important;line-height:1.55!important;color:rgba(255,255,255,.62)!important}
html body .hero-search-fields{display:grid!important;grid-template-columns:1.05fr .82fr 1fr .9fr auto!important;gap:.55rem!important;align-items:stretch!important}
html body .hero-search-card .s-field{background:#f7f8fc!important;border:1px solid #e9edf6!important;border-radius:18px!important;padding:.78rem .9rem!important;display:flex!important;flex-direction:column!important;justify-content:center!important;min-width:0!important}
html body .hero-search-card label{font-size:.56rem!important;letter-spacing:.16em!important;text-transform:uppercase!important;font-weight:900!important;color:var(--pink)!important;margin-bottom:.25rem!important}
html body .hero-search-card input, html body .hero-search-card select{border:0!important;background:transparent!important;outline:0!important;width:100%!important;min-width:0!important;font-size:.86rem!important;font-weight:750!important;color:var(--navy)!important}
html body .hero-search-card .s-btn{border:0!important;border-radius:18px!important;background:var(--pink)!important;color:#fff!important;padding:0 1.2rem!important;font-size:.74rem!important;letter-spacing:.08em!important;text-transform:uppercase!important;font-weight:900!important;white-space:nowrap!important;box-shadow:none!important;min-height:62px!important;transition:background .16s ease!important}
html body .hero-search-card .s-btn:hover{background:var(--pink2)!important;transform:none!important}

html body #places.places-stable{background:linear-gradient(180deg,#fff 0%,#f7f8fc 100%)!important;padding:6rem 5vw!important}
html body .place-filter-bar{display:inline-flex!important;gap:.35rem!important;align-items:center!important;padding:.38rem!important;background:#fff!important;border:1px solid var(--border)!important;border-radius:999px!important;box-shadow:0 10px 26px rgba(12,22,58,.07)!important;margin:0 0 2rem!important;max-width:100%;overflow:auto!important}
html body .place-filter-bar .ptab{border:0!important;background:transparent!important;color:#66718d!important;border-radius:999px!important;padding:.68rem 1.18rem!important;font-size:.76rem!important;font-weight:900!important;white-space:nowrap!important;transition:background .12s ease,color .12s ease!important}
html body .place-filter-bar .ptab.active{background:var(--navy)!important;color:#fff!important;box-shadow:none!important}
html body .place-grid-stable .place-card{display:block;transition:opacity .14s ease!important}
html body .place-grid-stable .place-card.is-hidden{display:none!important}
html body .rating-row{margin:.45rem 0 .35rem!important;display:flex!important;align-items:center!important;gap:.4rem!important}
html body .rating-stars{color:#f3b41b!important;letter-spacing:.05em!important;font-size:.85rem!important}
html body .rating-score{font-size:.78rem!important;font-weight:900!important;color:var(--navy)!important}

html body #districts.districts-stable{background:#f5f6fa!important;padding:6rem 5vw!important}
html body .district-stable-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:1rem!important;align-items:stretch!important}
html body .district-stable-card{position:relative!important;display:flex!important;flex-direction:column!important;min-height:245px!important;padding:1.35rem!important;border-radius:22px!important;background:#fff!important;border:1px solid #e5e9f3!important;box-shadow:0 8px 28px rgba(12,22,58,.06)!important;color:var(--navy)!important;overflow:hidden!important;transition:border-color .14s ease,box-shadow .14s ease!important;text-decoration:none!important}
html body .district-stable-card:hover{transform:none!important;border-color:color-mix(in srgb,var(--accent) 45%,#e5e9f3)!important;box-shadow:0 14px 40px rgba(12,22,58,.1)!important}
html body .district-color-line{position:absolute!important;left:0!important;top:0!important;right:0!important;height:7px!important;background:var(--accent)!important}
html body .district-top{display:flex!important;align-items:center!important;justify-content:space-between!important;margin-bottom:1.2rem!important}
html body .district-top span{background:color-mix(in srgb,var(--accent) 12%,#fff)!important;color:var(--accent)!important;border-radius:999px!important;padding:.46rem .78rem!important;font-size:.65rem!important;font-weight:950!important;letter-spacing:.14em!important;text-transform:uppercase!important}
html body .district-top b{width:34px!important;height:34px!important;border-radius:999px!important;background:#f3f5fa!important;display:flex!important;align-items:center!important;justify-content:center!important;color:var(--navy)!important}
html body .district-stable-card h3{font-family:var(--serif)!important;font-size:1.7rem!important;line-height:1.1!important;margin:0 0 .55rem!important;color:var(--navy)!important}
html body .district-stable-card p{font-size:.9rem!important;line-height:1.65!important;color:#67718c!important;margin:0 0 auto!important}
html body .district-products{margin-top:1.2rem!important;border-top:1px solid #edf0f6!important;padding-top:.85rem!important;font-size:.78rem!important;font-weight:850!important;color:var(--navy)!important}

html body .site-footer{background:#f5f6fa!important;padding:4rem 5vw 2.5rem!important}
html body .footer-card{max-width:1120px!important;margin:0 auto!important;display:grid!important;grid-template-columns:1.65fr 1fr 1fr 1fr!important;gap:2.3rem!important;background:linear-gradient(135deg,#080c25,#101b48)!important;border-radius:32px!important;padding:2.6rem!important;box-shadow:0 18px 60px rgba(7,9,31,.18)!important;border:1px solid rgba(255,255,255,.08)!important}
html body .footer-card a, html body .footer-card .ft-logo{color:#fff!important}
html body .footer-card .ft-desc{color:rgba(255,255,255,.56)!important}
html body .footer-card .ft-ct{color:rgba(255,255,255,.42)!important}
html body .footer-card .ft-ls a{color:rgba(255,255,255,.58)!important}
html body .footer-card .ft-ls a:hover{color:#fff!important}
html body .footer-newsletter{background:rgba(255,255,255,.08)!important;border:1px solid rgba(255,255,255,.12)!important;border-radius:999px!important;overflow:hidden!important}
html body .footer-newsletter button{background:var(--pink)!important;color:#fff!important;border:0!important}
html body .footer-bottom{max-width:1120px!important;margin:1rem auto 0!important;display:flex!important;justify-content:space-between!important;gap:1rem!important;background:#fff!important;border:1px solid #e8ebf3!important;border-radius:20px!important;padding:1rem 1.25rem!important;color:#7a849b!important}
html body .footer-bottom a{margin-left:1rem!important;color:#7a849b!important}

/* reduce motion globally */
html body .rv-el{transition:opacity .22s ease!important;transform:none!important}
html body .rv-el.in{opacity:1!important;transform:none!important}
html body .card-link:hover .pic img{transform:none!important}
html body .card-link:hover{transform:none!important}

@media(max-width:1050px){
  html body .hero-search-card{grid-template-columns:1fr!important}
  html body .hero-search-fields{grid-template-columns:1fr 1fr!important}
  html body .hero-search-card .s-btn{grid-column:1/-1!important;height:56px!important;min-height:56px!important}
  html body .district-stable-grid{grid-template-columns:1fr 1fr!important}
  html body .footer-card{grid-template-columns:1fr 1fr!important}
}
@media(max-width:760px){
  html body #hero.hero-stable{min-height:auto!important;padding:96px 4.5vw 42px!important;align-items:flex-start!important}
  html body #hero.hero-stable .h-title{font-size:clamp(2.35rem,12vw,3.7rem)!important}
  html body .hero-search-card{border-radius:24px!important;padding:.65rem!important}
  html body .hero-search-title{border-radius:19px!important}
  html body .hero-search-fields{grid-template-columns:1fr!important}
  html body .hero-search-card .s-field{min-height:62px!important}
  html body .district-stable-grid{grid-template-columns:1fr!important}
  html body .district-stable-card{min-height:205px!important}
  html body .footer-card{grid-template-columns:1fr!important;border-radius:26px!important;padding:2rem!important}
  html body .footer-bottom{flex-direction:column!important;align-items:flex-start!important}
  html body .footer-bottom a{margin-left:0!important;margin-right:1rem!important}
}


/* ─────────────────────────────────────────────
   BOLD FIX — Inter font, restored hero controls,
   modern inner page headers, stronger responsive UI
───────────────────────────────────────────── */
html body{font-family:var(--sans)!important;background:#f7f8fc!important}
html body button, html body input, html body select, html body textarea{font-family:var(--sans)!important}
html body h1,html body h2,html body h3,html body .h-title,html body .s-ttl,html body .card-link h3,html body .ft-logo{font-family:var(--sans)!important;letter-spacing:-.04em}

/* restored visible hero slider controls */
html body #hero.hero-stable .h-counter,
html body #hero.hero-stable .h-thumbs{display:flex!important}
html body #hero.hero-stable .h-counter{right:3.2vw!important;top:43%!important;background:rgba(7,9,31,.32)!important;border:1px solid rgba(255,255,255,.16)!important;backdrop-filter:blur(14px)!important;border-radius:999px!important;padding:.9rem .55rem!important;box-shadow:0 18px 45px rgba(0,0,0,.18)!important}
html body #hero.hero-stable .h-count-num{font-family:var(--sans)!important;font-size:1.45rem!important;font-weight:900!important;letter-spacing:-.06em!important}
html body #hero.hero-stable .h-count-bar{height:48px!important;background:rgba(255,255,255,.22)!important}
html body #hero.hero-stable .h-count-fill{height:0;background:var(--pink)!important}
html body #hero.hero-stable .h-count-total{font-weight:900;color:rgba(255,255,255,.62)!important}
html body #hero.hero-stable .h-thumbs{right:5vw!important;bottom:34px!important;z-index:20!important;padding:.48rem!important;border-radius:20px!important;background:rgba(7,9,31,.36)!important;border:1px solid rgba(255,255,255,.15)!important;backdrop-filter:blur(16px)!important;box-shadow:0 18px 50px rgba(0,0,0,.22)!important}
html body #hero.hero-stable .h-thumb{width:74px!important;height:52px!important;border-radius:14px!important;border:2px solid rgba(255,255,255,.16)!important;background:transparent!important;padding:0!important;opacity:.62!important;overflow:hidden!important}
html body #hero.hero-stable .h-thumb.on{opacity:1!important;border-color:var(--pink)!important;box-shadow:0 0 0 4px rgba(233,34,100,.16)!important}
html body #hero.hero-stable .h-thumb img{width:100%!important;height:100%!important;object-fit:cover!important}
html body #hero.hero-stable .hero-stable-inner{padding-right:9vw!important}
html body #hero.hero-stable .hero-copy-block{border:1px solid rgba(255,255,255,.10)!important;background:linear-gradient(135deg,rgba(7,9,31,.28),rgba(7,9,31,.06))!important;border-radius:32px!important;padding:1.4rem!important;backdrop-filter:blur(8px)!important}

/* modern inner headers for blog, archive, explore, product, place pages */
html body .inner-hero.modern-inner{height:auto!important;min-height:520px!important;padding:118px 5vw 54px!important;align-items:stretch!important;background:linear-gradient(180deg,#081034,#0c163a)!important;overflow:hidden!important}
html body .inner-hero.modern-inner .inner-hero-bg{position:absolute!important;inset:0!important;border-radius:0!important;overflow:hidden!important}
html body .inner-hero.modern-inner .inner-hero-bg img{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;object-fit:cover!important;filter:saturate(1.05) contrast(1.05)!important;transform:scale(1.02)!important}
html body .inner-hero.modern-inner:after{background:radial-gradient(circle at 78% 18%,rgba(233,34,100,.34),transparent 34%),linear-gradient(115deg,rgba(7,9,31,.94) 0%,rgba(12,22,58,.72) 48%,rgba(12,22,58,.42) 100%),linear-gradient(to top,rgba(247,248,252,1) 0,rgba(247,248,252,0) 28%)!important}
html body .inner-hero-shell{position:relative!important;z-index:2!important;max-width:1180px!important;margin:0 auto!important;width:100%!important;display:flex!important;align-items:flex-end!important}
html body .inner-hero-card{width:min(840px,100%)!important;background:linear-gradient(135deg,rgba(255,255,255,.13),rgba(255,255,255,.045))!important;border:1px solid rgba(255,255,255,.16)!important;border-radius:34px!important;padding:2.35rem!important;box-shadow:0 28px 90px rgba(0,0,0,.28)!important;backdrop-filter:blur(18px)!important;position:relative!important;overflow:hidden!important}
html body .inner-hero-card:before{content:"";position:absolute;left:0;top:0;right:0;height:6px;background:linear-gradient(90deg,var(--pink),#ff8aae,rgba(255,255,255,.2))}
html body .inner-hero .crumb{display:flex!important;gap:.55rem!important;align-items:center!important;width:max-content!important;max-width:100%!important;padding:.48rem .78rem!important;border-radius:999px!important;background:rgba(255,255,255,.10)!important;border:1px solid rgba(255,255,255,.12)!important;color:rgba(255,255,255,.70)!important;margin-bottom:1.25rem!important}
html body .inner-hero h1{font-family:var(--sans)!important;font-size:clamp(2.35rem,6vw,5.35rem)!important;line-height:.96!important;letter-spacing:-.07em!important;max-width:800px!important}
html body .inner-hero p{font-size:clamp(.96rem,1.35vw,1.12rem)!important;color:rgba(255,255,255,.75)!important;max-width:720px!important;line-height:1.8!important}
html body .inner-chip-row{display:flex!important;gap:.55rem!important;flex-wrap:wrap!important;margin-top:1.55rem!important}
html body .inner-chip-row span{display:inline-flex!important;border:1px solid rgba(255,255,255,.15)!important;background:rgba(255,255,255,.09)!important;color:rgba(255,255,255,.75)!important;border-radius:999px!important;padding:.55rem .85rem!important;font-size:.72rem!important;font-weight:900!important;letter-spacing:.06em!important;text-transform:uppercase!important}

/* better archive/page cards */
html body .content-pad{padding:5.6rem 5vw!important;background:#f7f8fc!important}
html body .card-link{border-radius:24px!important;border:1px solid #e7ebf4!important;box-shadow:0 12px 32px rgba(12,22,58,.06)!important;background:#fff!important}
html body .card-link .pic{height:230px!important;border-bottom:1px solid #edf0f6!important}
html body .card-link .body{padding:1.45rem!important}
html body .card-link h3{font-size:1.28rem!important;line-height:1.15!important;color:var(--navy)!important}
html body .side-box{border:1px solid #e7ebf4!important;background:linear-gradient(180deg,#fff,#f5f6fb)!important;border-radius:24px!important;box-shadow:0 14px 36px rgba(12,22,58,.06)!important}
html body .page-copy{background:#fff!important;border:1px solid #e7ebf4!important;border-radius:26px!important;padding:2.2rem!important;box-shadow:0 12px 32px rgba(12,22,58,.04)!important}
html body .page-copy h2{font-family:var(--sans)!important;letter-spacing:-.05em!important}
html body .district-map{gap:1.05rem!important}
html body .map-tile{border-radius:26px!important;min-height:220px!important;box-shadow:0 14px 38px rgba(12,22,58,.12)!important;border:1px solid rgba(255,255,255,.32)!important}

@media(max-width:900px){
  html body #hero.hero-stable .hero-stable-inner{padding-right:0!important}
  html body #hero.hero-stable .h-counter{display:none!important}
  html body #hero.hero-stable .h-thumbs{left:4.5vw!important;right:4.5vw!important;bottom:16px!important;justify-content:flex-start!important;overflow-x:auto!important;border-radius:18px!important}
  html body #hero.hero-stable .h-thumb{min-width:68px!important;width:68px!important;height:48px!important}
  html body #hero.hero-stable{padding-bottom:92px!important}
  html body .inner-hero.modern-inner{min-height:430px!important;padding:104px 4.5vw 42px!important}
  html body .inner-hero-card{border-radius:26px!important;padding:1.55rem!important}
  html body .inner-chip-row span{font-size:.64rem!important;padding:.48rem .7rem!important}
  html body .page-copy{padding:1.35rem!important;border-radius:22px!important}
}
@media(max-width:560px){
  html body #hero.hero-stable .h-thumbs{position:relative!important;left:auto!important;right:auto!important;bottom:auto!important;margin-top:1rem!important;background:rgba(255,255,255,.11)!important;width:100%!important;z-index:4!important}
  html body #hero.hero-stable .hero-copy-block{border-radius:24px!important;padding:1rem!important}
  html body .inner-hero h1{font-size:clamp(2.15rem,12vw,3.4rem)!important}
  html body .inner-hero .crumb{font-size:.62rem!important;width:auto!important}
  html body .inner-chip-row{display:none!important}
}

/* BOLD global buyer SEO upgrade */
.global-buyer-hero .h-title{max-width:980px;letter-spacing:-.055em}
.trust-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.trust-row span{border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.10);color:#fff;border-radius:999px;padding:9px 12px;font-size:12px;font-weight:800;backdrop-filter:blur(12px)}
.authority-intro{background:#fff;padding:78px 0 30px}.intro-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:48px;align-items:start}.intro-copy{font-size:20px;line-height:1.7;color:#4e5c78}.mini-proof{margin-top:24px;display:flex;gap:10px;flex-wrap:wrap;align-items:center}.mini-proof b{color:#0c163a}.mini-proof span{background:#f4f6fb;border:1px solid #e5eaf3;border-radius:999px;padding:10px 13px;font-size:13px;font-weight:800;color:#25304d}.buyer-tools{padding:64px 0;background:linear-gradient(180deg,#fff 0%,#f5f7fb 100%)}.tool-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.tool-card{display:block;text-decoration:none;background:#fff;border:1px solid #e7ebf3;border-radius:30px;padding:28px;box-shadow:0 20px 60px rgba(12,22,58,.08);color:#0c163a;transition:.25s ease}.tool-card:hover{transform:translateY(-5px);box-shadow:0 24px 70px rgba(12,22,58,.14)}.tool-card span{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:50%;background:#e92264;color:#fff;font-weight:900;margin-bottom:28px}.tool-card h3{font-size:28px;margin:0 0 10px;letter-spacing:-.04em}.tool-card p{color:#5b6680;line-height:1.65;margin:0}.mistake-section{padding:60px 0;background:#f6f8fc}.mistake-box{background:#0c163a;color:#fff;border-radius:36px;padding:42px;display:grid;grid-template-columns:1fr 1.1fr;gap:40px;align-items:center;box-shadow:0 30px 90px rgba(12,22,58,.22);position:relative;overflow:hidden}.mistake-box:after{content:"";position:absolute;right:-120px;top:-120px;width:310px;height:310px;border-radius:50%;background:rgba(233,34,100,.35);filter:blur(8px)}.mistake-box h2{font-size:44px;line-height:.98;letter-spacing:-.055em;margin:12px 0 0;position:relative;z-index:1}.mistake-list{position:relative;z-index:1}.mistake-list p{font-size:18px;line-height:1.7;color:rgba(255,255,255,.78);margin:0 0 22px}.mistake-box .s-tag{color:#fff;background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.18)}.faq-home{padding:70px 0;background:#fff}.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.faq-grid details{background:#f6f8fc;border:1px solid #e8edf5;border-radius:22px;padding:20px}.faq-grid summary{cursor:pointer;font-weight:900;color:#101936;font-size:18px}.faq-grid p{color:#52607a;line-height:1.65;margin:14px 0 0}.guide-lead{background:#fff;border:1px solid #e7ebf3;border-radius:30px;padding:28px;margin-bottom:28px;box-shadow:0 18px 50px rgba(12,22,58,.06)}.guide-lead h2{font-size:34px;line-height:1;letter-spacing:-.04em;margin:0 0 12px;color:#0c163a}.guide-lead p{font-size:18px;line-height:1.7;color:#52607a;margin:0}.inner-chip-row span:first-child{background:#e92264;color:#fff;border-color:#e92264}.content-body h3{font-size:25px;margin-top:30px;color:#0c163a}.content-body ul{padding-left:20px}.content-body li{margin:10px 0;line-height:1.6}
@media(max-width:900px){.intro-grid,.mistake-box{grid-template-columns:1fr}.tool-grid,.faq-grid{grid-template-columns:1fr}.mistake-box h2{font-size:34px}.authority-intro{padding-top:56px}.tool-card h3{font-size:24px}}
.page-copy h2{font-size:34px;letter-spacing:-.035em;color:#0c163a;margin-top:0}.page-copy h3{font-size:24px;color:#0c163a;margin-top:30px}.page-copy p,.page-copy li{font-size:17px;line-height:1.75;color:#4f5d77}.page-copy ul{padding-left:22px}.page-copy li{margin:9px 0}.side-box .meta{text-transform:uppercase;letter-spacing:.08em;font-size:12px;font-weight:900;color:#e92264}
