:root{
  --ink:#0b1220;
  --muted:#5b677a;
  --bg:#f6f5f1;          /* warmer to match the new logo */
  --card:#ffffff;
  --line:rgba(11,18,32,.10);

  --primary:#0b1220;     /* use ink (logo is monochrome) */
  --primary-2:#1a2233;

  --shadow: 0 12px 40px rgba(11,18,32,.10);
  --radius: 18px;
  --max: 1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:auto}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(1100px 580px at 20% -10%, rgba(11,18,32,.08), transparent 60%),
    radial-gradient(900px 520px at 90% 0%, rgba(11,18,32,.06), transparent 60%),
    var(--bg);
  line-height:1.55;
  overflow-x: clip;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}

.skip-link{
  position:absolute;
  left:-999px;
  top:0;
  padding:10px 14px;
  background: rgba(255,255,255,.95);
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--ink);
  font-weight:800;
  text-decoration:none;
  z-index:100;
}
.skip-link:focus{
  left:16px;
  top:16px;
}

.pill{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.5rem .85rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color:var(--muted);
  font-size:.92rem;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  padding:.86rem 1.1rem;
  border-radius:999px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px)}
.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  box-shadow: 0 10px 22px rgba(11,18,32,.18);
}
.btn-primary:hover{box-shadow: 0 14px 30px rgba(11,18,32,.24)}
.btn-onwhite{
  background: rgba(255,255,255,.88);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-onwhite:hover{border-color: rgba(11,18,32,.25)}
.btn-small{padding:.62rem .95rem; font-weight:850}

/* top contact bar */
.topbar{
  background: linear-gradient(180deg, rgba(11,18,32,.96), rgba(11,18,32,.92));
  color: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
  font-weight:700;
  letter-spacing:.2px;
  font-size:.92rem;
}
.topbar a{
  color: rgba(255,255,255,.94);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.topbar a:hover{border-bottom-color: rgba(255,255,255,.6)}
.topbar .right{display:flex; gap:16px; flex-wrap:wrap; justify-content:flex-end}
.topbar .badge{
  display:inline-flex; align-items:center; gap:10px;
  opacity:.98;
}
.topbar .badge img{
  width:28px; height:28px; object-fit:cover;
  border-radius:8px;
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
  background: transparent;
}

/* header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(246,245,241,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,18,32,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap:14px;
  text-decoration:none;
  min-width: 240px;
}
.brand img{
  width:54px; height:54px; object-fit:cover;
  border-radius:10px;
  box-shadow: 0 10px 22px rgba(11,18,32,.10);
  background: transparent;
}
.brand strong{font-size:1.04rem; letter-spacing:.2px}
.brand span{display:block; font-size:.88rem; color:var(--muted); margin-top:-2px}

.navlinks{
  display:flex; align-items:center; gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a{
  text-decoration:none;
  color: var(--muted);
  font-weight:800;
  font-size:.95rem;
  padding:.4rem .55rem;
  border-radius:999px;
  transition: background .15s ease, color .15s ease;
}
.navlinks a:hover{background: rgba(11,18,32,.06); color: var(--ink)}
.navlinks a[aria-current="page"]{
  background: rgba(11,18,32,.08);
  color: var(--ink);
}
.nav-cta{display:flex; align-items:center; gap:10px}

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  color: var(--ink);
  cursor:pointer;
}
.nav-toggle:hover{background: rgba(255,255,255,.98)}
.nav-toggle:focus-visible{
  outline:2px solid rgba(11,18,32,.35);
  outline-offset:2px;
}
.nav-toggle-line{
  width:20px;
  height:2px;
  background: currentColor;
  border-radius:999px;
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* hero */
.heroBleed{
  position:relative;
  width:100%;
  margin:0;
  min-height: 72vh;
  border-bottom: 1px solid rgba(11,18,32,.08);
  overflow:hidden;
  background: #0b1220;
}
.heroBleed::before{
  content:"";
  position:absolute; inset:0;
  background-image: url("west-palm-beach-office-boom.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: none;
}

.heroOverlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 34px 0 26px;
}
/* SINGLE panel (combined) */
.heroLayout{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 100%;
  width: 100%;
}
.heroCard{
  width: min(680px, 100%);
  background: rgba(6,16,32,.32);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  color: rgba(255,255,255,.96);
}
.heroCardTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.heroMark{
  width: 70px;
  height: 70px;
  object-fit:cover;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  opacity:.98;
  flex: 0 0 auto;
}
.heroTitle{
  margin: 14px 0 10px;
  font-size: clamp(2.1rem, 3.8vw, 3.25rem);
  line-height:1.05;
  letter-spacing:-.7px;
  text-shadow: 0 16px 34px rgba(0,0,0,.65);
}
.heroLead{
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: rgba(255,255,255,.92);
  max-width: 62ch;
  text-shadow: 0 12px 26px rgba(0,0,0,.55);
}
.heroBullets{
  margin: 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 12px;
  max-width: 62ch;
}
.heroBullets li{
  display:flex; gap:10px; align-items:flex-start;
  color: rgba(255,255,255,.96);
  font-weight:800;
  font-size: 1.04rem;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 12px;
  border-radius: 14px;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 0 4px rgba(255,255,255,.16);
  margin-top: 8px;
  flex: 0 0 10px;
}

/* sections */
main{padding-top: 18px;}
section{padding: 46px 0}
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
  margin-bottom: 16px;
}
.sectionHead h1,
.sectionHead h2{
  margin:0;
  font-size: 1.75rem;
  letter-spacing:-.4px;
  line-height:1.15;
}
.sectionHead p{margin:0; color:var(--muted); max-width: 74ch}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  position:relative;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow:hidden;
}
.card h3{margin: 0 0 6px; font-size: 1.08rem}
.card p{margin:0; color: var(--muted)}
.card a{
  display:inline-flex;
  margin-top: 12px;
  font-weight:850;
  color: var(--ink);
  text-decoration:none;
  border-bottom: 1px solid rgba(11,18,32,.25);
  padding-bottom: 2px;
}
.card a:hover{border-bottom-color: rgba(11,18,32,.55)}

