/* =====================================================================
   Conrad Restore — ADDITIVE overlay.
   Contains only rules authored for the inner-page redesign. Loaded
   AFTER conrad-widgets' generic.css so it never needs to modify it.
   Owns: team grid, portfolio/blog grid, badge strip, theme-button
   resets, FAQ side image, contact form, parallax, navy sections,
   unified button hovers, equal-size split media.
   ===================================================================== */
/* symmetric columns: base .split is 1fr/1.22fr, which makes flipped (rev)
   sections render a narrower image. Equal tracks = every image same size. */
.g-text .split { grid-template-columns: 1fr 1fr; }
@media (max-width: 1080px) { .g-text .split { grid-template-columns: 1fr; } }
/* uniform covered media frame: every split section gets the same image height,
   regardless of the photo's natural aspect ratio */
.g-text .obj-media { position: relative; height: 480px !important; min-height: 480px !important; overflow: hidden; }
.g-text .obj-media img { position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  object-fit: cover; display: block; }
@media (max-width: 1080px) { .g-text .obj-media { height: 320px !important; min-height: 320px !important; } }
.g-gal-i img { position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  object-fit: cover; display: block; transition: transform .8s var(--ease); }

/* ---- 8. team grid (v8) ----------------------------------------------- */
.g-team .g-lead { margin: 1rem auto 0; max-width: 720px; text-wrap: pretty; }
.tm-founder { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; margin-top: 56px; padding: clamp(28px, 4vw, 52px);
  background: var(--cream); border: 1px solid var(--line); }
.tm-founder-ph { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.tm-founder-ph::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(201,160,99,.55); pointer-events: none; z-index: 1; }
/* absolute-fill beats the theme's global img{height:auto} — photos always cover the frame */
.tm-founder-ph img { position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  object-fit: cover; display: block; }
.tm-founder-bd h3 { font-family: var(--ff-display); font-weight: 300; font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--ink); margin-top: 10px; }
.tm-founder-bd p { color: var(--muted); font-size: .94rem; line-height: 1.9; margin-top: 18px; max-width: 62ch; }
.tm-founder-bd .tm-quote { font-family: var(--ff-display); font-style: italic; font-size: 1.05rem;
  color: var(--ink); border-left: 2px solid var(--gold); padding-left: 18px; margin-top: 26px; }
.tm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 56px; }
.tm-card { background: #fff; border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.tm-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(8,23,32,.10); }
.tm-ph { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--navy-soft); }
.tm-ph img { position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  object-fit: cover; object-position: top center; display: block; transition: transform .8s var(--ease); }
.tm-card:hover .tm-ph img { transform: scale(1.05); }
.tm-bd { padding: 22px 22px 26px; }
.tm-bd h3 { font-family: var(--ff-display); font-weight: 400; font-size: 1.15rem; color: var(--ink); }
.tm-role { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-top: 6px; }
.tm-bd p { color: var(--muted); font-size: .85rem; line-height: 1.75; margin-top: 12px; }
@media (max-width: 1100px) { .tm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px)  { .tm-founder { grid-template-columns: 1fr; } .tm-founder-ph { max-width: 420px; } }
@media (max-width: 560px)  { .tm-grid { grid-template-columns: 1fr; } }

/* ---- 9. portfolio filter grid (v8) ------------------------------------ */
/* .body-sm has no auto margin, so without this the intro sits flush-left
   inside the centred .sec-head (blog + portfolio) */
.g-port .g-lead, .g-blog .g-lead { margin: 1rem auto 0; max-width: 720px; text-align: center; text-wrap: pretty; }
/* .sec-head caps at 640px, which forces these intros into a 3-line ragged
   wrap with an orphan; wider container + balance evens the line lengths */
.g-port .sec-head, .g-blog .sec-head { max-width: 780px; }
.g-port .g-lead, .g-blog .g-lead, .g-cards .g-lead, .g-list .g-lead, .g-team .g-lead {
  text-wrap: balance; }
.port-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 42px; }
.port-filters:empty { display: none; }
.filter-btn { background: none; border: 1px solid var(--line); color: var(--muted); cursor: pointer;
  font-family: var(--ff-display); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 11px 22px; transition: all .35s var(--ease); }
