/* ============================================================
   CALL SAL — Editorial luxury (Landor structure language)
   Inset rounded plates · stop/start air · white hairline chrome
   Accents: Gina #E2001A · Jennifer #003DA5 · shared navy #0D1B3E
   NO gold · NO lime · NO demo side-rail · NO back-to-top gimmick
   ============================================================ */

:root {
  --ink: #0D1B3E;
  --ink-soft: #1a2744;
  --black: #0a0a0a;
  --paper: #f5f5f7;
  --white: #ffffff;
  --muted: rgba(13, 27, 62, 0.72);
  --hairline: rgba(13, 27, 62, 0.08);
  --hairline-strong: rgba(13, 27, 62, 0.14);
  --accent: #E2001A;
  --accent-rgb: 226, 0, 26;
  --radius: 28px;
  --radius-sm: 18px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 280ms;
  --display: "Syne", "Outfit", "Inter", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --dock-h: 64px;
  --header-h: 78px;
  --page-pad: clamp(14px, 2.4vw, 28px);
  --max: 1200px;
  --shadow-plate: 0 18px 50px rgba(13, 27, 62, 0.08);
}

[data-agent="gina"] { --accent: #E2001A; --accent-rgb: 226, 0, 26; }
[data-agent="jennifer"] { --accent: #003DA5; --accent-rgb: 0, 61, 165; }

/* ---------- Kill old MudCrafts chrome / gold / FABs / demo junk ---------- */
body.ed-skin .preloader,
body.ed-skin .paginacontainer,
body.ed-skin .progress-wrap,
body.ed-skin .mobile-action-bar,
body.ed-skin .mab-pills,
body.ed-skin .home-worth-tab,
body.ed-skin .hv-tab,
body.ed-skin .golfi-fab,
body.ed-skin .avatar-fab,
body.ed-skin .whatsapp-fab,
body.ed-skin .back-to-top,
body.ed-skin .header-area,
body.ed-skin .mobile-header,
body.ed-skin .mobile-sidebar,
body.ed-skin .footer2-section-area,
body.ed-skin .vl-cursor,
body.ed-skin .cursor2,
body.ed-skin .ed-home-wrap ~ .hero2-section-area,
body.ed-skin.ed-home > .hero2-section-area,
body.ed-skin.ed-home > section:not(.ed-home-wrap):not([class*="ed-"]),
body.ed-skin.ed-home > .m-hero,
body.ed-skin.ed-home > .gina-meet,
body.ed-skin.ed-home > .about2-section-area,
body.ed-skin.ed-home > .oh-section,
body.ed-skin.ed-home > .testimonial-area,
body.ed-skin.ed-home > .cta-section-area,
body.ed-skin.ed-home > .blog2-section-area,
body.ed-skin.ed-home > .others-section-area {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* On homepage, hide everything between chrome except our wrap — handled by JS/HTML rebuild */

/* neutralized — see v3 patch; was forcing accent text onto accent buttons */
body.ed-skin [style*="#b8860b"],
body.ed-skin [style*="#DAA520"] {
  color: #fff !important;
}

html, body.ed-skin {
  overflow-x: clip;
  max-width: 100%;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.ed-skin {
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px) + 12px);
}
@media (min-width: 992px) {
  body.ed-skin { padding-bottom: 0; }
}
body.ed-skin:not(.ed-home) { padding-top: var(--header-h); }

/* ============================================================
   PRELOADER — quiet paper fade + Golfi mark
   ============================================================ */
.ed-preloader {
  position: fixed; inset: 0; z-index: 10000;
  display: grid; place-items: center;
  background: var(--white);
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.ed-preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.ed-preloader img {
  height: 48px !important;
  width: auto !important;
  max-width: 68px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  animation: none !important;
  transform: none !important;
}
@keyframes edPulse {
  0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
}

/* ============================================================
   HEADER — white hairline (NOT transparent over photo)
   ============================================================ */
.ed-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}
.ed-header__inner {
  width: min(var(--max), calc(100% - 2 * var(--page-pad)));
  margin: 0 auto;
  height: var(--header-h);
  display: flex; align-items: center; gap: 20px;
}
.ed-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--black); flex-shrink: 0;
}
.ed-brand img { height: 30px; width: auto; display: block; }
.ed-brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ed-brand__name small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.ed-nav-pill {
  display: none;
  margin: 0 auto;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: var(--paper);
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline);
}
@media (min-width: 992px) {
  .ed-nav-pill { display: flex; }
}
.ed-nav-pill a {
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 550;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: background var(--dur) var(--ease);
  white-space: nowrap;
}
.ed-nav-pill a:hover,
.ed-nav-pill a.is-active { background: var(--white); box-shadow: 0 1px 3px rgba(13,27,62,0.06); }
.ed-nav__areas { position: relative; }
.ed-nav__dd {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-plate);
  z-index: 20;
}
.ed-nav__areas:hover .ed-nav__dd,
.ed-nav__areas:focus-within .ed-nav__dd { display: grid; gap: 2px; }
.ed-nav__dd a {
  display: block; padding: 10px 12px; border-radius: 10px; font-size: 13px;
  background: transparent; box-shadow: none;
}
.ed-header__right {
  display: none; align-items: center; gap: 10px; margin-left: auto;
}
@media (min-width: 992px) {
  .ed-header__right { display: flex; }
  .ed-brand { margin-right: 0; }
}
.ed-header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink);
  font-size: 13px; font-weight: 600;
}
.ed-header__phone .ed-ico {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
}
.ed-header__phone .ed-ico i { width: 14px; height: 14px; }
.ed-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  font-size: 13px; font-weight: 650;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
  white-space: nowrap;
}
.ed-call:hover { filter: brightness(1.05); transform: translateY(-1px); }
.ed-menu-btn {
  margin-left: auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 0; background: transparent;
  color: var(--black); cursor: pointer; padding: 0;
}
@media (min-width: 992px) { .ed-menu-btn { display: none; } }
.ed-menu-btn span {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  position: relative;
}
.ed-menu-btn span::before,
.ed-menu-btn span::after {
  content: ""; position: absolute; left: 2px; right: 2px; height: 1.5px;
  background: currentColor;
}
.ed-menu-btn span::before { top: -7px; }
.ed-menu-btn span::after { top: 7px; }

/* Drawer */
.ed-drawer {
  position: fixed; inset: 0; z-index: 950;
  pointer-events: none; visibility: hidden;
}
.ed-drawer.is-open { pointer-events: auto; visibility: visible; }
.ed-drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(13,27,62,0.4);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.ed-drawer.is-open .ed-drawer__scrim { opacity: 1; }
.ed-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--white);
  padding: 22px 20px calc(22px + env(safe-area-inset-bottom));
  transform: translateX(104%);
  transition: transform var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: 16px;
  overflow-y: auto;
}
.ed-drawer.is-open .ed-drawer__panel { transform: none; }
.ed-drawer__top { display: flex; align-items: center; justify-content: space-between; }
.ed-drawer__close {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--hairline); background: var(--paper);
  display: grid; place-items: center; cursor: pointer; color: var(--ink);
}
.ed-drawer__agent {
  display: flex; gap: 14px; align-items: center;
  padding: 14px; border-radius: var(--radius-sm);
  background: var(--paper);
}
.ed-drawer__agent img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
}
.ed-drawer__agent strong { display: block; font-size: 15px; }
.ed-drawer__agent span { font-size: 12px; color: var(--muted); }
.ed-drawer__nav { display: grid; gap: 2px; }
.ed-drawer__nav a {
  text-decoration: none; color: var(--ink);
  font-size: 18px; font-weight: 600; letter-spacing: -0.02em;
  padding: 14px 10px; border-radius: 12px;
}
.ed-drawer__cta { margin-top: auto; display: grid; gap: 10px; }
.ed-drawer__cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; border-radius: var(--radius-pill);
  text-decoration: none; font-weight: 650; font-size: 15px;
}
.ed-drawer__cta .primary { background: var(--accent); color: #fff; }
.ed-drawer__cta .ghost {
  background: var(--paper); color: var(--ink); border: 1px solid var(--hairline-strong);
}

/* ============================================================
   MOBILE DOCK — Search / Call / Consult — glass, Lucide
   ============================================================ */
.ed-dock {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 880;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 28px rgba(13, 27, 62, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
@media (min-width: 992px) { .ed-dock { display: none; } }
.ed-dock a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; min-height: 48px; border-radius: 16px;
  text-decoration: none; color: var(--ink);
  font-size: 11px; font-weight: 650;
}
.ed-dock a i { width: 20px; height: 20px; }
.ed-dock a.is-accent { background: var(--accent); color: #fff; }

/* ============================================================
   HOMEPAGE — inset plates + stop/start rhythm
   ============================================================ */
.ed-home-wrap {
  background: var(--white);
  padding-top: calc(var(--header-h) + 10px);
}

.ed-plate {
  width: min(var(--max), calc(100% - 2 * var(--page-pad)));
  margin-left: auto; margin-right: auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.ed-air { height: clamp(36px, 6vw, 72px); }

/* HERO — inset rounded plate, stacked type, circular frost CTA */
.ed-hero {
  position: relative;
  min-height: min(78svh, 760px);
  background: #dfe3ea;
  color: var(--black);
  display: grid;
  align-items: stretch;
}
.ed-hero__bg {
  position: absolute; inset: 0;
}
.ed-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  border-radius: 0;
}
.ed-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.35) 42%, rgba(255,255,255,0.05) 68%),
    linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 40%, rgba(13,27,62,0.12) 100%);
}
.ed-hero__body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(28px, 4vw, 56px);
  min-height: min(78svh, 760px);
}
.ed-hero__copy { max-width: 16ch; }
.ed-hero__line {
  display: inline-block;
  white-space: nowrap;
}
.ed-hero h1 {
  font-family: var(--display);
  font-weight: 750;
  font-size: clamp(2.55rem, 7.2vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  color: var(--black);
}
.ed-hero__lede {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.5;
  color: rgba(10,10,10,0.72);
  max-width: 34ch;
  margin: 0;
  font-weight: 450;
}
.ed-hero__foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-top: 40px;
}
.ed-hero__proof {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(10,10,10,0.55);
}
.ed-orb {
  width: clamp(118px, 18vw, 148px);
  height: clamp(118px, 18vw, 148px);
  border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  text-decoration: none;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: rgba(13, 27, 62, 0.42);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 12px 40px rgba(13,27,62,0.18);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
  flex-shrink: 0;
  padding: 12px;
}
.ed-orb:hover {
  transform: scale(1.04);
  background: rgba(var(--accent-rgb), 0.78);
}
.ed-orb span { max-width: 10ch; display: block; text-align: center; }

