:root {
  --red: #e31c24;
  --dark: #202020;
  --ink: #222;
  --soft: #555;
  --faint: #777;
  --dim: #999;
  --line: #ddd;
  --paper: #f8f8f8;
  --link: #3887be;
  --link-hover: #2a6b96;
}
* { box-sizing: border-box; }
/* overflow-x: clip (not hidden — keeps position: sticky/fixed working) is a
   safety net so one freak unbreakable string in the sheet can never make the
   whole page scroll sideways and look misaligned. */
body { margin: 0; background: #fff; color: var(--ink); font-family: Verdana, Arial, sans-serif; font-size: 1rem; line-height: 1.5; overflow-x: clip; -webkit-font-smoothing: antialiased; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
.shell { max-width: 1400px; margin: 0 auto; }

.banner { background-color: var(--red); background-position: center; background-size: cover; background-repeat: no-repeat; padding: 14px 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px; }
.banner img { height: 52px; width: auto; display: block; }
.banner .team-name { font-size: 1.25rem; font-weight: 700; line-height: 1.2; color: #fff; }
.banner .contact { text-align: right; font-size: 0.75rem; line-height: 1.6; color: rgba(255,255,255,.85); }
.banner .contact a { color: rgba(255,255,255,.85); }
.banner .contact .phone { display: block; font-weight: 700; font-size: 1.0625rem; color: #fff; }
.banner .contact .phone a { color: #fff; }

/* slim sticky bar: revealed by JS after scrolling past the trade tiles */
.stickybar { position: fixed; top: 0; left: 0; right: 0; max-width: 1400px; margin: 0 auto; z-index: 50; display: flex; align-items: center; gap: 16px; height: 48px; padding: 0 16px; background-color: var(--red); background-position: center; background-size: cover; background-repeat: no-repeat; color: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.25); visibility: hidden; opacity: 0; transform: translateY(-100%); transition: transform .25s ease, opacity .2s ease, visibility 0s .25s; }
.stickybar.show { visibility: visible; opacity: 1; transform: translateY(0); transition: transform .25s ease, opacity .2s ease; }
.stickybar img { height: 30px; width: auto; display: block; flex: none; }
.stickybar .mini-name { font-weight: 700; font-size: 0.9375rem; white-space: nowrap; }
.stickybar .phone { color: #fff; font-weight: 700; font-size: 0.9375rem; white-space: nowrap; flex: none; }
.stickybar .state { margin-left: auto; font-size: 0.8125rem; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* floating back-to-trades pill */
.pill { position: fixed; right: 16px; bottom: 16px; z-index: 50; display: flex; align-items: center; min-height: 52px; padding: 0 22px; background: var(--red); color: #fff; font-weight: 700; font-size: 0.875rem; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,.3); visibility: hidden; opacity: 0; transform: translateY(12px); transition: transform .2s ease, opacity .2s ease, visibility 0s .2s; }
.pill.show { visibility: visible; opacity: 1; transform: none; transition: transform .2s ease, opacity .2s ease; }
.pill:hover { background: #c4161d; color: #fff; }

.intro { padding: 26px 20px 20px; background: var(--paper); border-bottom: 1px solid var(--line); }
.intro h1 { margin: 0; font-size: 1.75rem; line-height: 1.3; color: var(--dark); }
.intro .rule { width: 48px; height: 3px; background: var(--red); margin: 12px 0 0; }
.intro p { margin: 12px 0 0; max-width: 760px; font-size: 0.9375rem; line-height: 1.6; color: var(--soft); text-wrap: pretty; }
.intro .meta { margin-top: 12px; font-size: 0.8125rem; color: var(--dim); }

.trades { background: #fff; border-bottom: 1px solid var(--line); padding: 18px 20px 20px; scroll-margin-top: 0; }
.trades-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.trades-head .label { font-size: 0.75rem; font-weight: 700; line-height: 1; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.tilegrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 9px; }
.tile { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 48px; padding: 0 15px; border: 1px solid var(--line); background: #fff; font-size: 0.875rem; line-height: 1.3; color: var(--dark); cursor: pointer; }
.tile:hover { border-color: var(--dark); color: var(--dark); }
.tile .n { font-size: 0.75rem; color: var(--dim); flex: none; }
.tile.active { background: var(--dark); border-color: var(--dark); color: #fff; }
.tile.active .n { color: rgba(255,255,255,.6); }
.tile.hire-tile { border-color: var(--dark); background: var(--dark); font-weight: 700; color: #fff; }
.tile.hire-tile:hover { background: var(--red); border-color: var(--red); color: #fff; }
.tile.hire-tile .n { color: rgba(255,255,255,.6); }

.main { padding: 18px 20px 34px; }


.noscript-note { font-size: 0.8125rem; color: #8a6116; border: 1px solid #d99a06; background: #fdf6e3; padding: 10px 14px; margin: 0 0 20px; }

.filterbar { display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; background: var(--dark); margin-bottom: 20px; }
.filterbar.show { display: flex; }
.filterbar .msg { font-size: 0.875rem; line-height: 1.4; color: #fff; }
.filterbar .msg b { font-weight: 700; }
.filterbar a { font-size: 0.875rem; font-weight: 700; line-height: 1; color: #fff; background: var(--red); padding: 13px 16px; white-space: nowrap; cursor: pointer; }
.filterbar a:hover { color: #fff; }

section.cat { margin-bottom: 34px; scroll-margin-top: 70px; }
section.cat.hidden-cat { display: none; }
.cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 2px solid var(--dark); padding-bottom: 10px; margin-bottom: 15px; }
.cat-head h2 { margin: 0; font-size: 1.25rem; line-height: 1.2; color: var(--dark); }

.cardgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 15px; align-items: stretch; }
.grid-note { grid-column: 1 / -1; font-size: 0.75rem; font-weight: 700; line-height: 1; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); padding: 8px 0 0; }
/* overflow-wrap inherits: any unbroken run (pasted URL in a note, odd name)
   breaks rather than stretching its grid track past the viewport */
.card { background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(0,0,0,.1); display: flex; flex-direction: column; overflow-wrap: anywhere; }
.card[hidden] { display: none; }
.card-body { padding: 18px 20px 16px; flex: 1; }
.card-body h3 { margin: 0; font-size: 1.125rem; line-height: 1.35; color: var(--dark); }
.card .person { margin-top: 6px; font-size: 0.8125rem; line-height: 1.4; color: var(--faint); }
.card .blurb { margin: 12px 0 0; font-size: 0.9375rem; line-height: 1.55; color: var(--soft); text-wrap: pretty; white-space: pre-line; }
.card-foot { border-top: 1px solid var(--line); background: var(--paper); padding: 14px 20px; display: grid; grid-template-columns: 72px 1fr; gap: 8px 14px; font-size: 0.875rem; line-height: 1.55; align-content: start; }
.card-foot .k { color: var(--dim); font-size: 0.75rem; letter-spacing: .05em; text-transform: uppercase; padding-top: 3px; }
.card-foot .v { color: var(--ink); overflow-wrap: break-word; display: grid; gap: 3px; align-content: start; }
.card-foot .v .line { min-width: 0; min-height: 24px; }
.card-foot .note { color: var(--faint); font-size: 0.8125rem; }

/* Subgrid: the white body / grey footer boundary aligns across each row of
   cards instead of landing at a different height per card. */
@supports (grid-template-rows: subgrid) {
  .cardgrid { grid-auto-rows: auto; }
  .card { display: grid; grid-template-rows: subgrid; grid-row: span 2; }
  .card-body { flex: none; }
}

#hire { margin-bottom: 34px; scroll-margin-top: 70px; }
#hire details { border: 1px solid var(--line); background: #fff; margin-bottom: 9px; }
#hire summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 52px; padding: 0 18px; font-size: 0.9375rem; font-weight: 700; line-height: 1.4; color: var(--dark); cursor: pointer; list-style: none; }
#hire summary::-webkit-details-marker { display: none; }
#hire summary .plus { color: var(--red); font-size: 1.125rem; flex: none; }
#hire details[open] summary .plus { transform: rotate(45deg); }
#hire .guide-body { padding: 4px 18px 18px; font-size: 0.9375rem; line-height: 1.6; color: var(--soft); }
#hire .guide-body ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
#hire .guide-body p { margin: 0 0 10px; max-width: 760px; }

.cta { padding: 24px 20px; background: var(--dark); text-align: center; }
.cta .head { font-size: 1.0625rem; font-weight: 700; line-height: 1.4; color: #fff; }
.cta .sub { margin: 8px auto 15px; max-width: 460px; font-size: 0.8125rem; line-height: 1.6; color: rgba(255,255,255,.65); }
.cta a.btn { min-height: 48px; max-width: 320px; margin: 0 auto; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; line-height: 1; color: #fff; }

footer.site { background: var(--paper); border-top: 1px solid var(--line); padding: 28px 20px; }
footer.site .footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px 40px; align-items: start; }
footer.site .team { font-size: 1.0625rem; font-weight: 700; line-height: 1.2; color: var(--dark); }
footer.site .team-contact { margin-top: 12px; font-size: 0.875rem; line-height: 1.7; color: var(--soft); }
footer.site .brokerage { font-size: 0.8125rem; font-weight: 700; line-height: 1.6; color: #404040; }
footer.site .brokerage-note { margin-top: 4px; font-size: 0.8125rem; line-height: 1.6; color: var(--faint); }
footer.site .fine { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.75rem; line-height: 1.7; color: var(--dim); text-wrap: pretty; scroll-margin-top: 70px; }
/* Each footer note is its own block sitting side by side — readable measure,
   no snaking between columns, and no large void on the right. */
/* First grid-template-columns line is the fallback for browsers without
   CSS min() (e.g. older Samsung Internet), which drop the second. */
footer.site .fine-text { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(min(30ch, 100%), 1fr)); gap: 16px 44px; align-items: start; }
footer.site .fine .lead { font-weight: 700; color: var(--faint); }
footer.site .fine-block { max-width: 58ch; }
footer.site .fine-block p { margin: 0 0 8px; }
footer.site .fine-block p:last-child { margin-bottom: 0; }
footer.site .fine-block:first-child > p:first-of-type { display: inline; }
footer.site .links { margin-top: 10px; }

@media print {
  .trades, .filterbar, .cta, .stickybar, .pill { display: none !important; }
  section.cat.hidden-cat { display: block; }
  .card { box-shadow: none; break-inside: avoid; }
  a { color: #000; }
  #hire details, #hire .guide-body { display: block; }
  #hire summary .plus { display: none; }
  .banner { background-image: none !important; }
}