.filter-btn:hover { border-color: var(--gold); color: var(--ink); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.pt-item { display: block; text-decoration: none; background: #fff; border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.pt-item:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(8,23,32,.12); }
.pt-item.hide { display: none; }
.pt-ph { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--navy-soft); }
.pt-ph img { position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  object-fit: cover; display: block; transition: transform .8s var(--ease); }
.pt-item:hover .pt-ph img { transform: scale(1.06); }
.pt-bd { display: block; padding: 18px 20px 22px; }
.pt-bd b { display: block; font-family: var(--ff-display); font-weight: 400; font-size: 1rem;
  color: var(--ink); line-height: 1.4; }
.pt-bd i { display: block; font-style: normal; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-top: 8px; }
@media (max-width: 1000px) { .port-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 620px)  { .port-grid { grid-template-columns: 1fr; } }
/* blog cards reuse the portfolio card frame */
.pt-bd .pt-date { display: block; font-style: normal; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pt-bd .pt-ex { display: block; font-size: .85rem; color: var(--muted); line-height: 1.7; margin-top: 8px; }

/* ---- 10. badge strip (v8) --------------------------------------------- */
.badge-strip { padding: clamp(44px, 6vw, 64px) 0; background: #fff; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); text-align: center; }
.badge-strip .eyebrow { display: inline-block; }
.badge-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(28px, 5vw, 64px); margin-top: 26px; }
.badge-i img { height: 56px; width: auto; max-width: 180px; object-fit: contain; display: block;
  filter: grayscale(1) opacity(.62); transition: filter .4s var(--ease), transform .4s var(--ease); }
.badge-i:hover img { filter: none; transform: translateY(-3px); }
@media (max-width: 560px) { .badge-i img { height: 44px; } }

/* ---- 11. theme reset overrides (v8.1) --------------------------------
   Hello Elementor styles [type=button]/[type=submit] with a 1px #c36 border
   and pink text, and its stylesheet loads AFTER ours in the LiteSpeed
   combine — so plain .ac-q / .filter-btn class selectors tie on specificity
   and lose. These higher-specificity rules with !important always win. */
/* white-space: Elementor reset.css sets `button { white-space: nowrap }`, which makes
   the question text unwrappable and blows the accordion's min-content width past the
   phone viewport. */
.accordion button.ac-q { display: block !important; width: 100% !important; text-align: left !important;
  background: none !important; border: 0 !important; border-radius: 0 !important;
  color: var(--ink) !important; font-family: var(--ff-display) !important;
  font-size: 1.05rem !important; font-weight: 400 !important;
  padding: 25px 52px 25px 0 !important; line-height: 1.45 !important;
  white-space: normal !important; }
.accordion .ac-item.open button.ac-q, .accordion button.ac-q:hover { color: var(--gold) !important; }
.port-filters button.filter-btn { background: none !important; border: 1px solid var(--line) !important;
  border-radius: 0 !important; color: var(--muted) !important;
  font-family: var(--ff-display) !important; font-size: .8rem !important;
  letter-spacing: .12em !important; padding: 11px 22px !important; }
.port-filters button.filter-btn:hover { border-color: var(--gold) !important; color: var(--ink) !important; }
.port-filters button.filter-btn.active { background: var(--navy) !important;
  border-color: var(--navy) !important; color: #fff !important; }

/* ---- 12. faq optional side image (v8.1) ------------------------------- */
.faq-split { display: grid; grid-template-columns: 1fr; }
/* Grid items default to min-width:auto, so a 1fr track cannot shrink below the item's
   min-content width. Without this the accordion overflows the viewport on phones. */
.faq-split, .faq-split > * { min-width: 0; }
.faq-split:has(.faq-media img[src]) { grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 5vw, 72px); align-items: start; }
.faq-split:has(.faq-media img[src]) .g-faq-list { max-width: none; }
.faq-media { display: none; }
.faq-split:has(.faq-media img[src]) .faq-media { display: block; position: relative;
  position: sticky; top: 120px; height: 520px; overflow: hidden; margin-top: 46px; }
.faq-media img { position: absolute; inset: 0; width: 100% !important; height: 100% !important;
  object-fit: cover; display: block; }
@media (max-width: 900px) { .faq-split:has(.faq-media img[src]) { grid-template-columns: 1fr; }
  .faq-split:has(.faq-media img[src]) .faq-media { position: static; height: 300px; } }

/* ---- 14. contact form (Elementor Pro form, brand-styled) -------------- */
.conrad-form-sec .elementor-widget-form { background: #fff; border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 54px); box-shadow: 0 24px 60px rgba(8,23,32,.06); }
.conrad-form-sec .elementor-form-fields-wrapper { display: flex; flex-wrap: wrap; margin: -9px -11px; }
.conrad-form-sec .elementor-field-group { padding: 9px 11px; margin: 0; }
.conrad-form-sec .elementor-field-group.elementor-col-50 { width: 50%; }
.conrad-form-sec .elementor-field-group.elementor-col-100 { width: 100%; }
@media (max-width: 640px) { .conrad-form-sec .elementor-field-group.elementor-col-50 { width: 100%; } }
.conrad-form-sec .elementor-field-label { display: block; font-family: var(--ff-display);
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 8px; }
.conrad-form-sec .elementor-field-textual, .conrad-form-sec select.elementor-field,
.conrad-form-sec textarea.elementor-field {
  width: 100%; background: #fff; border: 1px solid var(--line) !important; border-radius: 0 !important;
  padding: 13px 15px !important; font-family: inherit; font-size: .92rem; color: var(--ink);
  transition: border-color .3s var(--ease); }
.conrad-form-sec .elementor-field-textual:focus, .conrad-form-sec select.elementor-field:focus,
.conrad-form-sec textarea.elementor-field:focus { border-color: var(--gold) !important; outline: none; }
.conrad-form-sec ::placeholder { color: #9aa3a9; }
.conrad-form-sec .elementor-field-subgroup { display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px; padding-top: 4px; }
@media (max-width: 640px) { .conrad-form-sec .elementor-field-subgroup { grid-template-columns: 1fr; } }
.conrad-form-sec .elementor-field-option { display: flex; align-items: center; gap: 10px; }
.conrad-form-sec .elementor-field-option label { font-size: .92rem; color: var(--muted);
  margin: 0; text-transform: none; letter-spacing: 0; font-family: inherit; }
.conrad-form-sec .elementor-field-option input[type=checkbox],
.conrad-form-sec .elementor-field-option input[type=radio] { accent-color: var(--gold);
  width: 17px; height: 17px; flex: none; }
.conrad-form-sec .elementor-button[type=submit], .conrad-form-sec button.elementor-button {
  background: var(--gold) !important; color: #081720 !important; border: 0 !important;
  border-radius: 0 !important; font-family: var(--ff-display) !important; font-size: .82rem !important;
  font-weight: 500 !important; letter-spacing: .16em !important; text-transform: uppercase;
  padding: 17px 42px !important; cursor: pointer; transition: filter .3s var(--ease); width: auto; }
.conrad-form-sec .elementor-button[type=submit]:hover { filter: brightness(1.08); }
.conrad-form-sec .elementor-field-group.elementor-field-type-submit { padding-top: 20px; }

/* ---- 14b. contact info column + compact form -------------------------- */
/* site --container is 1660px, so this section read as near full-bleed;
   cap it to a comfortable reading width and centre it */
.conrad-form-sec > .elementor-container { max-width: 1080px; margin-inline: auto; }
/* guarantee the 40/60 split even if Elementor's per-column CSS is missing */
@media (min-width: 768px) {
  .conrad-form-sec .elementor-column { width: 60%; }
  .conrad-form-sec .elementor-column:first-child { width: 40%; }
}
.conrad-form-sec .cf-info { position: sticky; top: 130px; padding-right: clamp(8px, 2.5vw, 34px); }
.cf-info p { color: var(--muted); font-size: .93rem; line-height: 1.85; margin-top: 14px; max-width: 48ch; }
.cf-info .cf-list { list-style: none; margin: 20px 0 0; padding: 0; }
.cf-info .cf-list li { margin-top: 12px; }
.cf-info .cf-list a { color: var(--ink); text-decoration: none; font-family: var(--ff-display);
  font-size: 1.04rem; letter-spacing: .02em; border-bottom: 1px solid var(--gold);
  padding-bottom: 2px; transition: color .3s var(--ease); }
.cf-info .cf-list a:hover { color: var(--gold); }
.cf-note { margin-top: 30px; border-left: 2px solid var(--gold); padding: 4px 0 4px 18px; }
.cf-note b { font-family: var(--ff-display); font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; font-size: .76rem; color: var(--ink); }
.cf-note ol { margin: 8px 0 0; padding-left: 18px; color: var(--muted); font-size: .92rem; line-height: 2.1; }
/* tighter form card (overrides §14 values) */
.conrad-form-sec .elementor-widget-form { padding: clamp(22px, 3vw, 38px); }
.conrad-form-sec .elementor-form-fields-wrapper { margin: -7px -9px; }
.conrad-form-sec .elementor-field-group { padding: 7px 9px; }
.conrad-form-sec .elementor-field-textual { padding: 11px 13px !important; font-size: .92rem; }
.conrad-form-sec textarea.elementor-field { height: 104px; min-height: 0; }
@media (max-width: 767px) { .conrad-form-sec .cf-info { position: static; margin-bottom: 26px; } }

/* ---- 15. fixed (parallax) hero & CTA backgrounds on inner pages -------
   clip-path clips a viewport-fixed image to its section, so the photo
   stays still while the page scrolls over it. Disabled on small screens. */
.g-phero, .g-cta { clip-path: inset(0); }
.g-phero .cta2-bg img, .g-cta .cta2-bg img {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover; animation: none; }
@media (max-width: 767px) {
  .g-phero, .g-cta { clip-path: none; }
  .g-phero .cta2-bg img, .g-cta .cta2-bg img { position: absolute; width: 100%; height: 100%; }
}

/* ---- 16. navy section variant (rhythm-breaker) ------------------------
   Add css class "sec-navy" to an Elementor section to flip any light
   conrad widget inside it to the dark navy treatment. */
.sec-navy section.sec, .sec-navy section.sec.sec-cream, .sec-navy section.tstrip { background: var(--navy); }
.sec-navy .h2, .sec-navy h3, .sec-navy h4, .sec-navy .lead-line,
.sec-navy .found, .sec-navy blockquote { color: #fff; }
.sec-navy p, .sec-navy li, .sec-navy .body-sm, .sec-navy .obj-body,
.sec-navy .split-copy p { color: rgba(255,255,255,.75); }
.sec-navy .found-cap { color: rgba(255,255,255,.55); }
.sec-navy .checks h4 { color: #fff; }
.sec-navy .ts b { color: #fff; }
.sec-navy .ts span { color: rgba(255,255,255,.6); }
.sec-navy .ts { border-color: rgba(255,255,255,.14); }
.sec-navy .step h4 { color: #fff; }
.sec-navy .step p { color: rgba(255,255,255,.72); }
.sec-navy .step .no { color: var(--gold); }
.sec-navy .rule, .sec-navy .rule-l { background: var(--gold); }
.sec-navy .btn-line { border-color: rgba(255,255,255,.4); color: #fff; }
.sec-navy .accordion button.ac-q { color: #fff !important; }
.sec-navy .ac-item { border-color: rgba(255,255,255,.14); }
.sec-navy .g-faq-list { border-color: rgba(255,255,255,.14); }
.sec-navy .ac-a p { color: rgba(255,255,255,.7); }

/* ---- 17. unified button hover: gold fill, white label -----------------
   Every button — primary (.btn-gold), outline (.btn-line, incl. on navy),
   ghost-on-dark (.btn-ghost) and the Elementor form submit — hovers to a
   gold background with white text, so no hover state loses contrast. */
.btn-gold:hover, .btn-gold:focus-visible { color: #fff; }
.btn-line:hover, .btn-line:focus-visible,
.sec-navy .btn-line:hover, .sec-navy .btn-line:focus-visible {
  background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--gold); border-color: var(--gold); color: #fff; }
.conrad-form-sec .elementor-button[type=submit],
.conrad-form-sec button.elementor-button { color: #fff !important; }
.conrad-form-sec .elementor-button[type=submit]:hover,
.conrad-form-sec button.elementor-button:hover {
  background: var(--gold-dk) !important; color: #fff !important; filter: none; }

/* ---- 13. WP admin bar offset (logged-in admins only) ------------------ */
body.admin-bar .hdr, body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .hdr, body.admin-bar .site-header { top: 46px; } }

/* =====================================================================
   HARD CARD SPEC — re-declares the portfolio/blog card at a specificity
   that other stylesheets using the same .pt-* class names cannot flatten.
   Scoped to .g-port/.g-blog so it only affects OUR sections.
   ===================================================================== */
.g-port .pt-item, .g-blog .pt-item { position: static; display: block; text-decoration: none;
  background: #fff; border: 1px solid var(--line); overflow: hidden; }
.g-port .pt-ph, .g-blog .pt-ph { position: relative; display: block; aspect-ratio: 4/3;
  overflow: hidden; background: var(--navy-soft); }
.g-port .pt-ph img, .g-blog .pt-ph img { position: absolute; inset: 0;
  width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.g-port .pt-bd, .g-blog .pt-bd { position: static; display: block; padding: 18px 20px 22px;
  background: #fff; text-align: left; }
.g-port .pt-bd b, .g-blog .pt-bd b { display: block; font-family: var(--ff-display);
  font-weight: 400; font-size: 1rem; color: var(--ink); line-height: 1.4; text-shadow: none; }
.g-port .pt-bd i, .g-blog .pt-bd i { display: block; font-style: normal; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }
.g-port .pt-item.hide, .g-port .pt-item.is-hidden,
.g-blog .pt-item.hide, .g-blog .pt-item.is-hidden { display: none; }
.g-port .port-filters, .g-blog .port-filters { display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px; margin-top: 42px; }
.g-port .port-filters:empty, .g-blog .port-filters:empty { display: none; }
.g-port .port-filters .filter-btn, .g-blog .port-filters .filter-btn {
  background: none; border: 1px solid var(--line); border-radius: 0; color: var(--muted);
  cursor: pointer; font-family: var(--ff-display); font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 11px 22px; transition: all .35s var(--ease); }
.g-port .port-filters .filter-btn:hover, .g-blog .port-filters .filter-btn:hover {
  border-color: var(--gold); color: var(--ink); background: none; }
.g-port .port-filters .filter-btn.active, .g-blog .port-filters .filter-btn.active,
.g-port .port-filters .filter-btn[aria-selected="true"] {
  background: var(--navy); border-color: var(--navy); color: #fff; }

/* footer area links (list rewritten by conrad-restore.php) */
.counties.areas-linked a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
.counties.areas-linked a:hover, .counties.areas-linked a:focus-visible { color: var(--gold); }

/* =====================================================================
   Team section spacing — the founder photo left a tall gap because the
   photo box was a fixed 4:5 while the copy column was shorter, and the
   member portraits were 4:5 (very tall) for two lines of text.
   ===================================================================== */
.g-team .tm-founder { align-items: stretch; margin-top: 46px; padding: clamp(22px, 3vw, 40px); }
.g-team .tm-founder-ph { aspect-ratio: auto; height: 100%; min-height: 320px; }
.g-team .tm-founder-bd { align-self: center; }
.g-team .tm-founder-bd p { margin-top: 14px; }
.g-team .tm-founder-bd .tm-quote { margin-top: 20px; }
/* squarer portraits + tighter cards */
.g-team .tm-grid { gap: 22px; margin-top: 44px; }
.g-team .tm-ph { aspect-ratio: 1/1; }
.g-team .tm-bd { padding: 18px 18px 22px; }
.g-team .tm-bd p { margin-top: 10px; }
@media (max-width: 860px) { .g-team .tm-founder-ph { min-height: 300px; } }

/* hero buttons (conrad-phero) */
.g-phero .phero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.g-phero .phero-btns:empty { display: none; }

/* wider page hero — .cta2-inner caps content at 780px, which reads narrow
   on desktop for an H1 + intro. Scoped to page heroes only. */
.g-phero .cta2-inner { max-width: 1080px; }
.g-phero h1 { font-size: clamp(2.15rem, 4.9vw, 3.85rem);
  max-width: 900px; margin-inline: auto; text-wrap: balance; }
.g-phero p { max-width: 900px; font-size: 1.05rem; text-wrap: pretty; }
@media (max-width: 900px) { .g-phero .cta2-inner { max-width: 100%; } }

/* team grid is 3 members now — 4 columns left an empty slot on the right */
.g-team .tm-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .g-team .tm-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .g-team .tm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .g-team .tm-grid { grid-template-columns: 1fr; } }

/* CTA symmetry — cnc.css sets .cta2 h2{white-space:nowrap} for the short
   homepage headline; long inner-page headings then overflow the 780px
   container while the paragraph stayed narrow. Let them share a measure. */
.g-cta .cta2-inner { max-width: 900px; }
.g-cta h2 { white-space: normal; text-wrap: balance; max-width: 780px; margin-inline: auto; }
.g-cta p { max-width: 780px; text-wrap: pretty; }

/* closing paragraph that follows a list / card grid (conrad-list, conrad-cards) */
.cr-outro { margin-top: 38px; text-align: center; }
.cr-outro:empty { display: none; }
.cr-outro p { margin: 0 auto; max-width: 780px; text-wrap: pretty; }
.cr-outro p + p { margin-top: 12px; }
.sec-dark .cr-outro p, .sec-navy .cr-outro p { color: rgba(255,255,255,.78); }

/* ---- split section with an inline check-list (conrad-split) ------------ */
.cr-split .split-copy { align-self: center; }
.cr-split .cr-split-checks { list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 14px; }
.cr-split .cr-split-checks:empty { display: none; }
.cr-split .cr-split-checks li { display: flex; gap: 14px; align-items: flex-start; }
.cr-split .cr-split-checks h4 { font-family: var(--ff-body, inherit); font-weight: 400;
  font-size: .92rem; line-height: 1.7; color: var(--muted); margin: 0; }
.cr-split .cr-split-checks .ck { flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--gold); display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px; }
.cr-split .cr-split-checks .ck svg { width: 13px; height: 13px; fill: none;
  stroke: var(--gold); stroke-width: 2.2; }
.cr-split .cr-split-outro { margin-top: 20px; font-style: italic; color: var(--muted); }
/* image column keeps the uniform covered frame */
.cr-split .obj-media { position: relative; height: 100%; min-height: 520px; overflow: hidden; }
.cr-split .obj-media img { position: absolute; inset: 0; width: 100% !important;
  height: 100% !important; object-fit: cover; display: block; }
.cr-split .split { align-items: stretch; }
@media (max-width: 1080px) {
  .cr-split .obj-media { min-height: 340px; height: 340px; }
  .cr-split .split { grid-template-columns: 1fr; }
}

/* ---- split: roomier rhythm + dark-band support ------------------------ */
.cr-split { padding-block: clamp(78px, 9vw, 140px); }
.cr-split .split { gap: clamp(48px, 6.5vw, 96px); }
.cr-split .split-copy { padding-block: 8px; }
.cr-split .split-copy > .h2 { margin-top: 6px; }
.cr-split .split-copy .rule-l { margin: 22px 0 6px; }
.cr-split .split-copy p.mt-3 { margin-top: 16px; }
.cr-split .cr-split-checks { margin-top: 32px; gap: 20px; }
.cr-split .cr-split-outro { margin-top: 26px; }
.cr-split .obj-media { min-height: 560px; }
@media (max-width: 1080px) {
  .cr-split { padding-block: clamp(56px, 8vw, 84px); }
  .cr-split .obj-media { min-height: 340px; height: 340px; }
}
/* dark band variant */
.sec-navy .cr-split .cr-split-checks h4 { color: rgba(255,255,255,.80); }
.sec-navy .cr-split .cr-split-outro,
.sec-navy .cr-split .split-copy p { color: rgba(255,255,255,.76); }
.sec-navy .cr-split .cr-split-checks .ck { border-color: var(--gold); }

/* ---- G4: list items = bold label + body, not one glued heading ---------- */
.cr-list .checks h4, .cr-split .cr-split-checks h4 {
  font-family: var(--ff-display); font-weight: 500; font-size: .94rem;
  letter-spacing: .01em; color: var(--ink); margin: 0 0 4px; line-height: 1.45; }
.cr-list .checks h4:empty, .cr-split .cr-split-checks h4:empty { display: none; }
.cr-list .checks li p, .cr-split .cr-split-checks li p {
  margin: 0; font-size: .92rem; line-height: 1.75; color: var(--muted); }
.cr-list .checks li p:empty, .cr-split .cr-split-checks li p:empty { display: none; }
/* dark bands */
.sec-navy .cr-list .checks h4, .sec-navy .cr-split .cr-split-checks h4,
.sec-dark .cr-list .checks h4 { color: #fff; }
.sec-navy .cr-list .checks li p, .sec-navy .cr-split .cr-split-checks li p,
.sec-dark .cr-list .checks li p { color: rgba(255,255,255,.76); }

/* ==== 14. single post (conrad-post) ================================== */

/* --- banner: featured image, navy wash, centred lockup --- */
.cp-banner { position: relative; display: flex; align-items: flex-end;
  min-height: 520px; padding: 0 0 clamp(48px, 6vw, 84px);
  background: var(--navy-deep) center / cover no-repeat; isolation: isolate; }
.cp-banner::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,23,32,.62) 0%, rgba(8,23,32,.74) 42%, rgba(8,23,32,.93) 100%); }
.cp-banner-in { text-align: center; }
.cp-eyebrow { display: inline-block; color: var(--gold-lt); }
.cp-title { margin-top: 18px; color: #fff; font-weight: 300; line-height: 1.16;
  font-size: clamp(1.95rem, 4.2vw, 3.35rem); max-width: 900px; margin-inline: auto; text-wrap: balance; }
.cp-meta { margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 14px;
  color: rgba(255,255,255,.66); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.cp-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }

/* --- boxed body: white card lifted over the cream band --- */
.cp-body { padding-top: 0; }
.cp-card { position: relative; margin: -70px auto 0; max-width: 900px; background: #fff;
  padding: clamp(30px, 4.4vw, 66px); border: 1px solid rgba(21,42,52,.08);
  box-shadow: 0 30px 70px -30px rgba(8,23,32,.28); }

/* --- table of contents --- */
.cp-toc { margin: 0 0 44px; padding: 26px 30px; background: var(--cream);
  border-left: 3px solid var(--gold); }
.cp-toc-t { margin: 0 0 14px; font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink); }
.cp-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: cptoc; }
.cp-toc li { counter-increment: cptoc; margin-top: 9px; line-height: 1.5; }
.cp-toc li.lv3 { padding-left: 22px; }
.cp-toc a { display: inline-flex; gap: 10px; color: var(--ink); text-decoration: none;
  font-size: .92rem; transition: color .25s var(--ease); }
.cp-toc a::before { content: counter(cptoc, decimal-leading-zero); flex: 0 0 auto;
  color: var(--gold); font-size: .74rem; letter-spacing: .06em; padding-top: .22em; }
.cp-toc li.lv3 a::before { content: '—'; }
.cp-toc a:hover { color: var(--gold); }

/* --- article body --- */
.cp-rich { color: var(--muted); font-size: 1rem; line-height: 1.9; }
.cp-rich > *:first-child { margin-top: 0; }
.cp-rich p { margin: 0 0 1.15em; }
.cp-rich h2, .cp-rich h3, .cp-rich h4 { color: var(--ink); font-weight: 500; line-height: 1.32;
  scroll-margin-top: 110px; }
.cp-rich h2 { margin: 2.3em 0 .6em; font-size: 1.62rem; }
.cp-rich h3 { margin: 1.9em 0 .5em; font-size: 1.22rem; }
.cp-rich h4 { margin: 1.6em 0 .45em; font-size: 1.02rem; }
.cp-rich h2 + h3 { margin-top: 1.1em; }
.cp-rich a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1px; transition: color .25s var(--ease); }
.cp-rich a:hover { color: var(--ink); }
.cp-rich ul, .cp-rich ol { margin: 0 0 1.3em; padding-left: 0; list-style: none; }
.cp-rich ol { counter-reset: cprich; }
.cp-rich li { position: relative; padding-left: 26px; margin-top: .55em; }
.cp-rich ul > li::before { content: ''; position: absolute; left: 4px; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.cp-rich ol > li { counter-increment: cprich; }
.cp-rich ol > li::before { content: counter(cprich) '.'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: .92em; }
.cp-rich img { max-width: 100%; height: auto; display: block; margin: 1.9em 0; }
.cp-rich figure { margin: 1.9em 0; }
.cp-rich figcaption { margin-top: 10px; font-size: .82rem; color: var(--muted); text-align: center; }
.cp-rich blockquote { margin: 1.9em 0; padding: 4px 0 4px 26px; border-left: 2px solid var(--gold);
  font-size: 1.08rem; line-height: 1.75; color: var(--ink); font-style: italic; }
.cp-rich blockquote p:last-child { margin-bottom: 0; }
.cp-rich table { width: 100%; border-collapse: collapse; margin: 1.9em 0; font-size: .92rem; }
.cp-rich th, .cp-rich td { padding: 12px 14px; border: 1px solid rgba(21,42,52,.12); text-align: left; }
.cp-rich th { background: var(--cream); color: var(--ink); font-weight: 600; }
.cp-rich hr { margin: 2.4em 0; border: 0; border-top: 1px solid rgba(21,42,52,.12); }

/* --- author card --- */
.cp-author { display: grid; grid-template-columns: 96px 1fr; gap: 26px; align-items: start;
  margin-top: 56px; padding: clamp(26px, 3.2vw, 40px); background: var(--navy-deep); }
.cp-au-ph { display: flex; align-items: center; justify-content: center;
  width: 96px; height: 96px; border: 1px solid rgba(201,160,99,.4); background: rgba(255,255,255,.04); }
.cp-au-ph img { width: 72px; height: auto; object-fit: contain; }
.cp-au-label { display: block; color: rgba(255,255,255,.5); }
.cp-au-name { display: block; margin-top: 10px; color: #fff; font-size: 1.3rem; font-weight: 400; line-height: 1.3; }
.cp-au-role { display: block; margin-top: 4px; color: var(--gold-lt); font-size: .84rem; font-style: normal;
  letter-spacing: .06em; }
.cp-author p { margin: 16px 0 0; color: rgba(255,255,255,.74); font-size: .93rem; line-height: 1.85; }
.cp-au-cta { margin-top: 24px; }

@media (max-width: 900px) {
  .cp-banner { min-height: 400px; }
  .cp-card { margin-top: -46px; }
}
@media (max-width: 620px) {
  .cp-banner { min-height: 330px; }
  .cp-meta { flex-wrap: wrap; gap: 10px; font-size: .72rem; }
  .cp-card { margin-top: -34px; }
  .cp-toc { padding: 22px; }
  .cp-author { grid-template-columns: 1fr; gap: 20px; }
  .cp-au-ph { width: 80px; height: 80px; }
}

/* ==== 15. footer v2 (conrad-footer-v2) ============================== */

.f2 { font-size: .85rem; }
.f2 h5 { font-family: var(--ff-body); font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: #fff; margin: 0 0 20px; }
.f2 h5::after { content: ''; display: block; width: 26px; height: 2px; margin-top: 12px; background: var(--gold); }

/* --- pre-footer call to action band --- */
.f2-cta { position: relative; background: var(--navy); overflow: hidden;
  padding: clamp(46px, 5.5vw, 76px) 0; border-top: 2px solid var(--gold); }
.f2-cta::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(760px 300px at 82% 0%, rgba(176,137,79,.20), transparent 68%); }
.f2-cta-in { position: relative; display: grid; grid-template-columns: 1.35fr .85fr;
  gap: clamp(30px, 4vw, 68px); align-items: center; }
.f2-cta-copy .eyebrow { color: var(--gold-lt); }
.f2-cta-copy h2 { margin: 14px 0 0; color: #fff; font-weight: 300; line-height: 1.18;
  font-size: clamp(1.6rem, 2.9vw, 2.5rem); max-width: 20ch; text-wrap: balance; }
.f2-cta-copy h2 .gold { color: var(--gold-lt); }
.f2-cta-copy p { margin: 16px 0 0; color: rgba(255,255,255,.7); font-size: .93rem;
  line-height: 1.8; max-width: 52ch; text-wrap: pretty; }
.f2-cta-act { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.f2-cta-or { color: rgba(255,255,255,.42); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.f2-cta-ph { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.f2-cta-ph a { color: #fff; font-size: 1.16rem; font-weight: 400; letter-spacing: .01em;
  text-decoration: none; border-bottom: 1px solid rgba(201,160,99,.45); padding-bottom: 3px;
  transition: color .28s var(--ease), border-color .28s var(--ease); }
.f2-cta-ph a:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* --- main grid --- */
.f2-main { background: var(--navy-deep); color: rgba(255,255,255,.62);
  padding: clamp(50px, 5.6vw, 82px) 0 0; }
.f2-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr 1.15fr;
  gap: clamp(28px, 3.4vw, 54px); }

/* Elementor's `.elementor img{height:auto}` outranks a lone class, hence the .f2 prefix. */
.f2 .f2-logo { height: 58px; width: auto; max-width: 100%; margin-bottom: 22px; }
.f2-blurb { margin: 0; font-size: .84rem; line-height: 1.85; max-width: 42ch; text-wrap: pretty; }
.f2-lic { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0 0;
  padding: 12px 14px; background: rgba(255,255,255,.04);
  border-left: 2px solid var(--gold); font-size: .74rem; line-height: 1.6; color: rgba(255,255,255,.72); }
.f2-lic svg { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 1px;
  fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.f2-soc { display: flex; gap: 10px; margin-top: 22px; }
.f2-so { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.f2-so svg { width: 16px; height: 16px; fill: rgba(255,255,255,.72); transition: fill .3s var(--ease); }
.f2-so:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.f2-so:hover svg { fill: #fff; }

.f2-col ul { list-style: none; margin: 0; padding: 0; }
.f2-col li { margin-top: 11px; line-height: 1.5; }
.f2-col li:first-child { margin-top: 0; }
.f2-col a { position: relative; color: rgba(255,255,255,.62); text-decoration: none;
  font-size: .84rem; transition: color .26s var(--ease), padding-left .26s var(--ease); }
.f2-col a::before { content: ''; position: absolute; left: 0; top: 50%; width: 0; height: 1px;
  background: var(--gold); transition: width .26s var(--ease); }
.f2-col a:hover { color: #fff; padding-left: 16px; }
.f2-col a:hover::before { width: 10px; }

.f2-ln { display: flex; align-items: center; gap: 11px; margin-top: 13px;
  color: rgba(255,255,255,.78); text-decoration: none; font-size: .9rem;
  transition: color .26s var(--ease); }
.f2-ln:first-of-type { margin-top: 0; }
.f2-ln svg, .f2-hours svg { width: 16px; height: 16px; flex: 0 0 16px;
  fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.f2-ln:hover { color: var(--gold-lt); }
.f2-hours { display: flex; align-items: center; gap: 11px; margin: 18px 0 0;
  font-size: .78rem; color: rgba(255,255,255,.5); }

/* --- areas strip --- */
.f2-areas { margin-top: clamp(40px, 4.4vw, 62px); padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.09); }
.f2-areas-t { display: block; margin-bottom: 15px; font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); }
.f2-areas ul { display: flex; flex-wrap: wrap; gap: 8px 0; list-style: none; margin: 0; padding: 0; }
.f2-areas li { display: flex; align-items: center; font-size: .78rem; }
.f2-areas li::after { content: ''; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(201,160,99,.5); margin: 0 14px; }
.f2-areas li:last-child::after { display: none; }
.f2-areas a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .26s var(--ease); }
.f2-areas a:hover { color: var(--gold-lt); }
/* Places with no landing page still render as <a>, just without the href. */
.f2-areas a:not([href]) { color: rgba(255,255,255,.4); pointer-events: none; }

/* --- certifications --- */
.f2-certs { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; flex-wrap: wrap; gap: 18px 30px; padding-bottom: 40px; }
.f2-certs-t { font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.45); }
.f2-certs-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.f2-cert { display: flex; align-items: center; justify-content: center;
  height: 54px; padding: 8px 14px; background: #fff; border-radius: 2px; }
.f2-cert img { max-height: 38px; width: auto; display: block; }

/* --- bottom bar with watermark --- */
.f2-btm { position: relative; overflow: hidden; background: #050f16; }
.f2-ghost { position: absolute; left: 50%; bottom: -.32em; transform: translateX(-50%);
  font-size: clamp(5rem, 17vw, 15rem); font-weight: 700; letter-spacing: .06em;
  line-height: 1; color: rgba(255,255,255,.028); white-space: nowrap;
  pointer-events: none; user-select: none; }
/* padding longhands, not the shorthand: this element is also a .wrap, and a
   `padding: 24px 0` would wipe .wrap's responsive side padding and leave the
   copyright and back-to-top flush against the screen edge. */
.f2-btm-in { position: relative; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; padding-top: 24px; padding-bottom: 24px; }
.f2-btm-in p { margin: 0; font-size: .76rem; color: rgba(255,255,255,.44); }
.f2-top { display: inline-flex; align-items: center; gap: 9px; font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .26s var(--ease); }
.f2-top svg { width: 14px; height: 14px; fill: none; stroke: var(--gold);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .3s var(--ease); }
.f2-top:hover { color: var(--gold-lt); }
.f2-top:hover svg { transform: translateY(-3px); }

@media (max-width: 1080px) {
  .f2-grid { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .f2-brand { grid-column: 1 / -1; }
  .f2-blurb { max-width: 60ch; }
}
@media (max-width: 900px) {
  .f2-cta-in { grid-template-columns: 1fr; }
  .f2-cta-copy h2 { max-width: 100%; }
}
@media (max-width: 620px) {
  .f2-grid { grid-template-columns: 1fr; row-gap: 38px; }
  .f2-cta-ph a { font-size: 1.05rem; }
  .f2-certs { flex-direction: column; align-items: flex-start; }
  .f2-btm-in { flex-direction: column; align-items: flex-start; }
  .f2-top { align-self: flex-end; }
  .f2-areas li::after { margin: 0 10px; }
}

/* audit: trust-bar phrase */
.ts b { white-space: nowrap; }

/* ---------------------------------------------------------------------------
   Team card with no headshot yet (e.g. Michelle Conrad, photo pending).
   Without this the empty .tm-ph is a bare navy rectangle that reads as a
   broken image; the brand mark makes the slot look deliberate instead.
   Drops out on its own as soon as a photo is set on the member.
   --------------------------------------------------------------------------- */
.tm-ph:empty {
	background: linear-gradient(158deg, var(--navy-soft, #123243) 0%, rgba(8, 23, 32, .96) 100%);
}
.tm-ph:empty::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url("/wp-content/plugins/conrad-widgets/assets/img/logo/logo-white.png") center center / 92px auto no-repeat;
	opacity: .17;
}