/* Three-up intro cards — distinct surfaces */
.ed-intro {
  width: min(var(--max), calc(100% - 2 * var(--page-pad)));
  margin: 0 auto;
  display: grid; gap: 14px;
}
@media (min-width: 860px) {
  .ed-intro { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.ed-intro__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  padding: 28px 26px 0;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.ed-intro__card h3 {
  font-family: var(--display);
  font-size: 1.55rem; font-weight: 700;
  letter-spacing: -0.03em; margin: 0 0 10px;
}
.ed-intro__card p {
  font-size: 14px; line-height: 1.5; margin: 0 0 14px;
  max-width: 28ch; opacity: 0.85;
}
.ed-intro__card .ed-more {
  font-size: 13px; font-weight: 650;
  display: inline-flex; align-items: center; gap: 6px;
}
.ed-intro__card .ed-more i { width: 16px; height: 16px; }
.ed-intro__media {
  margin-top: auto;
  height: 150px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  overflow: hidden;
}
.ed-intro__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.ed-intro__card--accent {
  background: var(--accent); color: #fff;
}
.ed-intro__card--accent .ed-more { color: #fff; }
.ed-intro__card--navy {
  background: var(--ink); color: #fff;
}
.ed-intro__card--navy .ed-more { color: #fff; }
.ed-intro__card--paper {
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--hairline);
}
.ed-intro__card--paper .ed-more { color: var(--accent); }
.ed-intro__ghost {
  position: absolute; right: 12px; top: 40%;
  font-family: var(--display); font-weight: 800;
  font-size: 7rem; letter-spacing: -0.06em;
  opacity: 0.08; pointer-events: none; line-height: 1;
}

/* Story — big rounded photo + narrative + one stat tile */
.ed-story {
  width: min(var(--max), calc(100% - 2 * var(--page-pad)));
  margin: 0 auto;
  display: grid; gap: 28px; align-items: center;
}
@media (min-width: 900px) {
  .ed-story { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}
.ed-story__photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #ddd;
}
.ed-story__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.ed-stat {
  display: inline-flex; flex-direction: column;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px 18px 14px;
  border-top: 4px solid var(--accent);
  margin-bottom: 22px;
  min-width: 120px;
}
.ed-stat strong {
  font-family: var(--display);
  font-size: 2.4rem; font-weight: 750;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--ink);
}
.ed-stat span {
  font-size: 12px; color: var(--muted); margin-top: 6px; max-width: 14ch; line-height: 1.3;
}
.ed-story__copy .ed-kicker { margin-bottom: 10px; }
.ed-story__copy h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 750; letter-spacing: -0.035em;
  line-height: 1.05; margin: 0 0 16px; max-width: 14ch;
}
.ed-story__copy p {
  font-size: 1.02rem; line-height: 1.65; color: var(--muted);
  margin: 0 0 14px; max-width: 46ch;
}
.ed-story__copy .ed-em {
  color: var(--ink); font-weight: 600;
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: rgba(var(--accent-rgb), 0.45);
}
.ed-story__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.ed-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 650;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.ed-btn:hover { transform: translateY(-1px); }
.ed-btn--accent { background: var(--accent); color: #fff; }
.ed-btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--hairline-strong);
}
.ed-phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); text-decoration: none; font-weight: 650; font-size: 15px;
}

/* Section heads */
.ed-section {
  width: min(var(--max), calc(100% - 2 * var(--page-pad)));
  margin: 0 auto;
}
.ed-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 650;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.ed-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 750; letter-spacing: -0.04em;
  line-height: 1.05; color: var(--ink); margin: 0;
  max-width: 16ch;
}
.ed-title .soft { color: rgba(13,27,62,0.35); font-weight: 650; }
.ed-section__head {
  display: flex; flex-wrap: wrap; align-items: end;
  justify-content: space-between; gap: 16px;
  margin-bottom: 28px;
}
.ed-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); font-weight: 650; font-size: 14px;
  text-decoration: none; border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 2px;
}
.ed-link:hover { color: var(--accent); border-color: var(--accent); }

/* Selected work — STACKED large landscape cards */
.ed-work-stack { display: grid; gap: 18px; }
.ed-work-card {
  display: grid;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  text-decoration: none; color: var(--ink);
  min-height: 280px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ed-work-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-plate);
}
@media (min-width: 800px) {
  .ed-work-card {
    grid-template-columns: 1fr 1.15fr;
    min-height: 340px;
  }
  .ed-work-card:nth-child(even) { grid-template-columns: 1.15fr 1fr; }
  .ed-work-card:nth-child(even) .ed-work-card__copy { order: 2; }
  .ed-work-card:nth-child(even) .ed-work-card__media { order: 1; }
}
.ed-work-card__copy {
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 12px;
}
.ed-work-card__copy h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 750; letter-spacing: -0.035em;
  line-height: 1.05; margin: 0;
}
.ed-work-card__copy p {
  margin: 0; font-size: 15px; line-height: 1.5; color: var(--muted); max-width: 36ch;
}
.ed-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.ed-chips span {
  font-size: 12px; font-weight: 550;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
}
.ed-work-card__media {
  position: relative;
  min-height: 200px;
  background: #cfd4dc;
  overflow: hidden;
}
.ed-work-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Buy / Sell / Rent as three huge type tiles — still Landor-ish cards */
.ed-tiles {
  display: grid; gap: 14px;
}
@media (min-width: 640px) {
  .ed-tiles { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .ed-tiles { grid-template-columns: repeat(4, 1fr); }
}
.ed-tile {
  border-radius: var(--radius);
  padding: 28px 26px;
  min-height: 210px;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ed-tile:hover { transform: translateY(-2px); border-color: rgba(var(--accent-rgb),0.4); }
.ed-tile h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 750; letter-spacing: -0.04em; margin: 0 0 10px;
}
.ed-tile p { margin: 0; font-size: 14px; color: var(--muted); max-width: 24ch; }
.ed-tile__go {
  margin-top: auto; padding-top: 24px;
  font-size: 13px; font-weight: 650; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}

/* Areas */
.ed-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 700px) { .ed-areas { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .ed-areas { grid-template-columns: repeat(5, 1fr); } }
.ed-areas a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--hairline);
  text-decoration: none; color: var(--ink);
  font-size: 14px; font-weight: 600;
}
.ed-areas a:hover { border-color: var(--accent); color: var(--accent); }
.ed-areas a i { width: 16px; height: 16px; opacity: 0.4; }

/* Reviews — large quote field */
.ed-reviews { display: grid; gap: 14px; }
@media (min-width: 800px) { .ed-reviews { grid-template-columns: 1fr 1fr; } }
.ed-review {
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px 26px;
}
.ed-review__stars { color: var(--accent); letter-spacing: 2px; font-size: 12px; margin-bottom: 14px; }
.ed-review blockquote {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.4; color: var(--ink);
}
.ed-review figcaption { font-size: 13px; color: var(--muted); font-weight: 550; }

/* FAQ */
.ed-faq {
  display: grid; gap: 24px;
}
@media (min-width: 900px) {
  .ed-faq { grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
}
.ed-faq__panel {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 10px;
  display: grid; gap: 8px;
}
.ed-faq details {
  background: var(--white);
  border-radius: 16px;
  padding: 4px 4px;
}
.ed-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 16px;
  font-weight: 650; font-size: 15px; color: var(--ink);
  min-height: 52px;
}
.ed-faq summary::-webkit-details-marker { display: none; }
.ed-faq__ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.ed-faq__ico i { width: 16px; height: 16px; }
.ed-faq details[open] .ed-faq__ico { background: var(--ink); }
.ed-faq details p {
  margin: 0; padding: 0 16px 18px;
  font-size: 14px; line-height: 1.6; color: var(--muted);
}

/* Journal — editorial rows */
.ed-journal {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 10px;
  display: grid; gap: 8px;
}
.ed-journal__row {
  display: grid; gap: 16px; align-items: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-decoration: none; color: var(--ink);
}
@media (min-width: 700px) {
  .ed-journal__row { grid-template-columns: 140px 1fr auto; }
}
.ed-journal__row img {
  width: 100%; height: 96px; object-fit: cover; border-radius: 14px; background: #e8e8ed;
}
.ed-journal__row strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.25; margin-bottom: 4px;
}
.ed-journal__row span { font-size: 12px; color: var(--muted); font-weight: 550; }
.ed-journal__go {
  justify-self: start;
  font-size: 13px; font-weight: 650;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
}
@media (max-width: 699px) {
  .ed-journal__go { display: none; }
}

/* Contact CTA plate */
.ed-cta {
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: clamp(36px, 5vw, 64px);
  display: grid; gap: 28px;
}
@media (min-width: 800px) {
  .ed-cta { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.ed-cta h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 750; letter-spacing: -0.04em;
  margin: 0 0 12px; max-width: 14ch;
}
.ed-cta p { margin: 0 0 20px; color: rgba(255,255,255,0.68); max-width: 36ch; }
.ed-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ed-cta__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: grid; gap: 10px;
}
.ed-cta__card a {
  color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 550; min-height: 44px;
}
.ed-cta__card i { width: 18px; height: 18px; opacity: 0.7; }

/* ============================================================
   FOOTER — quiet, dark, rounded top plate feel
   ============================================================ */