/* team */
.teamIntro{
  margin-bottom: 18px;
  max-width: 90ch;
}
.teamIntroTitle{
  margin:0 0 12px;
  font-weight:800;
  color: var(--ink);
  font-size: 1.08rem;
  line-height:1.2;
}
.teamIntroText{margin:0; color:var(--muted)}
.teamGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.teamCard p{margin:0; color:var(--muted)}
.teamCard p + p{margin-top:10px}
.teamMeta{margin:0; color:var(--muted); font-weight:700; font-size:.92rem}
.teamMeta + p{margin-top:10px}
.teamEmail{margin:0; color:var(--muted); font-weight:700; font-size:.92rem}
.teamEmail a{
  display:inline;
  margin:0;
  font-weight:700;
  color: var(--ink);
  text-decoration:none;
  border-bottom: 1px solid rgba(11,18,32,.25);
  padding-bottom: 1px;
}
.teamEmail a:hover{border-bottom-color: rgba(11,18,32,.55)}

/* contact */
.contactWrap{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items:start;
}
.emailBox{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-top: 12px;
}
.emailLink{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  text-decoration:none;
  box-shadow: 0 10px 22px rgba(11,18,32,.06);
  transition: transform .15s ease, border-color .15s ease;
}
.emailLink:hover{
  transform: translateY(-1px);
  border-color: rgba(11,18,32,.22);
}
.emailLeft strong{display:block; font-size:1.02rem}
.emailLeft span{display:block; color:var(--muted); font-weight:700; font-size:.92rem; margin-top:2px}
.emailRight{
  width: 38px; height: 38px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(11,18,32,.06);
  border: 1px solid rgba(11,18,32,.10);
  color: rgba(11,18,32,.92);
  font-weight:950;
}
@media (max-width: 640px){
  .emailLink{
    flex-direction:column;
    align-items:flex-start;
  }
  .emailRight{
    align-self:flex-end;
  }
}

/* footer */
footer{
  padding: 26px 0 40px;
  border-top: 1px solid rgba(11,18,32,.08);
  color: var(--muted);
}
.foot-email{
  text-decoration:none;
  font-weight:950;
  color: inherit;
}
.foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.footBrand{
  display:flex; align-items:center; gap:12px;
}
.footBrand img{width:44px; height:44px; object-fit:cover; border-radius:10px}
.fineprint{
  max-width: 98ch;
  font-size:.88rem;
  margin-top: 10px;
}

/* responsive */
@media (max-width: 980px){
  .grid3{grid-template-columns: 1fr}
  .teamGrid{grid-template-columns: 1fr}
  .nav{flex-wrap:wrap}
  .navlinks{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:10px;
    padding: 8px 0 6px;
    order:3;
  }
  .navlinks.is-open{display:flex}
  .nav-cta{order:2; margin-left:auto}
  .nav-toggle{display:inline-flex}
  .brand{min-width:auto}
  .topbar .inner{flex-direction:column; align-items:flex-start}
  .topbar .right{justify-content:flex-start}
  .heroLayout{
    justify-content:center;
    align-items:center;
  }
}
