/* ===========================================================
   Al Noor — component & layout styles
   =========================================================== */

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247,241,232,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(42,33,27,.07);
}
.header-row {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .chip {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  overflow: hidden;
  flex: none;
}
.brand .chip img { width: 100%; height: 100%; object-fit: cover; }
.brand .wm { line-height: 1; }
.brand .wm .nm {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .02em;
  color: var(--text);
  display: block;
}
.brand .wm .sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-top: 2px;
}

.nav-desktop { display: none; align-items: center; gap: 4px; }
.nav-desktop a {
  position: relative;
  padding: 9px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-desktop a:hover { background: rgba(138,106,74,.08); }
.nav-desktop a.active { color: var(--secondary); }
.nav-desktop a.active::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 3px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.header-cta { display: none; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14.5px;
}
.header-phone svg { width: 16px; height: 16px; color: var(--secondary); }

.hamburger {
  display: inline-flex;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 11px;
}
.hamburger svg { width: 22px; height: 22px; }

/* mobile drawer */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(33,26,20,.42);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 71;
  width: min(86vw, 360px);
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  padding: 18px;
}
.drawer.open { transform: none; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.drawer-close {
  width: 44px; height: 44px; border-radius: 11px;
  border: 1px solid var(--border); background: var(--surface);
  display: grid; place-items: center;
}
.drawer-close svg { width: 20px; height: 20px; }
.drawer nav { display: flex; flex-direction: column; margin-top: 8px; }
.drawer nav a {
  padding: 15px 10px;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer nav a.active { color: var(--secondary); }
.drawer nav a .idx { font-family: var(--ff-body); font-size: 12px; color: var(--muted); font-weight: 700; }
.drawer-foot { margin-top: auto; display: grid; gap: 10px; padding-top: 18px; }
.drawer-foot .addr { font-size: 13.5px; color: var(--muted); display: flex; gap: 9px; }
.drawer-foot .addr svg { width: 16px; height: 16px; flex: none; color: var(--primary); margin-top: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(18px, 4vw, 34px); padding-bottom: clamp(40px, 6vw, 64px); }
.hero-grid { display: grid; gap: clamp(26px, 5vw, 50px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(42px, 12vw, 92px);
  letter-spacing: -.018em;
}
.hero h1 .it { font-style: italic; color: var(--primary); }
.hero h1 .grn { color: var(--secondary); }
.hero-sub {
  margin: 20px 0 0;
  font-size: clamp(16.5px, 2.3vw, 19px);
  color: var(--muted);
  max-width: 46ch;
}
.hero-loc {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: var(--text);
}
.hero-loc svg { width: 17px; height: 17px; color: var(--accent); }
.hero-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.hero-proof .since { font-size: 13.5px; color: var(--muted); }

.hero-media { position: relative; }
.hero-arch { aspect-ratio: 0.82; max-width: 520px; margin-inline: auto; }
.hero-badge {
  position: absolute;
  left: -6px; bottom: 26px;
  z-index: 3;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 12px 15px;
  display: flex; align-items: center; gap: 12px;
  max-width: 220px;
}
.hero-badge .ic { width: 38px; height: 38px; border-radius: 9px; background: var(--secondary); display: grid; place-items: center; flex: none; }
.hero-badge .ic svg { width: 20px; height: 20px; color: #fff; }
.hero-badge .t { font-weight: 800; font-size: 14px; line-height: 1.15; }
.hero-badge .s { font-size: 12px; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--secondary);
  color: #fff;
}
.trust .wrap { display: grid; grid-template-columns: 1fr; gap: 1px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
  margin-block: clamp(34px, 5vw, 54px);
}
.trust-cell {
  background: var(--secondary);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.trust-cell .k { display: flex; align-items: center; gap: 9px; font-family: var(--ff-display); font-size: clamp(26px, 5vw, 34px); font-weight: 600; }
.trust-cell .k svg { width: 22px; height: 22px; color: var(--accent); }
.trust-cell .v { font-size: 13px; color: rgba(255,255,255,.74); font-weight: 600; letter-spacing: .01em; }

/* ---------- Collections rail ---------- */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.col-card {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.col-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.col-card .ph { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.col-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.col-card:hover .ph img { transform: scale(1.05); }
.col-card .bd { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.col-card .num { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--accent); }
.col-card h3 { font-size: 24px; }
.col-card p { font-size: 14px; color: var(--muted); margin: 0; flex: 1; }
.col-card .more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--secondary); }
.col-card .more svg { width: 15px; height: 15px; }

/* collections full grid */
.col-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }

/* ---------- Feature split (real work) ---------- */
.feature-split { display: grid; gap: clamp(26px,5vw,48px); align-items: center; }
.feature-arch { aspect-ratio: 1.18; }
.feature-list { display: grid; gap: 14px; margin-top: 22px; }
.feature-item { display: flex; gap: 13px; align-items: flex-start; }
.feature-item .tick { width: 26px; height: 26px; border-radius: 50%; background: rgba(47,74,60,.1); display: grid; place-items: center; flex: none; margin-top: 1px; }
.feature-item .tick svg { width: 15px; height: 15px; color: var(--secondary); }
.feature-item .ti { font-weight: 700; font-size: 15.5px; }
.feature-item .de { font-size: 14px; color: var(--muted); }

/* ---------- Gallery ---------- */
.gal-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.gal-filter button {
  padding: 8px 15px; min-height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  font-weight: 700; font-size: 13.5px; color: var(--muted);
  transition: all .18s ease;
}
.gal-filter button:hover { border-color: var(--primary); color: var(--text); }
.gal-filter button.on { background: var(--secondary); color: #fff; border-color: var(--secondary); }

.masonry { columns: 2; column-gap: 14px; }
.masonry .gtile {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  cursor: zoom-in;
  display: block; width: 100%;
}
.masonry .gtile img { width: 100%; height: auto; transition: transform .5s ease, filter .3s ease; }
.masonry .gtile:hover img { transform: scale(1.04); }
.masonry .gtile .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(transparent, rgba(33,26,20,.72));
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .02em;
  opacity: 0; transition: opacity .25s ease;
}
.masonry .gtile:hover .cap { opacity: 1; }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20,16,12,.92);
  display: grid; place-items: center;
  padding: 18px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lb.open { opacity: 1; pointer-events: auto; }
.lb-img { max-width: min(94vw, 1000px); max-height: 84vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 600; }
.lb-btn {
  position: absolute; top: 18px; right: 18px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  color: #fff; display: grid; place-items: center;
}
.lb-btn svg { width: 22px; height: 22px; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.26);
  color: #fff; display: grid; place-items: center;
}
.lb-nav svg { width: 24px; height: 24px; }
.lb-nav.prev { left: 12px; } .lb-nav.next { right: 12px; }

/* ---------- About ---------- */
.about-hero { display: grid; gap: clamp(24px,5vw,46px); align-items: center; }
.about-arch { aspect-ratio: 0.86; max-width: 460px; }
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.stat-band .st { }
.stat-band .st .n { font-family: var(--ff-display); font-size: clamp(30px,7vw,44px); font-weight: 600; color: var(--secondary); line-height: 1; }
.stat-band .st .l { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 6px; }

.values { display: grid; grid-template-columns: 1fr; gap: 16px; }
.value {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  display: flex; gap: 15px; align-items: flex-start;
}
.value .vic { width: 44px; height: 44px; border-radius: 11px; background: rgba(199,126,79,.14); display: grid; place-items: center; flex: none; }
.value .vic svg { width: 22px; height: 22px; color: var(--accent); }
.value h3 { font-size: 21px; margin-bottom: 5px; }
.value p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; gap: clamp(24px,5vw,40px); }
.contact-detail { display: grid; gap: 14px; }
.cd-item { display: flex; gap: 13px; align-items: flex-start; padding: 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.cd-item .cic { width: 42px; height: 42px; border-radius: 10px; background: var(--secondary); display: grid; place-items: center; flex: none; }
.cd-item .cic svg { width: 20px; height: 20px; color: #fff; }
.cd-item .lbl { font-size: 11.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.cd-item .val { font-size: 16px; font-weight: 700; margin-top: 3px; }
.cd-item a.val:hover { color: var(--secondary); }
.cd-item .note { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.map-ph {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(47,74,60,.06), rgba(138,106,74,.08)),
    repeating-linear-gradient(45deg, var(--surface) 0 16px, var(--surface-2) 16px 32px);
  display: grid; place-items: center;
}
.map-ph .pin { display: grid; justify-items: center; gap: 8px; text-align: center; padding: 18px; }
.map-ph .pin .dot { width: 46px; height: 46px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--accent); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.map-ph .pin .dot svg { width: 22px; height: 22px; color: #fff; transform: rotate(45deg); }
.map-ph .pin .lab { font-weight: 800; font-size: 14px; }
.map-ph .pin .sm { font-size: 12.5px; color: var(--muted); }
.map-ph .tag { position: absolute; top: 12px; left: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 6px 11px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.form { display: grid; gap: 15px; }
.form .frow { display: grid; gap: 15px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: .01em; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body);
  font-size: 15.5px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
  color: var(--text);
  width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(47,74,60,.14);
}
.field.err input, .field.err select, .field.err textarea { border-color: #b4452f; box-shadow: 0 0 0 3px rgba(180,69,47,.12); }
.field .msg { font-size: 12px; color: #b4452f; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips .chx {
  padding: 9px 14px; min-height: 42px;
  border: 1px solid var(--border); background: var(--surface);
  border-radius: 999px; font-weight: 700; font-size: 13.5px; color: var(--muted);
  transition: all .15s ease;
}
.chips .chx.on { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.form-success {
  background: rgba(47,74,60,.08);
  border: 1px solid rgba(47,74,60,.25);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
}
.form-success .ok { width: 56px; height: 56px; border-radius: 50%; background: var(--secondary); display: grid; place-items: center; margin: 0 auto 14px; }
.form-success .ok svg { width: 28px; height: 28px; color: #fff; }
.form-success h3 { font-size: 26px; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; margin: 0 auto; max-width: 38ch; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--secondary); color: #fff; border-radius: 0; }
.cta-band .inner { padding-block: clamp(48px, 7vw, 82px); display: grid; gap: 22px; }
.cta-band h2 { color: #fff; font-size: clamp(30px,5.4vw,52px); max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 50ch; margin: 0; font-size: 16.5px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.cta-arch { position: absolute; right: -60px; top: -40px; width: 320px; height: 380px; opacity: .14; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-panel); color: rgba(255,255,255,.82); }
.footer-top { display: grid; gap: 34px; padding-block: clamp(44px, 6vw, 70px); }
.footer-brand .brand .wm .nm { color: #fff; }
.footer-brand .brand .wm .sub { color: var(--accent); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); max-width: 38ch; margin: 16px 0 0; }
.footer-col h4 { font-family: var(--ff-body); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 14px; }
.footer-col a, .footer-col .li { display: block; padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,.82); }
.footer-col a:hover { color: #fff; }
.footer-col .li { color: rgba(255,255,255,.62); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 20px; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-bottom .soc { display: inline-flex; gap: 10px; }
.footer-bottom .soc a { width: 38px; height: 38px; border-radius: 9px; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; }
.footer-bottom .soc a:hover { background: rgba(255,255,255,.1); }
.footer-bottom .soc svg { width: 18px; height: 18px; color: #fff; }

/* ---------- Floating call chip ---------- */
.call-chip {
  position: fixed;
  right: 18px; bottom: calc(var(--bottombar-h, 0px) + 18px);
  z-index: 55;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px 13px 15px;
  background: var(--accent); color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(199,126,79,.42);
  font-weight: 800; font-size: 14.5px;
  transform: translateY(120px); opacity: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s ease, background .2s;
}
.call-chip.show { transform: none; opacity: 1; }
.call-chip:hover { background: var(--accent-d); }
.call-chip svg { width: 19px; height: 19px; }
.call-chip .pulse { position: absolute; left: 15px; width: 19px; height: 19px; border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,255,255,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.45);} 70%{box-shadow:0 0 0 14px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }

/* ---------- Mobile bottom action bar ---------- */
.bottombar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 58;
  background: rgba(247,241,232,.92);
  backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}
.bottombar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 7px 4px; border-radius: 11px;
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
  color: var(--text);
  min-height: 52px; justify-content: center;
}
.bottombar a svg { width: 21px; height: 21px; }
.bottombar a.call { background: var(--secondary); color: #fff; }
.bottombar a.enq  { background: var(--accent); color: #fff; }
.bottombar a.dir  { background: var(--surface); border: 1px solid var(--border); color: var(--text); }

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .col-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .form .frow.two { grid-template-columns: 1fr 1fr; }
  .rail { grid-auto-columns: 46%; }
}
@media (min-width: 820px) {
  .trust-row { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 960px) {
  :root { --header-h: 76px; }
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
  .hamburger { display: none; }
  .bottombar { display: none; }
  .call-chip { bottom: 24px; right: 24px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-arch { margin-right: 0; }
  .feature-split { grid-template-columns: 1fr 1fr; }
  .about-hero { grid-template-columns: .9fr 1.1fr; }
  .contact-grid { grid-template-columns: 1fr 1.05fr; align-items: start; }
  .col-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 3; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .rail { display: grid; grid-auto-flow: row; grid-template-columns: repeat(3,1fr); grid-auto-columns: auto; overflow: visible; margin-inline: 0; padding-inline: 0; }
  .cta-band .inner { grid-template-columns: 1.4fr auto; align-items: center; }
  .cta-band .actions { justify-content: flex-end; margin-top: 0; }
}
@media (min-width: 960px) and (max-width: 1100px) {
  .cta-band .inner { grid-template-columns: 1fr; }
}

/* body needs bottom padding on mobile for the bar */
@media (max-width: 959px) {
  body { padding-bottom: 70px; }
}

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