.ed-footer {
  margin-top: 0;
  padding: 0 var(--page-pad) 40px;
}
.ed-footer__plate {
  width: min(var(--max), 100%);
  margin: 0 auto;
  background: var(--ink);
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius);
  padding: 48px clamp(22px, 4vw, 48px) 28px;
}
.ed-footer__grid {
  display: grid; gap: 32px;
}
@media (min-width: 768px) {
  .ed-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
}
.ed-footer__brand img { height: 32px; width: auto; margin-bottom: 14px; }
.ed-footer__brand p {
  font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.65);
  max-width: 34ch; margin: 0 0 16px;
}
.ed-footer__logos { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.ed-footer__logos img { height: 26px; width: auto; opacity: 0.85; }
.ed-footer h4 {
  font-size: 11px; font-weight: 650; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin: 0 0 14px;
}
.ed-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.ed-footer a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 14px; }
.ed-footer a:hover { color: #fff; }
.ed-footer__contact a { display: flex; align-items: center; gap: 10px; min-height: 44px; }
.ed-footer__bottom {
  margin-top: 28px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.ed-footer__bottom a { color: inherit; text-decoration: underline; text-underline-offset: 3px; font-size: 12px; }

/* ============================================================
   INNER PAGES
   ============================================================ */
body.ed-skin:not(.ed-home) .hero2-section-area,
body.ed-skin:not(.ed-home) .breadcrumb-area,
body.ed-skin:not(.ed-home) .inner-page-banner {
  background: var(--paper) !important;
  border-bottom: 1px solid var(--hairline);
}
body.ed-skin h1, body.ed-skin h2, body.ed-skin h3 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  color: var(--ink);
}
body.ed-skin .btn, body.ed-skin button[type="submit"],
body.ed-skin .theme-btn1, body.ed-skin .theme-btn2,
body.ed-skin input[type="submit"] {
  border-radius: var(--radius-pill) !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  font-weight: 650 !important;
  min-height: 44px;
  box-shadow: none !important;
}
body.ed-skin input, body.ed-skin select, body.ed-skin textarea {
  font-size: 16px !important;
  border-radius: 12px !important;
  border-color: var(--hairline-strong) !important;
  min-height: 48px;
}
body.ed-skin textarea { min-height: 120px; }
body.ed-skin .property-box,
body.ed-skin .blog-box,
body.ed-skin .single-blog {
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--hairline) !important;
  overflow: hidden; background: var(--white);
  box-shadow: none !important;
}
body.ed-skin .mab-pill svg { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* City-guide gold class remaps */
body.ed-skin .hl-stat.gold { background: var(--accent) !important; }
body.ed-skin .hl-stat.gold .hl-lab { color: #fff !important; }
body.ed-skin .hl-btn[style*="accent"],
body.ed-skin a.hl-btn { }
body.ed-skin .scst-band-cta { background: var(--accent) !important; color: #fff !important; }

/* orb fit */
.ed-orb { width: clamp(132px, 20vw, 156px); height: clamp(132px, 20vw, 156px); font-size: 15px; }
.ed-hero__foot { padding-bottom: 8px; }


/* ===== MOBILE / CHROME HARD KILL (v2) ===== */
body.ed-skin .home-worth-tab,
body.ed-skin .hv-tab,
body.ed-skin [class*="home-worth"],
body.ed-skin [class*="HomeWorth"],
body.ed-skin .golfi-fab,
body.ed-skin .avatar-fab,
body.ed-skin .whatsapp-fab,
body.ed-skin .chat-fab,
body.ed-skin .floating-btn,
body.ed-skin .fixed-agent,
body.ed-skin .agent-float,
body.ed-skin .m-menu-agent,
body.ed-skin .mobile-sidebar,
body.ed-skin .mobile-header,
body.ed-skin .header-area,
body.ed-skin .dots-menu,
body.ed-skin .mobile-nav-icon,
body.ed-skin .back-to-top,
body.ed-skin .progress-wrap,
body.ed-skin .paginacontainer,
body.ed-skin .vl-cursor,
body.ed-skin .cursor2,
body.ed-skin .mobile-action-bar,
body.ed-skin .mab-pills,
body.ed-skin a[href*="home-worth"],
body.ed-skin .side-tab,
body.ed-skin .vertical-tab {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  z-index: -1 !important;
}

/* Mobile type + tap targets */
@media (max-width: 991.98px) {
  body.ed-skin {
    padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px) + 16px) !important;
  }
  body.ed-skin .ed-header__inner {
    height: 64px;
  }
  body.ed-skin .ed-brand__name {
    font-size: 14px;
    max-width: 42vw;
  }
  body.ed-skin .ed-brand img { height: 26px; }
  body.ed-skin .ed-hero {
    min-height: min(72svh, 640px);
    border-radius: 22px;
  }
  body.ed-skin .ed-hero__body {
    min-height: min(72svh, 640px);
    padding: 22px 18px 20px;
  }
  body.ed-skin .ed-hero h1 {
    font-size: clamp(2.1rem, 11vw, 2.85rem);
    line-height: 0.96;
    max-width: none;
    letter-spacing: -0.04em;

  }
  body.ed-skin .ed-hero__lede {
    font-size: 0.92rem;
    max-width: 28ch;
    line-height: 1.45;
  }
  body.ed-skin .ed-hero__proof {
    font-size: 10px;
    letter-spacing: 0.04em;
    max-width: 18ch;
  }
  body.ed-skin .ed-orb {
    width: 112px;
    height: 112px;
    font-size: 13px;
  }
  body.ed-skin .ed-intro__card {
    min-height: 300px;
    padding: 22px 20px 0;
    border-radius: 22px;
  }
  body.ed-skin .ed-intro__card h3 { font-size: 1.35rem; }
  body.ed-skin .ed-story__photo { border-radius: 22px; }
  body.ed-skin .ed-work-card,
  body.ed-skin .ed-tile,
  body.ed-skin .ed-review,
  body.ed-skin .ed-cta,
  body.ed-skin .ed-journal,
  body.ed-skin .ed-faq__panel,
  body.ed-skin .ed-footer__plate {
    border-radius: 22px;
  }
  body.ed-skin .ed-title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    max-width: 12ch;
  }
  body.ed-skin .ed-section { padding-left: 0; padding-right: 0; }
  body.ed-skin .ed-air { height: 28px; }
  body.ed-skin .ed-dock {
    left: 10px; right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
  body.ed-skin .ed-dock a {
    min-height: 52px;
    font-size: 11px;
  }
  /* Inner page: prevent old template overflow under dock */
  body.ed-skin:not(.ed-home) {
    padding-top: 64px;
  }
  body.ed-skin:not(.ed-home) .container,
  body.ed-skin:not(.ed-home) .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body.ed-skin h1 { font-size: clamp(1.7rem, 8vw, 2.2rem) !important; }
  body.ed-skin img { max-width: 100%; height: auto; }
  body.ed-skin table { display: block; overflow-x: auto; }
}

/* Kill orphan single-word wraps on big titles where possible */
.ed-hero h1, .ed-title, .ed-work-card__copy h3, .ed-tile h3 {
  text-wrap: balance;
}


/* ===== LEGACY FIXED CHROME ANNIHILATION ===== */
body.ed-skin .body-overlay,
body.ed-skin .header-search-form-wrapper,
body.ed-skin .search-popup,
body.ed-skin .search-form-wrapper {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}


body.ed-skin #ga-hv-tab,
body.ed-skin #ga-launcher,
body.ed-skin #ga-root,
body.ed-skin #ga-bubble,
body.ed-skin #ga-exit,
body.ed-skin [id^="ga-"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


body.ed-skin #gj-callnow,
body.ed-skin [id^="gj-"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ===== Admin / Dashboard editorial dress ===== */
body.ed-skin.ed-crm #ed-crm-banner { letter-spacing: 0.02em; }
body.ed-skin .login-screen,
body.ed-skin .gate-screen,
body.ed-skin #gate,
body.ed-skin .admin-shell,
body.ed-skin .sidebar,
body.ed-skin .nav {
  font-family: var(--sans) !important;
}
body.ed-skin .admin-shell .sidebar,
body.ed-skin #sidebar {
  background: var(--ink) !important;
  border-right: 1px solid rgba(255,255,255,0.08);
}
body.ed-skin .admin-shell .nav button,
body.ed-skin .nav button,
body.ed-skin .nav a {
  border-radius: 12px !important;
}
body.ed-skin .admin-shell .content,
body.ed-skin #content {
  background: var(--paper) !important;
}
body.ed-skin .card,
body.ed-skin .panel,
body.ed-skin .stat-card,
body.ed-skin .table-wrap {
  border-radius: 18px !important;
  border: 1px solid var(--hairline) !important;
  box-shadow: none !important;
  background: var(--white) !important;
}
body.ed-skin .dashboard-section-area {
  background: var(--paper) !important;
}
body.ed-skin #gate-form input,
body.ed-skin .login-screen input {
  min-height: 48px !important;
  font-size: 16px !important;
  border-radius: 12px !important;
}
@media (max-width: 991.98px) {
  body.ed-skin .admin-shell,
  body.ed-skin #app {
    padding-bottom: calc(var(--dock-h) + 24px);
  }
}



/* ============================================================
   MOBILE ALIGNMENT RETHINK + INNER CHROME KILL (v3 — phone-first)
   Salman reviews only on phone. Center moments. Kill navy voids.
   ============================================================ */

/* --- Fix: style*=var(--accent) was painting RED TEXT ON RED BTNS --- */
body.ed-skin [style*="var(--accent)"] {
  /* do NOT force color:accent — that made CTAs invisible */
  border-color: rgba(var(--accent-rgb), 0.35) !important;
  background-image: none !important;
}
body.ed-skin a[style*="background:var(--accent)"],
body.ed-skin a[style*="background: var(--accent)"],
body.ed-skin a[style*="background:var(--accent);"],
body.ed-skin .author-img a[href*="google"],
body.ed-skin a[href*="google"][style*="accent"] {
  color: #fff !important;
  background: var(--accent) !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 18px !important;
  text-align: center !important;
}

/* Intro / accent plates: headings must inherit plate color, not ink */
body.ed-skin .ed-intro__card h3,
body.ed-skin .ed-intro__card p,
body.ed-skin .ed-intro__card--accent h3,
body.ed-skin .ed-intro__card--navy h3 {
  color: inherit !important;
}
body.ed-skin .ed-cta h2,
body.ed-skin .ed-cta p,
body.ed-skin .ed-footer h4,
body.ed-skin .ed-footer p,
body.ed-skin .ed-footer a {
  color: inherit;
}
body.ed-skin .ed-cta h2 { color: #fff !important; }
body.ed-skin .ed-footer__plate { color: rgba(255,255,255,0.88); }
body.ed-skin .ed-footer h4 { color: #fff !important; }

/* Kill gold leftovers on captions / jm-about */
body.ed-skin .jm-about-cap span,
body.ed-skin .jm-about-cap,
body.ed-skin .author-img h3,
body.ed-skin [style*="#b8860b"],
body.ed-skin [style*="#DAA520"],
body.ed-skin [style*="#C19B65"],
body.ed-skin [style*="#c19b65"],
body.ed-skin [style*="#FFD700"] {
  color: #fff !important;
}
body.ed-skin .jm-about-cap strong { color: #fff !important; }
body.ed-skin .jm-about-cap span { color: rgba(255,255,255,0.85) !important; }

/* Theme buttons: keep label + kill double-arrow chrome that collapses to empty */
body.ed-skin .theme-btn1,
body.ed-skin .theme-btn2,
body.ed-skin .theme-btn3,
body.ed-skin .golfi-cta-btn {
  color: #fff !important;
  background: var(--accent) !important;
  border: 0 !important;
  border-radius: var(--radius-pill) !important;
  min-height: 48px !important;
  padding: 12px 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-weight: 650 !important;
  text-align: center !important;
  box-shadow: none !important;
  overflow: visible !important;
  white-space: normal !important;
}
body.ed-skin .theme-btn1 .arrow1,
body.ed-skin .theme-btn1 .arrow2,
body.ed-skin .theme-btn2 .arrow1,
body.ed-skin .theme-btn2 .arrow2,
body.ed-skin .theme-btn3 .arrow1,
body.ed-skin .theme-btn3 .arrow2,
body.ed-skin .golfi-cta-btn .arrow1,
body.ed-skin .golfi-cta-btn .arrow2 {
  display: none !important;
}

/* ========== INNER PAGE HERO — was empty navy void ========== */
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar,
body.ed-skin:not(.ed-home) .hero2-section-area,
body.ed-skin:not(.ed-home) .breadcrumb-area,
body.ed-skin:not(.ed-home) .inner-page-banner {
  position: relative !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 12px var(--page-pad) 8px !important;
  padding: 28px 22px !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: var(--paper) !important;
  border: 1px solid var(--hairline) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar::before,
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar::after,
body.ed-skin:not(.ed-home) .hero2-section-area::before,
body.ed-skin:not(.ed-home) .hero2-section-area::after {
  display: none !important;
  content: none !important;
}
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar > .hero-img1,
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar img.hero-img1,
body.ed-skin:not(.ed-home) .hero2-section-area > img {
  display: none !important;
}
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar .container,
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar .row,
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar [class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar h1,
body.ed-skin:not(.ed-home) .hero2-section-area h1,
body.ed-skin:not(.ed-home) .breadcrumb-area h1 {
  font-family: var(--display) !important;
  font-size: clamp(1.85rem, 8vw, 2.4rem) !important;
  font-weight: 750 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
  color: var(--ink) !important;
  text-align: center !important;
  margin: 0 auto !important;
  max-width: 16ch;
  text-wrap: balance;
}

/* Inner heroes are paper plates — never white-on-white */
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar,
body.ed-skin:not(.ed-home) .hero-inner-section-area,
body.ed-skin:not(.ed-home) .hero2-section-area,
body.ed-skin:not(.ed-home) .breadcrumb-area,
body.ed-skin:not(.ed-home) .inner-page-banner,
body.ed-skin:not(.ed-home) .hero-header-area {
  color: var(--ink) !important;
}
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar :is(p, .bm-hero-subtext, span, a, li, small, h2, h3, h4, h5),
body.ed-skin:not(.ed-home) .hero-inner-section-area :is(p, .bm-hero-subtext, span, a, li, small),
body.ed-skin:not(.ed-home) .hero2-section-area :is(p, .bm-hero-subtext, span, a, li, small),
body.ed-skin:not(.ed-home) .breadcrumb-area :is(p, span, a, li, small),
body.ed-skin:not(.ed-home) .inner-page-banner :is(p, span, a, li, small),
body.ed-skin:not(.ed-home) .hero-header-area :is(p, span, a, li, small),
body.ed-skin .bm-hero-subtext {
  color: rgba(13, 27, 62, 0.78) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar h1,
body.ed-skin:not(.ed-home) .hero-inner-section-area h1,
body.ed-skin:not(.ed-home) .hero2-section-area h1,
body.ed-skin:not(.ed-home) .breadcrumb-area h1,
body.ed-skin:not(.ed-home) .hero-header-area h1 {
  color: var(--ink) !important;
}
body.ed-skin .heading1 p,
body.ed-skin .about-heading p,
body.ed-skin .bg-lead,
body.ed-skin .project-heading p {
  color: rgba(13, 27, 62, 0.78) !important;
}
body.ed-skin input::placeholder,
body.ed-skin textarea::placeholder {
  color: rgba(13, 27, 62, 0.55) !important;
  opacity: 1 !important;
}

/* ========== PHONE TYPOGRAPHY RHYTHM (≤991) ========== */
@media (max-width: 991.98px) {
  :root {
    --header-h: 64px;
    --page-pad: 14px;
    --radius: 22px;
    --radius-sm: 16px;
  }

  /* HERO — center the editorial moment */
  body.ed-skin .ed-hero {
    min-height: min(70svh, 620px) !important;
    border-radius: 22px !important;
  }
  body.ed-skin .ed-hero__body {
    min-height: min(70svh, 620px) !important;
    padding: 26px 20px 22px !important;
    justify-content: flex-end !important;
    text-align: center !important;
    align-items: center !important;
  }
  body.ed-skin .ed-hero__copy {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto;
    text-align: center !important;
  }
  body.ed-skin .ed-hero h1 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: none !important;
    font-size: clamp(1.95rem, 8.6vw, 2.75rem) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.035em !important;
  }
  body.ed-skin .ed-hero__lede {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 32ch !important;
    font-size: 0.95rem !important;
  }
  body.ed-skin .ed-hero__veil {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.15) 38%, rgba(255,255,255,0.82) 72%, rgba(255,255,255,0.94) 100%) !important;
  }
  body.ed-skin .ed-hero__foot {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    width: 100%;
    margin-top: 28px !important;
    text-align: center !important;
  }
  body.ed-skin .ed-hero__proof {
    text-align: center !important;
    max-width: 28ch !important;
    margin: 0 auto;
    order: 2;
    font-size: 11px !important;
    letter-spacing: 0.05em;
  }
  body.ed-skin .ed-orb {
    order: 1;
    width: 108px !important;
    height: 108px !important;
    font-size: 13px !important;
  }

  /* Section labels + display titles — center on gallery/editorial */
  body.ed-skin .ed-kicker {
    display: block !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.ed-skin .ed-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 14ch !important;
    font-size: clamp(1.85rem, 8.5vw, 2.35rem) !important;
  }
  body.ed-skin .ed-section__head {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
    margin-bottom: 22px !important;
  }
  body.ed-skin .ed-section__head .ed-link {
    margin: 0 auto;
  }

  /* Stats — center */
  body.ed-skin .ed-stat {
    text-align: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    min-width: 140px;
  }
  body.ed-skin .ed-stat span {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
  }

  /* Story — editorial article: photo full, copy left for reading */
  body.ed-skin .ed-story__copy {
    text-align: left;
  }
  body.ed-skin .ed-story__copy .ed-kicker,
  body.ed-skin .ed-story__copy h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.ed-skin .ed-story__copy h2 { max-width: 12ch; }
  body.ed-skin .ed-story__copy p {
    margin-left: auto;
    margin-right: auto;
    max-width: 38ch;
  }
  body.ed-skin .ed-story__actions {
    justify-content: center !important;
    text-align: center;
  }
  body.ed-skin .ed-agent__creds {
    justify-items: start;
    max-width: 36ch;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Intro cards — keep left inside plate; center the plate stack air */
  body.ed-skin .ed-intro { gap: 12px; }
  body.ed-skin .ed-intro__card {
    min-height: 280px !important;
    padding: 22px 20px 0 !important;
  }
  body.ed-skin .ed-intro__card h3 { font-size: 1.4rem !important; }
  body.ed-skin .ed-intro__media { height: 132px; }

  /* Work / tiles / reviews / journal — center heads, left body */
  body.ed-skin .ed-work-card__copy {
    text-align: left;
    padding: 22px 20px !important;
  }
  body.ed-skin .ed-work-card__copy h3 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem) !important;
    text-wrap: balance;
  }
  body.ed-skin .ed-tile {
    text-align: center !important;
    align-items: center !important;
    min-height: 180px;
    padding: 24px 20px;
  }
  body.ed-skin .ed-tile h3 { text-align: center; }
  body.ed-skin .ed-tile p { text-align: center; max-width: 28ch; }
  body.ed-skin .ed-review {
    text-align: center !important;
  }
  body.ed-skin .ed-review blockquote {
    text-align: center !important;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
  }
  body.ed-skin .ed-areas {
    justify-content: center;
  }
  body.ed-skin .ed-areas a { text-align: center; }

  /* CTAs — center */
  body.ed-skin .ed-cta {
    text-align: center !important;
    padding: 28px 22px !important;
  }
  body.ed-skin .ed-cta h2 {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.7rem, 7vw, 2.1rem) !important;
  }
  body.ed-skin .ed-cta p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.ed-skin .ed-cta__actions {
    justify-content: center !important;
  }
  body.ed-skin .ed-cta__card {
    text-align: left;
    margin-top: 16px;
  }
  body.ed-skin .ed-faq {
    text-align: center;
  }
  body.ed-skin .ed-faq > div:first-child {
    text-align: center;
  }
  body.ed-skin .ed-faq__panel {
    text-align: left;
    margin-top: 18px;
  }

  /* Footer — stacked, centered rhythm */
  body.ed-skin .ed-footer__plate {
    padding: 28px 20px 22px !important;
    text-align: center !important;
  }
  body.ed-skin .ed-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center !important;
  }
  body.ed-skin .ed-footer__brand img {
    margin-left: auto;
    margin-right: auto;
  }
  body.ed-skin .ed-footer__brand p {
    margin-left: auto;
    margin-right: auto;
    max-width: 36ch;
  }
  body.ed-skin .ed-footer__logos {
    justify-content: center;
  }
  body.ed-skin .ed-footer h4 {
    text-align: center !important;
  }
  body.ed-skin .ed-footer ul {
    justify-items: center;
  }
  body.ed-skin .ed-footer__contact a {
    justify-content: center;
  }
  body.ed-skin .ed-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  /* Consistent section air — no random voids */
  body.ed-skin .ed-air { height: 22px !important; }
  body.ed-skin .ed-home-wrap { padding-top: calc(var(--header-h) + 8px) !important; }
  body.ed-skin .space16,
  body.ed-skin .space18,
  body.ed-skin .space20,
  body.ed-skin .space24,
  body.ed-skin .space32 { height: 14px !important; margin: 0 !important; }

  /* Header denser */
  body.ed-skin .ed-brand__name {
    font-size: 13px !important;
    max-width: 38vw;
  }
  body.ed-skin .ed-brand__name small { font-size: 9px; }

  /* Dock — glass, safe, no overlap */
  body.ed-skin .ed-dock {
    left: 10px !important;
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 920 !important;
  }
  body.ed-skin {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body.ed-skin .ed-cta__actions,
  body.ed-skin .golfi-cta-area,
  body.ed-skin .theme-btn1,
  body.ed-skin .theme-btn3 {
    margin-bottom: 4px;
  }

  /* About / inner MudCrafts about stack */
  body.ed-skin .about-images-area {
    display: grid !important;
    gap: 12px !important;
    position: relative !important;
  }
  body.ed-skin .about-images-area .img1,
  body.ed-skin .about-images-area .img2 {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }
  body.ed-skin .about-images-area .img1 img,
  body.ed-skin .about-images-area .img2 img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/5;
    object-fit: cover !important;
    border-radius: 18px !important;
  }
  body.ed-skin .about-images-area .img1 { display: none !important; } /* kill cramped overlap on phone */
  body.ed-skin .author-img {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin: 8px 0 0 !important;
    padding: 16px !important;
    border-radius: 16px !important;
    background: var(--paper) !important;
    box-shadow: none !important;
    text-align: center !important;
  }
  body.ed-skin .author-img h3 {
    color: var(--ink) !important;
    font-size: 1rem !important;
    margin: 0 0 10px !important;
  }
  body.ed-skin .jm-about-cap {
    background: linear-gradient(180deg, transparent, rgba(13,27,62,0.72)) !important;
    padding: 16px !important;
    text-align: left !important;
  }
  body.ed-skin .about-heading,
  body.ed-skin .heading1 {
    text-align: center !important;
  }
  body.ed-skin .about-heading h5,
  body.ed-skin .heading1 h5 {
    display: inline-block !important;
    text-align: center !important;
    color: var(--accent) !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    background: rgba(var(--accent-rgb), 0.08);
    padding: 8px 12px;
    border-radius: 999px;
  }
  body.ed-skin .about-heading h2,
  body.ed-skin .heading1 h2,
  body.ed-skin .text-anime-style-3 {
    text-align: center !important;
    font-size: clamp(1.65rem, 7.5vw, 2.15rem) !important;
    max-width: 16ch;
    margin-left: auto !important;
    margin-right: auto !important;
    text-wrap: balance;
  }
  body.ed-skin .about-heading p,
  body.ed-skin .heading1 p {
    text-align: left !important;
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
  body.ed-skin .price-listarea ul {
    text-align: left;
    max-width: 40ch;
    margin: 0 auto;
  }
  body.ed-skin .counter-boxes {
    margin-top: 8px;
  }
  body.ed-skin .counter-boxarea {
    text-align: center !important;
    background: var(--paper);
    border-radius: 16px;
    padding: 14px 10px;
    border: 1px solid var(--hairline);
  }
  body.ed-skin .counter-boxarea h2 {
    color: var(--ink) !important;
    font-family: var(--display) !important;
  }

  /* Listings / property cards as plates */
  body.ed-skin .property-box,
  body.ed-skin .single-property,
  body.ed-skin .blog-box,
  body.ed-skin .listing-card,
  body.ed-skin .pg-card {
    border-radius: 18px !important;
    overflow: hidden !important;
    border: 1px solid var(--hairline) !important;
    box-shadow: none !important;
    background: #fff !important;
  }
  body.ed-skin .property-box img,
  body.ed-skin .listing-card img {
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  body.ed-skin .others-section-area2,
  body.ed-skin .property-sidebar-section-area {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.ed-skin .show-form,
  body.ed-skin .nice-select,
  body.ed-skin select {
    border-radius: 12px !important;
    min-height: 48px !important;
    font-size: 16px !important;
  }

  /* Prices/dates right-align when useful */
  body.ed-skin .property-box .price,
  body.ed-skin .listing-card .price,
  body.ed-skin [class*="price"]:not(button):not(a.ed-btn) {
    text-align: right;
  }

  /* Hide leftover MudCrafts bars that peek under ed-header */
  body.ed-skin .header-area,
  body.ed-skin .homepage1-body .header-area,
  body.ed-skin .homepage2-body .header-area,
  body.ed-skin .header-area.sticky,
  body.ed-skin .header-area.homepage2,
  body.ed-skin .mobile-header,
  body.ed-skin .mobile-sidebar,
  body.ed-skin .dots-menu,
  body.ed-skin #navbar-example2 {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Journal rows */
  body.ed-skin .ed-journal__row {
    border-radius: 16px;
  }

  /* Pull-quote style for short emphasis */
  body.ed-skin .ed-em {
    display: block;
    text-align: center !important;
    max-width: 28ch;
    margin: 14px auto !important;
  }
}

/* Desktop stays sharp — do not center hero on wide */
@media (min-width: 992px) {
  body.ed-skin .ed-hero__body { text-align: left; align-items: stretch; }
  body.ed-skin .ed-hero__copy { text-align: left; }
  body.ed-skin .ed-hero h1 { text-align: left; margin-left: 0; }
  body.ed-skin .ed-section__head { align-items: end; text-align: left; }
  body.ed-skin .ed-kicker { display: inline-block; text-align: left; }
  body.ed-skin .ed-title { text-align: left; margin-left: 0; }
}

/* ========== CRM / DASHBOARD / ADMIN premium dress ========== */
body.ed-skin.ed-crm {
  background: var(--paper) !important;
}
body.ed-skin.ed-crm .ed-dock { display: none !important; }
body.ed-skin.ed-crm {
  padding-bottom: 0 !important;
}
body.ed-skin.ed-crm #ed-crm-banner {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: var(--ink) !important;
  color: #fff !important;
  padding: 11px 16px !important;
  font: 600 12px/1.4 var(--sans) !important;
  text-align: center !important;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--accent);
}
body.ed-skin.ed-crm #ed-crm-banner strong {
  color: #fff;
  font-weight: 750;
}
body.ed-skin.ed-crm .ed-header {
  top: 40px; /* sit under live banner */
}
@media (max-width: 991.98px) {
  body.ed-skin.ed-crm { padding-top: 0 !important; }
  body.ed-skin.ed-crm .ed-header { top: 0; }
  body.ed-skin.ed-crm #ed-crm-banner { top: var(--header-h); }
}
body.ed-skin.ed-crm .hero-inner-section-area-sidebar {
  display: none !important; /* dashboard doesn't need About-style void */
}
body.ed-skin.ed-crm .gate-screen,
body.ed-skin.ed-crm #gate,
body.ed-skin.ed-crm .login-screen,
body.ed-skin.ed-crm .dash-gate,
body.ed-skin.ed-crm .auth-card {
  max-width: 420px;
  margin: 48px auto !important;
  padding: 28px 24px !important;
  background: #fff !important;
  border-radius: 22px !important;
  border: 1px solid var(--hairline) !important;
  box-shadow: var(--shadow-plate) !important;
  text-align: center !important;
}
body.ed-skin.ed-crm .gate-screen h1,
body.ed-skin.ed-crm .login-screen h1,
body.ed-skin.ed-crm #gate h1 {
  font-family: var(--display) !important;
  letter-spacing: -0.03em;
}
body.ed-skin.ed-crm input[type="password"],
body.ed-skin.ed-crm input[type="email"],
body.ed-skin.ed-crm input[type="text"] {
  border-radius: 12px !important;
  min-height: 48px !important;
  font-size: 16px !important;
  text-align: left !important;
}
body.ed-skin.ed-crm .card,
body.ed-skin.ed-crm .panel,
body.ed-skin.ed-crm .stat-card,
body.ed-skin.ed-crm .metric-card,
body.ed-skin.ed-crm .dash-card,
body.ed-skin.ed-crm .table-wrap,
body.ed-skin.ed-crm .admin-card {
  border-radius: 18px !important;
  border: 1px solid var(--hairline) !important;
  background: #fff !important;
  box-shadow: none !important;
}
body.ed-skin.ed-crm .admin-shell .sidebar,
body.ed-skin.ed-crm #sidebar,
body.ed-skin.ed-crm aside.sidebar {
  background: var(--ink) !important;
  border-right: 1px solid rgba(255,255,255,0.08) !important;
}
body.ed-skin.ed-crm .admin-shell .nav button.is-active,
body.ed-skin.ed-crm .nav button.active,
body.ed-skin.ed-crm .sidebar button.active {
  background: rgba(var(--accent-rgb), 0.18) !important;
  color: #fff !important;
  border-radius: 12px !important;
}
body.ed-skin.ed-crm table {
  font-size: 13px;
}
body.ed-skin.ed-crm .btn-primary,
body.ed-skin.ed-crm button.primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
}

/* Empty overlays / search popups stay dead */
body.ed-skin .body-overlay,
body.ed-skin .header-search-form-wrapper,
body.ed-skin .search-popup,
body.ed-skin .search-form-wrapper,
body.ed-skin .offcanvas-overlay {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}



/* ===== v3.1 follow-ups from 390 audit ===== */
body.ed-skin .ed-drawer[aria-hidden="true"],
body.ed-skin .ed-drawer:not(.is-open) {
  visibility: hidden !important;
}
body.ed-skin .ed-drawer:not(.is-open) .ed-drawer__panel,
body.ed-skin .ed-drawer:not(.is-open) a,
body.ed-skin .ed-drawer:not(.is-open) button {
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 991.98px) {
  /* About image stack — FORCE single plate, no overlap, no gold */
  body.ed-skin .about1-section-area .about-images-area,
  body.ed-skin .about-images-area {
    display: block !important;
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 0 16px !important;
  }
  body.ed-skin .about-images-area .img1,
  body.ed-skin .about-images-area .img2,
  body.ed-skin .about-images-area .img1.image-anime,
  body.ed-skin .about-images-area .img2.image-anime {
    position: relative !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 12px !important;
    float: none !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }
  body.ed-skin .about-images-area .img1 { display: none !important; }
  body.ed-skin .about-images-area .img2 img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    display: block !important;
  }
  body.ed-skin .jm-about-cap {
    position: absolute !important;
    left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: linear-gradient(180deg, transparent 0%, rgba(13,27,62,0.78) 55%) !important;
    padding: 28px 18px 16px !important;
    text-align: left !important;
  }
  body.ed-skin .jm-about-cap strong {
    display: block;
    color: #fff !important;
    font-size: 1.15rem !important;
    font-family: var(--display) !important;
  }
  body.ed-skin .jm-about-cap span,
  body.ed-skin .jm-about-cap * {
    color: rgba(255,255,255,0.9) !important;
  }
  body.ed-skin .author-img.aniamtion-key-1,
  body.ed-skin .author-img {
    position: static !important;
    top: auto !important; left: auto !important; right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    margin: 0 0 18px !important;
    padding: 18px 16px !important;
    border-radius: 18px !important;
    background: var(--paper) !important;
    box-shadow: none !important;
    border: 1px solid var(--hairline) !important;
    text-align: center !important;
  }
  body.ed-skin .author-img h3 {
    color: var(--ink) !important;
    font-size: 1.05rem !important;
  }
  body.ed-skin .author-img a {
    color: #fff !important;
    background: var(--accent) !important;
  }

  /* Listings/search hero — compact centered title plate */
  body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar {
    padding: 20px 18px !important;
    margin: 10px var(--page-pad) 6px !important;
  }
  body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar h1 {
    font-size: clamp(1.45rem, 6.8vw, 1.85rem) !important;
    line-height: 1.12 !important;
    max-width: 18ch !important;
    letter-spacing: -0.03em !important;
  }
  body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar > .hero-img1 {
    position: absolute !important;
    width: 0 !important; height: 0 !important;
    opacity: 0 !important; pointer-events: none !important;
    display: none !important;
  }

  /* Intro cards — taller media, less empty color field */
  body.ed-skin .ed-intro__card {
    min-height: 0 !important;
    padding: 20px 18px 0 !important;
  }
  body.ed-skin .ed-intro__media {
    height: 168px !important;
    margin-top: 18px !important;
  }
  body.ed-skin .ed-intro__ghost { font-size: 5.5rem !important; opacity: 0.07; }

  /* Ensure listings content clears dock */
  body.ed-skin .property-sidebar-section-area,
  body.ed-skin .others-section-area2,
  body.ed-skin .about1-section-area,
  body.ed-skin .contact-page-section-area {
    padding-bottom: 24px !important;
  }
}

/* Gold kill across brand leftovers */
body.ed-skin .jm-about-cap span,
body.ed-skin [class*="cap"] span {
  color: rgba(255,255,255,0.9) !important;
}

/* ABOUT FLATTEN NUCLEAR */
@media (max-width: 991.98px) {
  body.ed-skin.homepage2-body .about1-section-area .about-images-area > .img1,
  body.ed-skin .about1-section-area .about-images-area .img1.image-anime.reveal,
  body.ed-skin .about1-section-area .about-images-area .img1 {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  body.ed-skin.homepage2-body .about1-section-area .about-images-area > .img2,
  body.ed-skin .about1-section-area .about-images-area .img2.image-anime.reveal,
  body.ed-skin .about1-section-area .about-images-area .img2 {
    position: relative !important;
    top: 0 !important; left: 0 !important; right: auto !important; bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 0 0 12px !important;
  }
  body.ed-skin .about1-section-area .jm-about-cap span {
    color: rgba(255,255,255,0.92) !important;
  }
}

/* Hero phone: fuller photo under centered type */
@media (max-width: 991.98px) {
  body.ed-skin .ed-hero__veil {
    background:
      linear-gradient(180deg, rgba(13,27,62,0.08) 0%, rgba(13,27,62,0.05) 35%, rgba(255,255,255,0.55) 62%, rgba(255,255,255,0.92) 100%) !important;
  }
  body.ed-skin .ed-orb {
    background: rgba(13, 27, 62, 0.55) !important;
    border: 1px solid rgba(255,255,255,0.45) !important;
  }
  body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar {
    padding: 16px 16px !important;
  }
  body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar h1 {
    font-size: clamp(1.35rem, 6.2vw, 1.7rem) !important;
  }
}



/* ============================================================
   P0 AUDIT FIXES — hero CTA, dock clearance, CRM gate, rhythm
   ============================================================ */

/* Hero — full photo plate, center lockup, solid CTAs (no orphan orb) */
.ed-hero {
  min-height: min(72svh, 700px);
  display: grid;
  align-items: end;
}
.ed-hero__bg img {
  object-fit: cover;
  object-position: center 40%;
}
.ed-hero__veil {
  background:
    linear-gradient(180deg, rgba(13,27,62,0.15) 0%, rgba(13,27,62,0.2) 40%, rgba(13,27,62,0.55) 100%) !important;
}
.ed-hero__body {
  justify-content: flex-end !important;
  min-height: min(72svh, 700px);
}
.ed-hero__copy { max-width: 40ch; }
.ed-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 12px;
}
.ed-hero h1 { color: #fff !important; }
.ed-hero__lede { color: rgba(255,255,255,0.88) !important; max-width: 36ch; }
.ed-hero__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 22px 0 14px;
}
.ed-hero__cta { min-height: 48px; padding: 0 22px; }
.ed-hero__cta-ghost {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
}
.ed-hero__proof {
  font-size: 12px !important;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78) !important;
  max-width: none !important;
}
.ed-orb { display: none !important; } /* retired floating circle */

@media (max-width: 991.98px) {
  .ed-hero, .ed-hero__body { min-height: min(78svh, 680px) !important; }
  .ed-hero__body {
    text-align: center !important;
    align-items: center !important;
    padding: 28px 20px 88px !important; /* clear dock */
  }
  .ed-hero__copy {
    width: 100%;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 auto;
  }
  .ed-hero h1 {
    text-align: center !important;
    margin: 0 auto 12px !important;
    max-width: none !important;
    font-size: clamp(1.95rem, 8.6vw, 2.75rem) !important;
    letter-spacing: -0.035em !important;
    color: #fff !important;
  }
  .ed-hero__lede {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 32ch !important;
  }
  .ed-hero__actions {
    justify-content: center !important;
    width: 100%;
  }
  .ed-hero__proof {
    text-align: center !important;
    margin: 0 auto;
    font-size: 11px !important;
    line-height: 1.4;
  }
  .ed-hero__eyebrow { text-align: center; width: 100%; }
}

@media (min-width: 992px) {
  .ed-hero__body { text-align: left; align-items: stretch; padding-bottom: 48px; }
  .ed-hero__copy { text-align: left; }
  .ed-hero h1 { text-align: left; margin-left: 0; }
  .ed-hero__actions { justify-content: flex-start; }
}

/* DOCK — never cover copy: real reserved space + slightly slimmer bar */
:root { --dock-h: 58px; }
body.ed-skin {
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px) + 28px) !important;
}
@media (min-width: 992px) {
  body.ed-skin { padding-bottom: 0 !important; }
}
body.ed-skin .ed-dock {
  padding: 6px !important;
  border-radius: 18px !important;
  bottom: calc(8px + env(safe-area-inset-bottom, 0px)) !important;
}
body.ed-skin .ed-dock a { min-height: 46px !important; font-size: 10px !important; gap: 2px; }
body.ed-skin .ed-home-wrap,
body.ed-skin .ed-footer,
body.ed-skin .ed-section,
body.ed-skin .ed-cta,
body.ed-skin .about1-section-area,
body.ed-skin .contact-page-section-area,
body.ed-skin .property-sidebar-section-area,
body.ed-skin .others-section-area2 {
  scroll-margin-top: calc(var(--header-h) + 12px);
}
body.ed-skin .ed-footer {
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px) + 20px) !important;
}
body.ed-skin .ed-cta {
  margin-bottom: 8px;
  padding-bottom: 28px !important;
}
body.ed-skin .ed-reviews,
body.ed-skin .ed-faq__panel,
body.ed-skin .ed-journal {
  padding-bottom: 8px;
}

/* Kill giant dead gaps */
@media (max-width: 991.98px) {
  body.ed-skin .ed-air { height: 16px !important; }
  body.ed-skin .ed-section__head { margin-bottom: 16px !important; }
  body.ed-skin .ed-work-stack { gap: 12px; }
  body.ed-skin .ed-intro { gap: 10px; }
  body.ed-skin .ed-title { font-size: clamp(1.55rem, 7vw, 2rem) !important; max-width: 14ch !important; }
  body.ed-skin .ed-title .soft { color: rgba(13,27,62,0.45) !important; }
}

/* Cards — slightly more hierarchy */
body.ed-skin .ed-work-card:first-child {
  background: var(--ink);
  color: #fff;
}
body.ed-skin .ed-work-card:first-child h3,
body.ed-skin .ed-work-card:first-child p { color: #fff; }
body.ed-skin .ed-work-card:first-child p { color: rgba(255,255,255,0.72); }
body.ed-skin .ed-work-card:first-child .ed-chips span {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
body.ed-skin .ed-tile h3 {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-family: var(--display);
}

/* Reviews — named captions */
body.ed-skin .ed-review figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink);
}
body.ed-skin .ed-review figcaption strong {
  font-weight: 700;
  font-size: 14px;
}
body.ed-skin .ed-review figcaption span {
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 991.98px) {
  body.ed-skin .ed-review {
    text-align: center !important;
    padding: 22px 18px !important;
  }
  body.ed-skin .ed-review figcaption { align-items: center; }
  body.ed-skin .ed-link {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    display: inline-flex;
  }
  body.ed-skin .ed-section__head .ed-link {
    align-self: center;
    margin: 4px auto 0;
  }
  body.ed-skin .ed-section[aria-label="Journal"] .ed-link {
    margin-left: auto;
    margin-right: 0;
    align-self: flex-end;
  }
}

/* Journal denser on phone */
@media (max-width: 991.98px) {
  body.ed-skin .ed-journal__row img {
    width: 72px !important;
    height: 72px !important;
    object-fit: cover;
    border-radius: 12px;
  }
}

/* City honesty note */
.ed-city-note {
  text-align: center;
  margin: 10px auto 0;
  max-width: 36ch;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}

/* ========== CRM GATE / LOGIN — premium & visible ========== */
body.ed-skin.ed-crm .ed-dock { display: none !important; }
body.ed-skin.ed-crm { padding-bottom: 0 !important; }
body.ed-skin.ed-crm .ed-header { display: none !important; } /* gate owns the chrome */
body.ed-skin.ed-crm .ed-drawer { display: none !important; }
body.ed-skin.ed-crm .ed-preloader { display: none !important; }

#golfi-gate {
  visibility: visible !important;
  display: flex !important;
  z-index: 2147483000 !important;
}
#golfi-gate .gg-card {
  border-radius: 22px !important;
  border: 1px solid rgba(13,27,62,0.08);
}
#golfi-gate .gg-sub { color: var(--accent) !important; }
#golfi-gate #gg-btn {
  background: var(--accent) !important;
  border-radius: 999px !important;
  min-height: 48px;
  font-weight: 700 !important;
}
#golfi-gate #gg-pw {
  font-size: 16px !important;
  min-height: 48px;
  border-radius: 12px !important;
}

body.ed-skin.ed-crm .login-screen,
body.ed-skin.ed-crm #login-screen {
  position: relative !important;
  z-index: 50 !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100svh !important;
  padding: 28px 16px !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
}
body.ed-skin.ed-crm .login-card,
body.ed-skin.ed-crm #login-form.login-card {
  width: min(400px, 100%);
  background: #fff !important;
  border-radius: 22px !important;
  border: 1px solid var(--hairline) !important;
  box-shadow: var(--shadow-plate) !important;
  padding: 28px 22px !important;
  text-align: center !important;
  visibility: visible !important;
  color: var(--ink) !important;
}
body.ed-skin.ed-crm .login-title,
body.ed-skin.ed-crm .login-card h1 {
  font-family: var(--display) !important;
  color: var(--ink) !important;
  font-size: 1.6rem !important;
  visibility: visible !important;
}
body.ed-skin.ed-crm .login-sub,
body.ed-skin.ed-crm .login-field span {
  color: var(--muted) !important;
  visibility: visible !important;
}
body.ed-skin.ed-crm .login-field {
  text-align: left !important;
  display: grid !important;
  gap: 6px;
  margin: 12px 0;
}
body.ed-skin.ed-crm .login-screen input,
body.ed-skin.ed-crm #login-screen input {
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--ink) !important;
  background: #fff !important;
  font-size: 16px !important;
  min-height: 48px !important;
  border-radius: 12px !important;
  border: 1px solid var(--hairline-strong) !important;
  width: 100%;
  padding: 12px 14px;
}
body.ed-skin.ed-crm .login-screen button[type="submit"],
body.ed-skin.ed-crm #login-form button {
  background: var(--accent) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  min-height: 48px !important;
  width: 100%;
  font-weight: 700 !important;
  margin-top: 8px;
  visibility: visible !important;
}

/* Body visibility is managed by golfi-gate.js; do not force-visible here. */


/* P0.1 — force dark hero veil (override earlier light mobile gradients) */
@media (max-width: 991.98px) {
  body.ed-skin .ed-hero__veil,
  body.ed-skin.ed-home .ed-hero__veil {
    background:
      linear-gradient(180deg,
        rgba(13,27,62,0.25) 0%,
        rgba(13,27,62,0.35) 35%,
        rgba(13,27,62,0.72) 68%,
        rgba(13,27,62,0.88) 100%) !important;
  }
  body.ed-skin .ed-hero h1,
  body.ed-skin .ed-hero__lede,
  body.ed-skin .ed-hero__eyebrow,
  body.ed-skin .ed-hero__proof {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  }
  body.ed-skin .ed-hero__cta-ghost {
    background: rgba(255,255,255,0.16) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.55) !important;
  }
  /* Extra clearance so dock never eats copy */
  body.ed-skin {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body.ed-skin .about1-section-area,
  body.ed-skin .about-heading,
  body.ed-skin .ed-reviews,
  body.ed-skin .ed-faq,
  body.ed-skin .ed-journal,
  body.ed-skin .ed-cta,
  body.ed-skin .ed-footer__plate {
    padding-bottom: 28px !important;
  }
}

/* Premium listing photo fallback + dock clearance bump (audit v2) */
.golfi-photo-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(145deg, rgba(13,27,62,.92), rgba(13,27,62,.78)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px);
  color: #fff;
  z-index: 2;
}
.golfi-photo-fallback__inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 16px;
}
.golfi-photo-fallback__inner span {
  font: 700 12px/1.3 Inter, system-ui, sans-serif;
  letter-spacing: .14em; text-transform: uppercase; opacity: .85;
}
.golfi-photo-fallback--sm {
  position: relative; inset: auto; min-height: 64px; border-radius: 10px;
}
.img1.has-photo-fallback, .listing.has-photo-fallback { position: relative; min-height: 180px; background: #0D1B3E; }
.listing.has-photo-fallback { min-height: 72px; }
@media (max-width: 991.98px) {
  :root { --dock-h: 72px; }
  body.ed-skin {
    padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px) + 36px) !important;
  }
  body.ed-skin.ed-home .ed-home-wrap,
  body.ed-skin:not(.ed-home) main,
  body.ed-skin:not(.ed-home) .ed-page,
  body.ed-skin .property-mapgrid-area,
  body.ed-skin .homes-for-sale-section,
  body.ed-skin .hl-listings,
  body.ed-skin .pagination-area,
  body.ed-skin footer.ed-footer {
    padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px) + 28px) !important;
  }
  body.ed-skin .ed-dock {
    bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body.ed-skin.ed-crm { padding-bottom: 0 !important; }
}

@media (max-width: 991.98px) {
  .ed-hero__line {
    white-space: nowrap;
    display: inline-block;
    font-size: 0.92em;
    letter-spacing: -0.03em;
  }
}

/* Liquid glass dock — mild frost, still see-through (phone-first) */
body.ed-skin .ed-dock {
  background: rgba(255, 255, 255, 0.42) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  box-shadow:
    0 8px 28px rgba(13, 27, 62, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
}
body.ed-skin .ed-dock a:not(.is-accent) {
  color: #0D1B3E !important;
  font-weight: 650;
}
body.ed-skin .ed-dock a.is-accent {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 40%, transparent);
}

/* In-page listing video player — big close, never about:blank / YouTube tab */
.ed-player {
  position: fixed;
  inset: 0;
  z-index: 2147483640;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 16px 24px;
  background: rgba(8, 14, 28, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.ed-player.is-on { display: flex; }
.ed-player__close {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top, 0px));
  right: calc(12px + env(safe-area-inset-right, 0px));
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 56px;
  min-height: 56px;
  padding: 6px 12px 8px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0D1B3E;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  cursor: pointer;
  font: inherit;
}
.ed-player__close span {
  font-size: 32px;
  line-height: 0.85;
  font-weight: 500;
}
.ed-player__close small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ed-player__close:hover,
.ed-player__close:focus-visible {
  background: var(--accent, #E2001A);
  color: #fff;
  outline: none;
}
.ed-player__stage {
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  max-height: min(78vh, 720px);
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.ed-player__stage iframe,
.ed-player__stage video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
@media (max-width: 640px) {
  .ed-player { padding: 84px 8px 16px; }
  .ed-player__close { min-width: 64px; min-height: 64px; }
  .ed-player__stage { max-height: 56vh; border-radius: 12px; }
}

/* Readability last-wins: light plates never carry white type */
body.ed-skin .bm-hero-subtext,
body.ed-skin:not(.ed-home) .hero-inner-section-area-sidebar p,
body.ed-skin:not(.ed-home) .hero-inner-section-area p,
body.ed-skin:not(.ed-home) .hero-header-area p {
  color: rgba(13, 27, 62, 0.78) !important;
  opacity: 1 !important;
}

/* Carousel dots: no theme ring around the active pill */
body.ed-skin .owl-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  height: auto !important;
  margin-top: 14px !important;
}
body.ed-skin .owl-dots .owl-dot,
body.ed-skin .owl-dots button {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}
body.ed-skin .owl-dots .owl-dot::before,
body.ed-skin .owl-dots .owl-dot::after,
body.ed-skin .owl-dots button::before,
body.ed-skin .owl-dots button::after,
body.ed-skin .owl-dots .owl-dot.active::after,
body.ed-skin .owl-dots button.active::after,
body.ed-skin .property-details-slider .owl-dots button::after,
body.ed-skin .property-details-slider .owl-dots button.active::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
body.ed-skin .owl-dots .owl-dot span,
body.ed-skin .owl-dots button span {
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #c7cfdb !important;
  box-shadow: none !important;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease !important;
}
body.ed-skin .owl-dots .owl-dot.active span,
body.ed-skin .owl-dots button.active span {
  width: 20px !important;
  border-radius: 999px !important;
  background: var(--accent) !important;
}

/* Amenities: check sits inside the chip, no leftover halo, no MLS duplicates visually */
body.ed-skin .golfi-amen-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
}
body.ed-skin .list-box,
body.ed-skin .golfi-amen {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  min-height: 44px !important;
  border-radius: 14px !important;
  background: #f5f7fb !important;
  border: 1px solid rgba(13, 27, 62, 0.08) !important;
  box-shadow: none !important;
  overflow: hidden !important;
  transform: none !important;
}
body.ed-skin .list-box:hover,
body.ed-skin .golfi-amen:hover {
  background: #eef2f8 !important;
  transform: none !important;
}
body.ed-skin .list-box .icon,
body.ed-skin .golfi-amen .icon {
  position: relative !important;
  z-index: 1 !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(13, 27, 62, 0.08) !important;
  color: var(--ink) !important;
  overflow: hidden !important;
}
body.ed-skin .list-box .icon::before,
body.ed-skin .list-box .icon::after,
body.ed-skin .golfi-amen .icon::before,
body.ed-skin .golfi-amen .icon::after {
  content: none !important;
  display: none !important;
}
body.ed-skin .list-box .icon svg,
body.ed-skin .golfi-amen .icon svg {
  width: 12px !important;
  height: 12px !important;
  display: block !important;
  stroke: currentColor !important;
  filter: none !important;
}
body.ed-skin .list-box:hover .icon svg,
body.ed-skin .golfi-amen:hover .icon svg {
  filter: none !important;
  stroke: currentColor !important;
}
body.ed-skin .list-box .text,
body.ed-skin .list-box .text p,
body.ed-skin .golfi-amen .text,
body.ed-skin .golfi-amen .text p {
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere !important;
}
@media (max-width: 420px) {
  body.ed-skin .golfi-amen-grid { gap: 6px !important; }
  body.ed-skin .list-box,
  body.ed-skin .golfi-amen { padding: 9px 10px !important; min-height: 42px !important; }
  body.ed-skin .list-box .text p,
  body.ed-skin .golfi-amen .text p { font-size: 12.5px !important; }
}

body.ed-skin .golfi-sv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px 20px;
  border-radius: 16px;
  background: #f5f7fb;
  border: 1px solid rgba(13, 27, 62, 0.08);
}
body.ed-skin .golfi-sv p {
  margin: 0;
  color: rgba(13, 27, 62, 0.78) !important;
  font-size: 14.5px;
  line-height: 1.45;
  max-width: 42ch;
}
body.ed-skin .golfi-sv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none !important;
}

/* Location card: pin-zoom map, no repeated Minto rows, no leftover grey slab */
body.ed-skin .map-section,
body.ed-skin .golfi-map {
  background: #f5f7fb !important;
  border: 1px solid rgba(13, 27, 62, 0.08) !important;
  border-radius: 16px !important;
  padding: 10px !important;
  overflow: hidden !important;
}
body.ed-skin .map-section iframe,
body.ed-skin .golfi-map iframe {
  width: 100% !important;
  height: 220px !important;
  border: 0 !important;
  border-radius: 12px !important;
  display: block !important;
}
body.ed-skin .golfi-map-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 10px 8px;
}
body.ed-skin .golfi-map-meta strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}
body.ed-skin .golfi-map-meta span {
  color: rgba(13, 27, 62, 0.72);
  font-size: 13.5px;
  line-height: 1.35;
}
body.ed-skin .golfi-map-meta a {
  margin-top: 8px;
  color: var(--accent) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
}
body.ed-skin .map-section .list ul { display: none !important; }
body.ed-skin .golfi-fact {
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 6px 16px !important;
  padding: 11px 0 !important;
}
body.ed-skin .golfi-fact-v {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  text-align: right !important;
}
@media (max-width: 991.98px) {
  body.ed-skin .properties-details1-area .space60 { height: 18px !important; }
  body.ed-skin .properties-details1-area .space32 { height: 8px !important; }
  body.ed-skin .properties-details1-area .space40 { height: 14px !important; }
  body.ed-skin .map-section iframe,
  body.ed-skin .golfi-map iframe { height: 200px !important; }
}

/* Never show theme dummy cards (Diamond Apartment / 23 beds) */
body.ed-skin .property-mapgrid-area .property-boxarea:not([data-listing-id]),
body.ed-skin .property-mapgrid-area .property-boxarea2:not([data-listing-id]),
body.ed-skin .property-feature-slider .property-boxarea:not([data-listing-id]) {
  display: none !important;
}

/* Dummy theme media: hidden until the listing binder proves a real tour / pano */
body.ed-skin .vide-images:not([data-golfi-media]) { display: none !important; }
body.ed-skin .rotate-images:not(.is-live) { display: none !important; }
body.ed-skin .comments-boxarea,
body.ed-skin .download-box { display: none !important; }

/* Shared design tokens — city pages, inner heroes, CTAs follow --accent
   (Jennifer #003DA5, Gina #E2001A) instead of leftover theme red. */
body.ed-skin .city-stat { border-top-color: var(--accent) !important; }
body.ed-skin .city-faq summary::after { color: var(--accent) !important; }
body.ed-skin .city-nearby a:hover {
  background: var(--ink) !important;
  color: #fff !important;
  border-color: var(--ink) !important;
}
body.ed-skin .theme-btn,
body.ed-skin .theme-btn1,
body.ed-skin .theme-btn3,
body.ed-skin .golfi-cta-btn {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}
body.ed-skin .heading1 h5,
body.ed-skin .about-heading h5 { color: var(--accent) !important; }

/* Inner-page paper heroes: never white type on cream */
body.ed-skin .hero-inner-section-area-sidebar h1,
body.ed-skin .hero-inner-section-area h1,
body.ed-skin .bm-hero-subtext,
body.ed-skin .inner-hero p,
body.ed-skin .heading1 h1,
body.ed-skin .heading1 h2 {
  color: var(--ink) !important;
}
body.ed-skin .bm-hero-subtext,
body.ed-skin .heading1 p,
body.ed-skin .city-prose p {
  color: rgba(13, 27, 62, 0.78) !important;
}

/* Featured homepage: hide unhydrated dummy cards */
body.ed-skin .property-feature-slider .property-boxarea:not([data-listing-id]) {
  visibility: hidden;
}

/* Work-card photos must fill the grey well (mobile snap + desktop split) */
body.ed-skin .ed-work-card__media {
  position: relative !important;
  overflow: hidden !important;
  background: #cfd4dc;
}
body.ed-skin .ed-work-card__media img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
@media (max-width: 799.98px) {
  body.ed-skin .ed-work-stack .ed-work-card {
    display: flex !important;
    flex-direction: column !important;
  }
  body.ed-skin .ed-work-stack .ed-work-card__copy {
    flex: 0 0 auto;
  }
  body.ed-skin .ed-work-stack .ed-work-card__media {
    flex: 1 0 auto;
    height: 220px !important;
    min-height: 220px !important;
  }
}

/* Trust bar: keep Golfi + REALTOR® reversed white, but show the real RE/MAX balloon */
body.ed-skin .ed-trust__logos img[src*="remax-balloon"] {
  filter: none !important;
  opacity: 1 !important;
  max-height: 52px !important;
}

/* Bed / bath / sqft glyphs on listing cards (homepage featured templates omit them) */
body.ed-skin .property-boxarea .content-area ul li a img,
body.ed-skin .property-boxarea2 .content-area ul li a img,
body.ed-skin .ed-feat-card .content-area ul li a img {
  width: 16px !important;
  height: 16px !important;
  display: inline-block !important;
  vertical-align: -3px;
  margin-right: 6px;
  object-fit: contain;
  flex: 0 0 16px;
}

/* Areas: even 2-up on phones so Haldimand doesn't look stranded */
@media (max-width: 699.98px) {
  body.ed-skin .ed-areas {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
}

/* Preloader ring follows agent accent */
body.ed-skin .ed-preloader__ring {
  border-top-color: var(--accent) !important;
}

/* ===== Home-worth tab + sheet (replaces the old Golfi side tab) ===== */
#ed-hv-tab {
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 400000;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 14px 0 0 14px;
  padding: 18px 11px;
  font: 700 12px/1.2 Inter, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: -6px 8px 24px rgba(0,0,0,.18);
}
#ed-hv-tab:hover { filter: brightness(1.08); }
#ed-hv-sheet {
  position: fixed;
  inset: 0;
  z-index: 400010;
  background: rgba(8, 12, 24, 0.45);
  display: grid;
  justify-items: end;
  align-items: stretch;
}
#ed-hv-sheet[hidden] { display: none !important; }
.ed-hv-sheet__panel {
  width: min(420px, 100%);
  background: #fff;
  color: var(--ink);
  padding: 28px 24px 22px;
  overflow: auto;
  box-shadow: -16px 0 40px rgba(0,0,0,.18);
  position: relative;
}
.ed-hv-sheet__x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.ed-hv-sheet__kicker {
  margin: 0 0 6px;
  font: 700 11px/1 Inter, system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ed-hv-sheet__panel h2 {
  margin: 0 0 8px;
  font: 700 26px/1.15 Inter, system-ui, sans-serif;
  letter-spacing: -0.03em;
}
.ed-hv-sheet__lede {
  margin: 0 0 18px;
  font: 400 14.5px/1.5 Inter, system-ui, sans-serif;
  color: var(--muted);
}
#ed-hv-form { display: grid; gap: 10px; }
#ed-hv-form label {
  display: grid;
  gap: 5px;
  font: 650 12px/1.2 Inter, system-ui, sans-serif;
}
#ed-hv-form input {
  width: 100%;
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  padding: 11px 12px;
  font: 400 15px/1.3 Inter, system-ui, sans-serif;
}
#ed-hv-form button[type="submit"] {
  margin-top: 4px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font: 700 14px/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}
.ed-hv-sheet__live {
  background: #f4f5f8;
  border-radius: 12px;
  padding: 12px 14px;
  font: 400 13px/1.4 Inter, system-ui, sans-serif;
  color: var(--muted);
}
.ed-hv-sheet__live strong {
  display: block;
  font: 700 22px/1.1 Inter, system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.ed-hv-sheet__status { margin: 4px 0 0; font: 600 13px/1.4 Inter, system-ui, sans-serif; }
.ed-hv-sheet__status.is-ok { color: #0f7a3a; }
.ed-hv-sheet__status.is-err { color: #b42318; }
.ed-hv-sheet__fine {
  margin: 14px 0 0;
  font: 400 12px/1.45 Inter, system-ui, sans-serif;
  color: var(--muted);
}
.ed-hv-sheet__fine a { color: var(--accent); }
@media (max-width: 991.98px) {
  #ed-hv-tab { display: none !important; }
  .ed-hv-sheet__panel { width: 100%; border-radius: 18px 18px 0 0; align-self: end; max-height: 92vh; }
}
body.ed-hv-open { overflow: hidden; }
a.ed-why__card { text-decoration: none; color: inherit; }

/* Contact details — stop postal codes and map links from exploding on phones */
@media (max-width: 991.98px) {
  body.ed-skin .contact-inner-section.sp1 {
    padding: 28px 0 36px !important;
  }
  body.ed-skin .contact-inner-section .heading1 h2 {
    font-size: 28px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
  }
  body.ed-skin .contact-inner-section .heading1 > p {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
  body.ed-skin .contact-inner-section .number-address-area,
  body.ed-skin .contact-inner-section .number-address-area2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    background: transparent !important;
    justify-content: flex-start !important;
  }
  body.ed-skin .contact-inner-section .phone-number {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    margin: 0 !important;
    width: 100% !important;
  }
  body.ed-skin .contact-inner-section .phone-number .img1 {
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(var(--accent-rgb), 0.1) !important;
  }
  body.ed-skin .contact-inner-section .phone-number .img1 svg {
    width: 18px !important;
    height: 18px !important;
    color: var(--accent) !important;
  }
  body.ed-skin .contact-inner-section .phone-number .content {
    margin: 0 !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  body.ed-skin .contact-inner-section .phone-number .content p {
    display: block !important;
    margin: 0 0 2px !important;
    font-size: 12px !important;
    color: var(--muted) !important;
  }
  body.ed-skin .contact-inner-section .phone-number .content a {
    display: block !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: var(--ink) !important;
    text-decoration: none !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
  body.ed-skin .contact-inner-section .phone-number .content a.map,
  body.ed-skin .contact-inner-section a.map {
    display: inline-flex !important;
    margin-top: 8px !important;
    padding: 7px 12px !important;
    width: auto !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--accent) !important;
    background: rgba(var(--accent-rgb), 0.08) !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    border: 0 !important;
  }
  body.ed-skin .location-boxes {
    text-align: left !important;
    padding: 22px 18px !important;
  }
  body.ed-skin .location-boxes a {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  body.ed-skin .contact-form-area {
    margin-top: 28px !important;
    padding: 22px 18px 20px !important;
  }
}

/* ===== Google reviews (paginated) ===== */
.gr { margin-top: 4px; }
.gr-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 16px 24px;
  margin-bottom: 22px;
}
.gr-score { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 12px; }
.gr-score strong {
  font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 750; letter-spacing: -0.04em; line-height: 0.9; color: var(--ink);
}
.gr-score__stars { color: var(--accent); letter-spacing: 3px; font-size: 15px; }
.gr-score__meta { width: 100%; font-size: 14px; color: var(--muted); font-weight: 550; }
.gr-head__acts { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.gr-grid { display: grid; gap: 14px; }
@media (min-width: 720px) {
  .gr-grid { grid-template-columns: 1fr 1fr; }
  .gr-grid--duo { grid-template-columns: 1fr 1fr; }
  .gr-grid--solo { grid-template-columns: 1fr; max-width: 560px; }
}
@media (min-width: 1100px) {
  .gr-grid { grid-template-columns: 1fr 1fr 1fr; }
  .gr-grid--duo { grid-template-columns: 1fr 1fr; }
  .gr-grid--solo { grid-template-columns: 1fr; max-width: 640px; }
}
.gr-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 240px;
  border: 1px solid var(--hairline);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gr-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-plate); }
.gr-card__mark {
  position: absolute; bottom: -12px; right: 14px; top: auto;
  font-family: var(--display); font-weight: 800;
  font-size: 5.8rem; line-height: 1; letter-spacing: -0.08em;
  color: var(--ink); opacity: 0.06; pointer-events: none;
}
.gr-card__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; position: relative; z-index: 1; }
.gr-card__stars { color: var(--accent); letter-spacing: 2px; font-size: 13px; }
.gr-g { display: inline-flex; flex-shrink: 0; }
.gr-card__quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.45; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.gr-card__quote.is-open {
  display: block; -webkit-line-clamp: unset; overflow: visible;
}
.gr-card__plain {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 650; letter-spacing: -0.03em;
  line-height: 1.35; color: var(--ink);
  max-width: 28ch;
}
.gr-more {
  align-self: flex-start;
  background: none; border: 0; padding: 0; margin: 0;
  color: var(--accent); font: 650 13px/1 Inter, system-ui, sans-serif;
  cursor: pointer; min-height: 44px;
}
.gr-more:hover { text-decoration: underline; }
.gr-card__who {
  margin-top: auto; display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 1;
}
.gr-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.04em;
}
.gr-card__who-txt { display: grid; gap: 2px; min-width: 0; }
.gr-card__who strong { font-size: 14px; color: var(--ink); }
.gr-card__who span { font-size: 12px; color: var(--muted); font-weight: 550; }
.gr-card--invite {
  background: var(--accent); color: #fff;
  border-color: transparent;
  justify-content: flex-end;
}
.gr-card--invite .gr-card__mark { color: #fff; opacity: 0.16; font-size: 4.2rem; top: auto; bottom: -8px; }
.gr-card--invite .gr-card__invite-k {
  margin: 0 auto 0 0; font-size: 11px; font-weight: 650;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.78);
}
.gr-card--invite h3 {
  margin: 0; font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-weight: 750;
  letter-spacing: -0.03em; line-height: 1.15; color: #fff;
  max-width: 16ch;
}
.gr-card--invite p { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.9); max-width: 28ch; }
.gr-card--invite .gr-card__invite-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px; margin-top: 6px; align-self: flex-start;
  border-radius: var(--radius-pill); background: #fff; color: var(--ink);
  font-size: 13px; font-weight: 650;
}
.gr-card--invite:hover { transform: translateY(-2px); }
.gr-pager {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 22px; flex-wrap: wrap;
}
.gr-pager__nums { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.gr-pager__btn, .gr-pager__num {
  min-width: 44px; min-height: 44px; padding: 0 14px;
  border-radius: 999px; border: 1px solid var(--hairline-strong);
  background: #fff; color: var(--ink);
  font: 650 13px/1 Inter, system-ui, sans-serif; cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.gr-pager__num.is-on, .gr-pager__btn:hover:not(:disabled), .gr-pager__num:hover {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.gr-pager__btn:disabled { opacity: .38; cursor: not-allowed; }
.gr-empty { color: var(--muted); padding: 28px 0; }
@media (prefers-reduced-motion: reduce) {
  .gr-card, .gr-pager__btn, .gr-pager__num { transition: none; }
}
@media (max-width: 699.98px) {
  .gr-card { min-height: 0; padding: 22px 18px 18px; }
  .gr-head__acts { width: 100%; }
  .gr-head__acts .ed-btn { min-height: 44px; }
  .gr-card__mark { font-size: 4.4rem; right: 10px; }
  .gr-card__plain { max-width: none; }
  .gr-card--invite h3 { max-width: none; }
  .gr[data-limit] .gr-card__quote { -webkit-line-clamp: 4; }
}



