/* ==========================================================================
   Beratung Advisors — static rebuild
   Design tokens captured from the current site (Barlow, navy/gold palette).
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy: #213d69;
  --navy-alt: #1a3e70;
  --gold: #f3be48;
  --gold-dark: #e0a92e;
  --cream: #f8f7f3;
  --text: #131313;
  --heading: #213d69;
  --white: #ffffff;
  --ink: #131313;
  --border: #e6e5e0;

  --maxw: 1200px;
  --gap: 24px;
  --radius: 0px;

  --font: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow: 0 10px 30px rgba(33, 61, 105, 0.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.3;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.2; }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(22px, 2.4vw, 29px); }
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; padding-left: 1.2em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #dfe6f1; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.text-center { text-align: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.lead { font-size: 19px; line-height: 1.5; }
.grid { display: grid; gap: var(--gap); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  padding: 18px 32px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  text-align: center;
}
.btn:hover { background: var(--gold-dark); text-decoration: none; transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: #16294a; }
.btn--outline { background: transparent; border: 2px solid var(--gold); color: var(--navy); }
.btn--sm { font-size: 16px; padding: 12px 22px; }
.header-cta .btn { font-size: 15px; padding: 11px 20px; }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar { background: var(--navy); color: var(--white); font-size: 14px; }
.topbar .container {
  display: flex; justify-content: flex-end; gap: 28px;
  padding-top: 8px; padding-bottom: 8px;
}
.topbar a { color: var(--white); font-weight: 600; }
.topbar a:hover { color: var(--gold); text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white); border-bottom: 1px solid var(--border);
}
/* Utility strip: navy bar, CTAs on the right, above the menu */
.utility { background: var(--navy); }
.utility .container { display: flex; justify-content: flex-end; gap: 14px; padding-top: 12px; padding-bottom: 12px; }
.utility .btn { font-size: 15px; padding: 12px 26px; }
.utility .btn--outline { background: transparent; border: 2px solid rgba(255,255,255,0.55); color: #fff; }
.utility .btn--outline:hover { border-color: var(--gold); background: rgba(255,255,255,0.08); }
/* Main bar: logo left, menu right */
.mainbar { background: #fff; }
.mainbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; padding-top: 16px; padding-bottom: 16px;
}
.brand img { height: 60px; width: auto; }
.main-nav { flex: 0 0 auto; }

/* Nav */
.main-nav > ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul { justify-content: flex-end; }
.main-nav > ul > li > a { font-weight: 600; color: var(--navy); padding: 10px 0; display: inline-block; font-size: 18px; }
.main-nav li.has-sub > a::after { content: none; }
.main-nav .submenu {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow);
  list-style: none; padding: 8px 0; margin: 0; display: none; z-index: 60;
}
.main-nav > ul > li.has-sub:hover > .submenu,
.main-nav > ul > li.has-sub:focus-within > .submenu { display: block; }
/* keep right-most dropdowns inside the viewport */
.main-nav > ul > li:nth-last-child(-n+2) .submenu { left: auto; right: 0; }
.submenu li { display: block; }
.submenu a { display: block; padding: 8px 18px; font-size: 15px; color: var(--text); white-space: nowrap; }
.submenu a:hover { background: var(--cream); color: var(--navy); text-decoration: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 620px; display: flex; align-items: center;
  color: var(--white); background: #0f2038 center/cover no-repeat; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; height: 56.25vw; min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%); border: 0; pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,17,30,0.80) 0%, rgba(16,17,30,0.50) 60%, rgba(16,17,30,0.30) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 660px; text-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.hero h1 .gold { color: var(--gold); }
.hero .btn { margin-top: 12px; }

/* ==========================================================================
   Press / logos band
   ========================================================================== */
.press { padding: 40px 0 48px; border-bottom: 1px solid var(--border); }
.press h2 { font-size: 22px; text-align: center; color: var(--navy); margin-bottom: 26px; }
.press__grid { display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; gap: 30px 40px; }
.press__grid img { max-height: 42px; width: auto; margin: 0 auto; filter: grayscale(100%); opacity: 0.75; transition: 0.2s; }
.press__grid img:hover { filter: none; opacity: 1; }

/* ==========================================================================
   "Am I on track?" band
   ========================================================================== */
.track { text-align: center; }
.track h2 { font-size: clamp(30px, 4vw, 44px); }
.track__list { list-style: none; padding: 0; margin: 20px 0 10px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.track__list li { font-size: 24px; font-weight: 500; color: var(--navy); }
.track__list li::before { content: "\2713"; color: var(--gold-dark); font-weight: 700; margin-right: 10px; }
.track__q { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; color: var(--navy); margin: 22px 0 18px; }

/* ==========================================================================
   Two-column feature blocks
   ========================================================================== */
.feature { align-items: center; }
.feature.grid { grid-template-columns: 1fr 1fr; gap: 56px; }
.feature__img img { box-shadow: var(--shadow); }
.proc-home__video { position: relative; width: 100%; aspect-ratio: 16 / 9; box-shadow: var(--shadow); }
.proc-home__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.feature--reverse .feature__img { order: 2; }

/* Simple / eMoney block */
.simple { background: var(--navy); color: #dfe6f1; }
.simple h2, .simple h3 { color: var(--white); }
.simple .eyebrow { color: var(--gold); }

/* ==========================================================================
   Process
   ========================================================================== */
.process { text-align: center; }
.process__video { max-width: 860px; margin: 28px auto 0; aspect-ratio: 16/9; box-shadow: var(--shadow); background: #0f2038; }
.process__video iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Services
   ========================================================================== */
.services__intro { max-width: 820px; margin: 0 auto 40px; text-align: center; }
.services__icons { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-bottom: 56px; }
.services__icons .svc-icon { text-align: center; }
.services__icons img { height: 74px; margin: 0 auto 10px; }
.services__icons span { display: block; font-weight: 600; color: var(--navy); font-size: 15px; }

.service-card {
  background: var(--white); border: 1px solid var(--border); border-left: 5px solid var(--gold);
  padding: 30px 32px; margin-bottom: 22px; box-shadow: 0 4px 14px rgba(33,61,105,0.05);
}
.service-card h3 { margin-bottom: 12px; }
.service-card .btn { margin-top: 8px; }

/* ==========================================================================
   Contact / form
   ========================================================================== */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-card { background: var(--white); padding: 34px; box-shadow: var(--shadow); border-top: 5px solid var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 6px; }
.field input {
  width: 100%; padding: 12px 14px; border: 1px solid #cfcec8;
  border-radius: var(--radius); font-family: var(--font); font-size: 16px;
}
.field input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-consent { font-size: 13px; color: #8a897f; margin-top: 14px; }
.hp { position: absolute; left: -9999px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #001C38; color: #cdd6e6; padding: 60px 0 28px; font-size: 15px; }
.site-footer a { color: #cdd6e6; }
.site-footer a:hover { color: var(--gold); text-decoration: none; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 48px; margin-bottom: 18px; }
.footer__disc { font-size: 12.5px; color: #9fb0cc; line-height: 1.6; }
.site-footer h4 { color: var(--white); font-size: 17px; margin-bottom: 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 9px; }
.footer__social { display: flex; gap: 14px; margin-top: 8px; }
.footer__social a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; }
.footer__social a:hover { border-color: var(--gold); text-decoration: none; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 13px; color: #9fb0cc; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .press__grid { grid-template-columns: repeat(3, 1fr); }
  .services__icons { grid-template-columns: repeat(3, 1fr); }
  .feature.grid, .contact__grid { grid-template-columns: 1fr; gap: 34px; }
  .feature--reverse .feature__img { order: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 52px 0; }
  .topbar { display: none; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: #fff; box-shadow: var(--shadow); padding: 80px 24px 24px;
    transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; z-index: 55;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav > ul > li { width: 100%; border-bottom: 1px solid var(--border); }
  .main-nav .submenu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 8px 14px; min-width: 0; }
  .nav-toggle { display: block; z-index: 60; }
  .header-cta { display: none; }
  .mobile-only { display: block; }
  .main-nav { flex: 0 0 auto; }
  .press__grid { grid-template-columns: repeat(2, 1fr); }
  .services__icons { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero { min-height: 520px; }
}

/* ==========================================================================
   Services — interactive wheel
   ========================================================================== */
.wheel {
  position: relative;
  width: min(600px, 94vw);
  aspect-ratio: 1 / 1;
  margin: 12px auto 0;
}
.wheel__hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46%; height: 46%; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px; box-shadow: var(--shadow); z-index: 2;
}
.wheel__hub h3 { color: #fff; font-size: clamp(15px, 1.9vw, 20px); margin: 0 0 8px; line-height: 1.15; }
.wheel__hub p { font-size: clamp(11.5px, 1.25vw, 13.5px); line-height: 1.4; margin: 0 0 12px; color: #dfe6f1; }
.wheel__hub .btn { font-size: 13px; padding: 9px 16px; }

.wheel__item {
  position: absolute; transform: translate(-50%, -50%);
  width: clamp(110px, 21%, 150px); aspect-ratio: 1 / 1;
  border-radius: 50%; background: #fff; border: 2px solid var(--border);
  box-shadow: 0 6px 18px rgba(33,61,105,0.10); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 10px; font-family: var(--font);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  z-index: 1;
}
.wheel__item img { height: clamp(40px, 6vw, 58px); width: auto; pointer-events: none; }
.wheel__item span { font-size: clamp(11px, 1.2vw, 13px); font-weight: 600; color: var(--navy); line-height: 1.12; }
.wheel__item:hover, .wheel__item:focus-visible, .wheel__item.active {
  border-color: var(--gold); box-shadow: 0 12px 26px rgba(33,61,105,0.20);
  transform: translate(-50%, -50%) scale(1.08); outline: none; z-index: 3;
}
.wheel__item.active { border-width: 3px; }

/* mobile stacked list (hidden on desktop) */
.wheel__list { display: none; margin-top: 8px; }
.service-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.service-card__head img { height: 52px; width: auto; }
.service-card__head h3 { margin: 0; }

@media (max-width: 640px) {
  .wheel { display: none; }
}


/* Image placeholder (for pictures to be added later) */
.img-placeholder {
  aspect-ratio: 4 / 3; width: 100%;
  border: 2px dashed rgba(255,255,255,0.5); border-radius: 4px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 20px;
  background: rgba(255,255,255,0.06);
}
.img-placeholder small { font-weight: 400; font-size: 14px; opacity: 0.8; }

/* ==========================================================================
   Services honeycomb (replaces radial wheel)
   ========================================================================== */
.honeycomb { display: flex; flex-direction: column; align-items: center; margin: 18px auto 0; }
.hc-row { display: flex; justify-content: center; gap: 26px; }
.hc-row--bottom { margin-top: -18px; }
.hc-row .hc:nth-child(2) { transform: translateY(-30px); }
.hc-row--bottom .hc:nth-child(2) { transform: translateY(30px); }
.hc {
  width: clamp(140px, 20vw, 190px); aspect-ratio: 1/1; border-radius: 50%;
  background: #fff; border: 3px solid var(--border); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 14px; font-family: var(--font);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 20px rgba(33,61,105,0.08);
}
.hc img { height: clamp(52px, 7vw, 72px); width: auto; pointer-events: none; }
.hc span { font-size: clamp(12px, 1.3vw, 14px); font-weight: 600; color: var(--navy); line-height: 1.15; text-align: center; }
.hc:hover, .hc:focus-visible, .hc.active {
  border-color: var(--gold); box-shadow: 0 14px 30px rgba(33,61,105,0.20);
  outline: none;
}
.hc-row .hc:nth-child(2):hover, .hc-row .hc:nth-child(2).active { transform: translateY(-30px) scale(1.06); }
.hc-row--bottom .hc:nth-child(2):hover, .hc-row--bottom .hc:nth-child(2).active { transform: translateY(30px) scale(1.06); }
.hc:hover, .hc.active, .hc:focus-visible { }
.hc:not(:nth-child(2)):hover, .hc:not(:nth-child(2)).active { transform: scale(1.06); }

.hc-detail {
  max-width: 720px; margin: 28px auto 0; text-align: center;
  background: #fff; border-top: 4px solid var(--gold);
  padding: 26px 30px; box-shadow: 0 6px 18px rgba(33,61,105,0.08);
}
.hc-detail h3 { margin-bottom: 10px; }
.hc-detail p { margin-bottom: 16px; }

@media (max-width: 760px) {
  .honeycomb { display: none; }
  .hc-detail { display: none; }
}


/* ==========================================================================
   Services — interactive plan wheel (SVG pie)
   ========================================================================== */
.svc-hover { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 20px; }
.svc-wheel-wrap { max-width: 560px; margin: 0 auto; width: 100%; }
.svc-panels { position: relative; }
.svc-panels .svc-block { display: none; }
.svc-panels .svc-block.is-active { display: block; }
.svc-panels .svc-block h2 { font-size: clamp(26px,3vw,40px); margin-bottom: 14px; }
.svc-panels .svc-block p { margin-bottom: 22px; }
.svc-wheel { width: 100%; max-width: 520px; margin: 0 auto; }
.svc-wheel svg { width: 100%; height: auto; display: block; overflow: visible; }
.seg { cursor: pointer; transition: transform 0.22s ease; }
.seg .slice { fill: var(--navy); stroke: #f8f7f3; stroke-width: 3; transition: fill 0.2s ease; }
.seg:hover, .seg:focus, .seg.active { transform: translate(var(--tx), var(--ty)); outline: none; }
.seg:hover .slice, .seg.active .slice { fill: #16294a; }
.seg text { pointer-events: none; }
.st-title { fill: #fff; font-weight: 700; font-size: 11px; letter-spacing: 0.02em; }
.st-bul { fill: #cdd6e6; font-size: 8px; }
.hub-center { fill: var(--gold); }
.hub-text { fill: #fff; font-weight: 800; font-size: 16px; text-anchor: middle; letter-spacing: 0.03em; }
.svc-detail h3 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 14px; }
.svc-detail p { margin-bottom: 22px; font-size: 17px; }

@media (max-width: 860px) {
  .svc-hover { grid-template-columns: 1fr; gap: 26px; }
  .svc-panels .svc-block { display: block; border-top: 1px solid #e2e2d8; padding-top: 18px; margin-top: 18px; }
  .svc-panels .svc-block:first-child { border-top: 0; margin-top: 0; padding-top: 0; }
}

/* ==========================================================================
   Interior pages (page hero, cards, steps, grids)
   ========================================================================== */
.page-hero { padding: 64px 0; }
.page-hero h1 { margin-bottom: 10px; }
.page-hero .lead { color: #dfe6f1; max-width: 60ch; }
.page-hero.section--navy .eyebrow { color: var(--gold); }

/* Financial Health Checkup */
.fhc-hero .lead { margin: 0 auto 24px; }
.chip { display: inline-block; background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px; padding: 7px 18px; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.fine { font-size: 14px; color: #b9c4d8; margin-top: 14px; }
.chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.chip-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  padding: 16px; color: #fff; font-weight: 600; font-size: 15px; }
.chip-ic { display: block; font-size: 24px; margin-bottom: 6px; color: var(--gold); }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 8px 0 30px; }
.quote-card { margin: 0; background: #fff; border-left: 5px solid var(--gold); box-shadow: 0 6px 18px rgba(33,61,105,0.08);
  padding: 24px 26px; font-size: 18px; color: var(--navy); font-style: italic; }

.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 26px; box-shadow: 0 4px 14px rgba(33,61,105,0.05); }
.area-card img { height: 60px; width: auto; margin-bottom: 12px; }
.area-num { display: block; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.area-card h3 { font-size: 22px; margin-bottom: 8px; }
.area-card p { margin: 0; font-size: 16px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 30px; }
.step { text-align: center; color: #dfe6f1; }
.step-num { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center;
  background: var(--gold); color: #fff; font-weight: 800; font-size: 24px; border-radius: 50%; margin-bottom: 14px; }
.step h3 { color: #fff; margin-bottom: 8px; }
.step p { margin: 0; }

@media (max-width: 860px) {
  .chips, .quote-grid, .area-grid, .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .chips, .quote-grid, .area-grid, .steps { grid-template-columns: 1fr; }
}

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 30px 24px; text-align: center; box-shadow: 0 4px 14px rgba(33,61,105,0.05); }
.avatar { width: 92px; height: 92px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-size: 32px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 3px solid var(--gold); }
.team-card h3 { font-size: 19px; margin-bottom: 4px; }
.team-role { color: var(--gold-dark); font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.team-links { display: flex; gap: 10px; justify-content: center; }
.team-links a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%; color: var(--navy); font-weight: 600; }
.team-links a:hover { background: var(--navy); color: #fff; text-decoration: none; border-color: var(--navy); }

/* ---- Offices ---- */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.office-card { background: #fff; border: 1px solid var(--border); border-top: 5px solid var(--gold); border-radius: 4px;
  padding: 28px 26px; box-shadow: 0 4px 14px rgba(33,61,105,0.05); }
.office-card h3 { font-size: 22px; margin-bottom: 4px; }
.office-sub { color: var(--gold-dark); font-weight: 600; margin-bottom: 10px; }
.office-meta { font-size: 15px; color: var(--text); margin-top: 14px; }

/* ---- Fees ---- */
/* Fee schedules are full-width detail graphics — stack them, never columnize. */
.fees-grid { display: flex; flex-direction: column; align-items: center; gap: 48px; }
.fees-wide { max-width: 1340px; }
.fees-grid img { display: block; width: 100%; max-width: 1293px; height: auto; }

@media (max-width: 860px) {
  .team-grid, .office-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .team-grid, .office-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Blog — posts & archives
   ========================================================================== */
.post-hero { padding: 54px 0; }
.post-meta { color: #b9c4d8; font-size: 15px; margin: 0; }
.post-wrap { max-width: 780px; }
.post-content { font-size: 18px; line-height: 1.75; color: var(--text); }
.post-content p { margin: 0 0 1.2em; }
.post-content h2 { font-size: 30px; color: var(--navy); margin: 1.5em 0 .5em; }
.post-content h3 { font-size: 24px; color: var(--navy); margin: 1.3em 0 .5em; }
.post-content ul, .post-content ol { margin: 0 0 1.2em 1.3em; }
.post-content li { margin-bottom: .4em; }
.post-content a { color: var(--navy); text-decoration: underline; }
.post-content img { border-radius: 6px; margin: 1.2em 0; height: auto; }
.post-content blockquote { border-left: 4px solid var(--gold); margin: 1.4em 0; padding: .4em 1.3em; color: var(--navy); font-style: italic; }
.post-content iframe { width: 100% !important; height: auto !important; aspect-ratio: 16/9; position: static !important; border: 0; margin: 1.2em 0; border-radius: 6px; display: block; }
.post-content figure { margin: 1.2em 0; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 24px; box-shadow: 0 4px 14px rgba(33,61,105,.05); display: flex; flex-direction: column; }

.post-card h3 { font-size: 20px; margin: 8px 0 6px; line-height: 1.25; }
.post-card h3 a { color: var(--navy); text-decoration: none; }
.post-card h3 a:hover { color: var(--gold-dark); }
.post-card-date { font-size: 13px; color: #8a897f; margin: 0 0 10px; }
.post-card p { font-size: 15px; margin: 0 0 14px; }
.post-card-link { margin-top: auto; font-weight: 600; color: var(--gold-dark); text-decoration: none; }
@media (max-width: 860px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .post-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Financial Health Assessment widget
   ========================================================================== */
.fha { max-width: 720px; margin: 0 auto; background: #fff; border-radius: 12px; box-shadow: var(--shadow); padding: 40px; }
.fha-progress { height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; margin-bottom: 22px; }
.fha-bar { height: 100%; width: 0; background: var(--gold); transition: width .3s ease; }
.fha-count { text-align: center; font-size: 14px; font-weight: 600; color: #8a897f; margin: 0 0 6px; }
.fha-area { text-align: center; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-dark); margin: 0 0 16px; }
.fha-q { text-align: center; font-size: clamp(20px,2.6vw,26px); color: var(--navy); min-height: 3em; display: flex; align-items: center; justify-content: center; margin: 0 0 24px; }
.fha-scale { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; max-width: 460px; margin: 0 auto 10px; }
.fha-scale button { aspect-ratio: 1/1; border: 2px solid var(--border); background: #fff; border-radius: 10px; font-size: 22px; font-weight: 700; color: var(--navy); cursor: pointer; transition: .15s; font-family: var(--font); }
.fha-scale button:hover { border-color: var(--gold); transform: translateY(-2px); }
.fha-scale button.sel { background: var(--navy); color: #fff; border-color: var(--navy); }
.fha-scale-labels { display: flex; justify-content: space-between; max-width: 460px; margin: 0 auto; font-size: 13px; color: #8a897f; }
.fha-nav { text-align: center; margin-top: 22px; }
.fha-back { background: none; border: 0; color: var(--navy); font-weight: 600; cursor: pointer; font-size: 15px; font-family: var(--font); }
.fha-back:hover { color: var(--gold-dark); }

.fha-score { text-align: center; margin: 10px 0 6px; }
.fha-score span { font-size: 84px; font-weight: 800; color: var(--navy); line-height: 1; }
.fha-score small { display: block; font-size: 16px; color: #8a897f; margin-top: 4px; }
.fha-verdict { font-size: 19px; color: var(--navy); font-weight: 500; max-width: 560px; margin: 0 auto 26px; }
.fha-areas { max-width: 560px; margin: 0 auto 30px; }
.fha-arearow { margin-bottom: 16px; }
.fha-arealabel { display: flex; justify-content: space-between; font-size: 15px; color: var(--navy); margin-bottom: 5px; }
.fha-arealabel strong { font-weight: 700; }
.fha-areabar { height: 12px; background: var(--border); border-radius: 999px; overflow: hidden; }
.fha-areafill { height: 100%; border-radius: 999px; transition: width .5s ease; }
.fha-areafill.strong { background: #2e9e5b; }
.fha-areafill.mid { background: var(--gold); }
.fha-areafill.low { background: #d9724a; }
.fha-result-cta { text-align: center; background: var(--cream); border-radius: 10px; padding: 30px; }
.fha-result-cta h3 { margin-bottom: 8px; }
.fha-result-cta .btn { margin: 8px 6px 0; }
@media (max-width: 560px) {
  .fha { padding: 26px 20px; }
  .fha-scale button { font-size: 18px; }
  .fha-score span { font-size: 64px; }
}

/* ==========================================================================
   Core Values Exercise
   ========================================================================== */
.cv { max-width: 860px; margin: 0 auto; background: #fff; border-radius: 12px; box-shadow: var(--shadow); padding: 40px; }
.cv-prompt { text-align: center; font-size: clamp(18px,2.2vw,22px); font-weight: 600; color: var(--navy); margin: 0 0 6px; }
.cv-count { text-align: center; font-size: 14px; font-weight: 600; color: var(--gold-dark); margin: 0 0 22px; }
.cv-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cv-chip { border: 2px solid var(--border); background: #fff; color: var(--navy); font-weight: 600; font-size: 16px; padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: .15s; font-family: var(--font); }
.cv-chip:hover { border-color: var(--gold); }
.cv-chip.sel { background: var(--navy); color: #fff; border-color: var(--navy); }
.cv-result { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cv-final { background: var(--navy); color: #fff; border-left: 5px solid var(--gold); padding: 18px 30px; border-radius: 8px; font-size: 22px; font-weight: 700; }
@media (max-width: 560px){ .cv { padding: 26px 18px; } .cv-chip { font-size: 14px; padding: 8px 15px; } }

/* ---- Forms list ---- */
.forms-list { max-width: 860px; margin: 0 auto; }
.form-item { display: flex; gap: 22px; align-items: flex-start; background: #fff; border: 1px solid var(--border);
  border-left: 5px solid var(--gold); border-radius: 6px; padding: 26px 28px; margin-bottom: 18px; box-shadow: 0 4px 14px rgba(33,61,105,.05); }
.form-ic { font-size: 34px; line-height: 1; flex-shrink: 0; }
.form-item h3 { font-size: 21px; margin-bottom: 6px; }
.form-item p { margin-bottom: 12px; }
.footer__legal { margin: 0 0 8px; }
.footer__legal a { color: #cdd6e6; text-decoration: underline; }
@media (max-width: 560px){ .form-item { flex-direction: column; gap: 12px; } }

/* ---- Comparison columns ---- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { border-radius: 10px; padding: 30px 28px; }
.compare-col h3 { margin-bottom: 16px; }
.compare-col h3 small { font-size: 15px; font-weight: 500; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li { padding: 10px 0 10px 30px; position: relative; border-top: 1px solid rgba(0,0,0,.06); }
.compare-col li:first-child { border-top: 0; }
.compare-col--plain { background: #fff; border: 1px solid var(--border); }
.compare-col--plain li::before { content: "\2715"; position: absolute; left: 0; color: #b9b8b1; font-weight: 700; }
.compare-col--cfp { background: var(--navy); color: #dfe6f1; border: 1px solid var(--navy); }
.compare-col--cfp h3 { color: #fff; }
.compare-col--cfp li { border-top-color: rgba(255,255,255,.15); }
.compare-col--cfp li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
@media (max-width: 760px){ .compare { grid-template-columns: 1fr; } }

/* ---- Team headshots (replaces monogram avatars) ---- */
.team-photo { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; object-position: top center;
  margin: 0 auto 18px; border: 4px solid var(--gold); box-shadow: 0 6px 18px rgba(33,61,105,.15); display: block; }

/* ---- Video galleries ---- */
.vid-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.vid-card a { display: block; background:#fff; border:1px solid var(--border); border-radius:10px; padding:24px;
  box-shadow:0 4px 14px rgba(33,61,105,.05); text-decoration:none; height:100%; transition:.18s; }
.vid-card a:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow:0 12px 26px rgba(33,61,105,.14); }
.vid-play { display:inline-flex; width:44px; height:44px; align-items:center; justify-content:center;
  background:var(--navy); color:#fff; border-radius:50%; font-size:16px; margin-bottom:12px; }
.vid-cat { display:block; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--gold-dark); margin-bottom:6px; }
.vid-card h3 { font-size:18px; color:var(--navy); margin:0 0 12px; line-height:1.3; }
.vid-link { font-weight:600; color:var(--gold-dark); font-size:15px; }
@media (max-width:860px){ .vid-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .vid-grid{ grid-template-columns:1fr; } }

/* ---- Belief list ---- */
.believe-list { list-style: none; padding: 0; margin: 0; }
.believe-list li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid var(--border); font-size: 17px; }
.believe-list li:last-child { border-bottom: 0; }
.believe-list li::before { content: "\2713"; position: absolute; left: 0; top: 14px; color: var(--gold-dark); font-weight: 700; }

/* ---- FAQ accordion ---- */
.faq { margin-top: 26px; }
.faq details { background:#fff; border:1px solid var(--border); border-radius:8px; margin-bottom:12px; padding:0 22px; box-shadow:0 3px 10px rgba(33,61,105,.04); }
.faq summary { cursor:pointer; font-weight:600; color:var(--navy); padding:18px 0; font-size:17px; list-style:none; position:relative; padding-right:30px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; position:absolute; right:0; top:16px; font-size:24px; color:var(--gold-dark); font-weight:400; }
.faq details[open] summary::after { content:"\2013"; }
.faq details p { margin:0 0 18px; }

/* ---- Events ---- */
.event { display: grid; grid-template-columns: 380px 1fr; gap: 30px; align-items: start; background:#fff;
  border:1px solid var(--border); border-radius:10px; padding:26px; margin-bottom:26px; box-shadow:0 4px 14px rgba(33,61,105,.05); }
.event-img img { width:100%; height:auto; border-radius:8px; }
.event-body h3 { font-size:26px; margin-bottom:8px; }
.event-meta { font-weight:700; color:var(--navy); margin-bottom:12px; }
.event-meta span { font-weight:500; color:var(--text); }
.past-events { list-style:none; padding:0; margin:26px 0 0; }
.past-events li { padding:12px 0; border-bottom:1px solid var(--border); color:var(--text); }
.past-events li strong { color:var(--navy); }
@media (max-width:860px){ .event { grid-template-columns:1fr; } }

/* Financial Health Checkup — host section for the ported app (app CSS is scoped to .fhc-scope) */
.fhc-page { padding: 0; }
.fhc-scope { display: block; }

/* ---- Blog featured images ---- */
.post-feature { display:block; width:100%; max-width:720px; max-height:340px; object-fit:cover; height:auto; margin:0 auto 30px; border-radius:8px; }
.post-card { padding: 0; overflow: hidden; }
.post-card-thumb { display: block; }
.post-card-thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.post-card > 
.post-card-cat, .post-card h3, .post-card-date, .post-card p, .post-card-link { padding-left: 22px; padding-right: 22px; }
.post-card-link { padding-bottom: 22px; display: block; }
.vid-thumb { position: relative; display: block; margin-bottom: 12px; border-radius: 8px; overflow: hidden; }
.vid-thumb img { width: 100%; height: 150px; object-fit: cover; display: block; }
.vid-thumb .vid-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); margin: 0; background: rgba(33,61,105,.9); }

/* ---- Recruiting page ---- */
.jump-nav-wrap { padding: 24px 0; background: var(--cream); border-bottom: 1px solid var(--border); }
.jump-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.jump-nav a { background:#fff; border:1px solid var(--border); border-radius:999px; padding:9px 18px; font-size:14px; font-weight:600; color:var(--navy); }
.jump-nav a:hover { border-color:var(--gold); text-decoration:none; }
.fit-list { list-style:none; padding:0; margin:24px 0; }
.fit-list li { position:relative; padding:14px 0 14px 36px; border-bottom:1px solid var(--border); }
.fit-list li::before { content:"\2713"; position:absolute; left:0; top:14px; color:var(--gold-dark); font-weight:700; font-size:18px; }
.comp-list { padding-left:22px; }
.comp-list li { margin-bottom:14px; }
.hire-list { list-style:none; padding:0; margin:24px 0 0; }
.hire-list li { display:flex; gap:16px; align-items:flex-start; padding:14px 0; border-bottom:1px solid var(--border); }
.step-n { flex-shrink:0; width:34px; height:34px; border-radius:50%; background:var(--navy); color:#fff; font-weight:700;
  display:inline-flex; align-items:center; justify-content:center; font-size:15px; }
.rv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.rv-card { position:relative; padding:0; border:0; background:none; cursor:pointer; border-radius:10px; overflow:hidden;
  box-shadow:0 6px 18px rgba(33,61,105,.10); transition:.18s; }
.rv-card:hover { transform:translateY(-3px); box-shadow:0 14px 30px rgba(33,61,105,.20); }
.rv-card img { width:100%; height:auto; display:block; }
.rv-play { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:56px; height:56px; border-radius:50%;
  background:rgba(33,61,105,.88); color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; }
.rv-modal { position:fixed; inset:0; background:rgba(10,18,32,.92); z-index:200; display:flex; align-items:center; justify-content:center; padding:30px; }
.rv-modal[hidden] { display:none; }
.rv-frame { width:min(1000px,92vw); aspect-ratio:16/9; }
.rv-frame iframe { width:100%; height:100%; border:0; border-radius:8px; }
.rv-close { position:absolute; top:20px; right:28px; background:none; border:0; color:#fff; font-size:44px; cursor:pointer; line-height:1; }
@media (max-width:860px){ .rv-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .rv-grid{ grid-template-columns:1fr; } }

/* ---- Our Process steps ---- */
.proc-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.proc-step { background:#fff; border:1px solid var(--border); border-radius:10px; padding:30px 26px; text-align:center;
  box-shadow:0 4px 14px rgba(33,61,105,.05); }
.proc-step img { height:90px; width:90px; object-fit:contain; margin:0 auto 16px; }
.proc-full { display:block; width:100%; max-width:900px; height:auto; margin:0 auto; }
.proc-num { display:block; font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:6px; }
.proc-step h3 { font-size:24px; margin-bottom:10px; }
.proc-step p { font-size:16px; margin:0; }
@media (max-width:860px){ .proc-steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .proc-steps{ grid-template-columns:1fr; } }

/* ==========================================================================
   Photo hero headers (lighthouse etc.) — real Elementor treatment
   ========================================================================== */
.page-hero--img {
  position: relative;
  /* Original: the lighthouse is a 2560x300 banner shown at NATURAL size on a
     navy band (background-size:auto, not cover), 300px tall, H1 centred over it. */
  background-image: var(--hero-img);
  background-color: #1c3856;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  min-height: 210px;
}
/* Group/photo heroes (not the wide lighthouse banner) center properly */
.page-hero--img.page-hero--photo {
  background-position: center;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 0;
}
.page-hero--img::before { content: ""; position: absolute; inset: 0; background: rgb(33,61,105); opacity: 0.6; z-index: 0; }
.page-hero--img > .container { position: relative; z-index: 1; }
.page-hero--img h1 { color: #fff; text-align: center; margin: 0; font-size: clamp(30px,4vw,46px); }
.page-hero--img .eyebrow { color: var(--gold); text-align: center; }
.page-hero--img .lead { color: #e7edf5; margin-left: auto; margin-right: auto; text-align: center; }

/* Gold CTA band with photo background */
.cta-band {
  position: relative;
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
}
.cta-band::before { content:""; position:absolute; inset:0; background: rgba(33,61,105,0.80); }
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2, .cta-band .lead { color: #fff; }

.divider-gold { width: 90px; height: 3px; background: var(--gold); margin: 18px auto 44px; }

/* ==========================================================================
   Flip boxes — Who We Work With + Our Team
   ========================================================================== */
.flip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.flip { display: block; text-decoration: none; perspective: 1200px; }
.flip__inner { position: relative; width: 100%; min-height: 340px; }
.flip__face {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 28px;
  border: 3px solid var(--gold);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: opacity .45s ease;
  backface-visibility: hidden;
}
/* face A: photo + title. face B: navy panel + detail. Fade cross-dissolve. */
.flip__face--a { opacity: 1; background-color: #E7E7E7; }
.flip__face--a::after { content:""; position:absolute; inset:0; background: rgba(0,0,0,0.32); }
.flip__face--a h3 { position: relative; z-index: 1; color: #fff; font-size: 24px; margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.flip__face--b { opacity: 0; background-color: #213D69; }
.flip__face--b p { color: #fff; margin: 0 0 10px; font-size: 15px; line-height: 1.5; }
.flip__face--b em { color: #e7edf5; }
.flip:hover .flip__face--a, .flip:focus-visible .flip__face--a { opacity: 0; }
.flip:hover .flip__face--b, .flip:focus-visible .flip__face--b { opacity: 1; }

.flip__btn {
  display: inline-block; margin-top: 14px; padding: 10px 20px;
  border: 2px solid var(--gold); color: var(--gold);
  font-weight: 800; font-size: 14px; border-radius: 4px;
  transition: background .2s ease, color .2s ease;
}
.flip:hover .flip__btn { background: #fff; border-color: var(--gold); color: var(--navy); }

/* Team flip: headshot -> family photo, no overlay/title */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-member { text-align: center; }
.flip--team .flip__inner { min-height: 0; aspect-ratio: 1 / 1; }
.flip--team .flip__face { border: none; border-radius: 6px; padding: 0; background-color: #eef1f5; }
.flip--team .flip__face::after { display: none; }
.flip--team .flip__face:last-child { opacity: 0; }
.flip--team:hover .flip__face:first-child { opacity: 0; }
.flip--team:hover .flip__face:last-child { opacity: 1; }
.team-member h3 { font-size: 17px; margin: 18px 0 2px; line-height: 1.35; }
.team-role { color: var(--muted); font-size: 15px; margin: 0 0 8px; }
.team-more { font-weight: 700; font-size: 14px; color: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.team-more:hover { color: var(--gold); }

/* ==========================================================================
   Client Access logins + Contact office photos
   ========================================================================== */
.login-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto; }
.login-card { background: #fff; border: 1px solid var(--border); border-top: 4px solid var(--gold);
  border-radius: 8px; padding: 36px 30px; text-align: center;
  box-shadow: 0 6px 20px rgba(33,61,105,0.07); display: flex; flex-direction: column; }
.login-card h2 { font-size: 22px; margin-bottom: 12px; }
.login-card p { color: var(--muted); flex: 1; }
.login-card .btn { margin-top: 18px; align-self: center; }
.login-help { text-align: center; margin-top: 30px; color: var(--muted); }

.office-photo { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; margin-bottom: 18px; display: block; }

@media (max-width: 980px) {
  .flip-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .login-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .page-hero--img { min-height: 180px; padding: 0; }
}
@media (max-width: 560px) {
  .flip-grid { grid-template-columns: 1fr; }
}
/* Touch devices can't hover — reveal the back face on tap via :active/:focus */
@media (hover: none) {
  .flip:active .flip__face--a { opacity: 0; }
  .flip:active .flip__face--b { opacity: 1; }
}



/* ---- Team card socials (LinkedIn / Facebook / Email) ---- */
.team-social { display:flex; justify-content:center; gap:12px; margin-top:12px; }
.team-social a { display:inline-flex; align-items:center; justify-content:center;
  width:32px; height:32px; border-radius:50%; background: var(--navy); transition: background .18s ease; }
.team-social a:hover { background: var(--gold); }
.team-social svg { width:16px; height:16px; fill:#fff; }

/* ==========================================================================
   Elementor-rendered content pages (gen_pages.py)
   ========================================================================== */
.el-flow { max-width: 980px; }
.el-flow > h2 { margin-top: 48px; font-size: clamp(26px,3.2vw,38px); }
.el-flow > h2:first-child { margin-top: 0; }
.el-flow > h3 { margin-top: 34px; }
.el-text { margin-bottom: 6px; }
.el-text p { margin: 0 0 1em; }
.el-text ul { margin: 0 0 1em; padding-left: 1.3em; }
.el-text li { margin-bottom: 6px; }
.el-text a { color: var(--navy); border-bottom: 2px solid var(--gold); }
/* Content photos were rendering full-bleed at flow width - cap and centre them. */
.el-img { display:block; width:100%; max-width: 620px; height:auto; margin: 30px auto; border-radius: 8px; }
/* Charts/tables (salary model, benefits) are meant to be read - give them room. */
.el-img--wide { max-width: 780px; }
/* SVG diagrams/icons have no intrinsic size - cap them so they can't blow up */
.el-img[src$=".svg"] { max-width: 760px; }
.el-video { position:relative; padding-bottom:56.25%; height:0; margin:30px 0; border-radius:8px; overflow:hidden; }
.el-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }

.el-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 30px 0 10px; }
.el-icon { background:#fff; border:1px solid var(--border); border-top:3px solid var(--gold);
  border-radius:8px; padding:26px 22px; box-shadow:0 4px 14px rgba(33,61,105,.05); }
.el-icon img { width:64px; height:64px; object-fit:contain; margin-bottom:14px; }
.el-icon h3 { font-size:20px; margin-bottom:8px; }
.el-icon p { font-size: 14px; margin:0; color: var(--text); }
@media (max-width: 900px){ .el-icons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .el-icons { grid-template-columns: 1fr; } }

/* ==========================================================================
   6 Areas of Financial Planning - the wheel
   Base wheel SVG with six wedge overlays that light up on hover (Elementor
   ships each wedge as its own SVG at opacity 0 -> 1). Wedge geometry measured
   off the live page.
   ========================================================================== */
.six-areas { display: grid; grid-template-columns: 42% 1fr; gap: 56px; align-items: start; }
.six-areas__wheel { position: sticky; top: 120px; }

.wheel { position: relative; width: 100%; }
.wheel__base { display: block; width: 100%; height: auto; }
.wheel__seg { position: absolute; display: block; line-height: 0; }
.wheel__seg img { width: 100%; height: auto; display: block;
  opacity: 0; transition: opacity .3s ease; }
.wheel__seg:hover img, .wheel__seg:focus-visible img { opacity: 1; }
.wheel__seg:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.six-areas__body .area-block { scroll-margin-top: 140px; padding-bottom: 30px; }
.six-areas__body .area-block + .area-block { border-top: 1px solid var(--border); padding-top: 34px; }
.six-areas__body h2 { font-size: clamp(24px,2.6vw,32px); margin-bottom: 12px; }
.six-areas__foot { max-width: 900px; margin-top: 56px; text-align: center; }

@media (max-width: 900px) {
  .six-areas { grid-template-columns: 1fr; gap: 34px; }
  .six-areas__wheel { position: static; max-width: 480px; margin: 0 auto; }
}

/* ---- Forms For Planning ---- */
.forms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-card { display: flex; flex-direction: column; background:#fff; border:1px solid var(--border);
  border-left: 4px solid var(--gold); border-radius: 8px; padding: 30px 28px;
  box-shadow: 0 6px 18px rgba(33,61,105,.06); }
.form-card__body { flex: 1; }
.form-card h2 { font-size: 22px; margin-bottom: 10px; }
.form-card p { font-size: 14px; margin: 0; }
.form-card__foot { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top: 22px; }
.form-card__meta { font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--muted,#8a897f); }
.form-card .btn { font-size:16px; padding:12px 26px; }
@media (max-width: 800px){ .forms-grid { grid-template-columns: 1fr; } }

/* ---- Recruiting pages: checklist + culture-video grid ---- */
.el-checklist { list-style: none; padding: 0; margin: 24px 0 10px; display: grid; gap: 14px; }
.el-checklist li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start;
  background:#fff; border:1px solid var(--border); border-radius:8px; padding:16px 18px; }
.el-checklist li img { width: 40px; height: 40px; object-fit: contain; margin-top: 2px; }
.el-checklist li p { margin: 0; }

.vid-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 20px; margin: 28px 0 10px; }
.vid-card { position: relative; padding: 0; border: 0; background: none; cursor: pointer;
  border-radius: 8px; overflow: hidden; box-shadow: 0 6px 18px rgba(33,61,105,.10); display: block; }
.vid-card img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .3s ease; }
.vid-card:hover img { transform: scale(1.04); }
.vid-card__play { position: absolute; inset: 0; margin: auto; width: 58px; height: 58px;
  border-radius: 50%; background: rgba(33,61,105,.82); border: 2px solid var(--gold); }
.vid-card__play::after { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff; }
.vid-card:hover .vid-card__play { background: var(--gold); }
.vid-card:hover .vid-card__play::after { border-left-color: var(--navy); }
@media (max-width: 900px){ .vid-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .vid-grid { grid-template-columns: 1fr; } }
/* "Explore Reasons To Join Our Team" thumbnails: 4 across to fill the space */
.vid-grid--reasons { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px){ .vid-grid--reasons { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px){ .vid-grid--reasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px){ .vid-grid--reasons { grid-template-columns: 1fr; } }

/* Lightbox */
.vid-lb { position: fixed; inset: 0; background: rgba(10,18,32,.92); display: none;
  align-items: center; justify-content: center; z-index: 200; padding: 24px; }
.vid-lb[open], .vid-lb.is-open { display: flex; }
.vid-lb__inner { position: relative; width: min(1100px, 100%); aspect-ratio: 16/9; }
.vid-lb iframe { width: 100%; height: 100%; border: 0; border-radius: 8px; }
.vid-lb__close { position: absolute; top: -46px; right: 0; background: none; border: 0; color: #fff;
  font-size: 34px; line-height: 1; cursor: pointer; }

/* Runs of photos render as a grid instead of a wall of full-width images */
.el-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.el-photos img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 8px; box-shadow: 0 4px 14px rgba(33,61,105,.08); }
@media (max-width: 900px){ .el-photos { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .el-photos { grid-template-columns: 1fr; } }

/* SVG icons in a photo run are icons, not photography - never crop them */
.el-photos img[src$=".svg"], .el-photos img[src$=".png"] {
  aspect-ratio: auto; height: auto; max-height: 190px; width: auto; max-width: 100%;
  object-fit: contain; margin: 0 auto; box-shadow: none; background: none;
}
.el-photos:has(img[src$=".svg"]) { grid-template-columns: repeat(3, 1fr); align-items: center; }

/* ---- Press logos: continuous scrolling marquee (matches the original) ---- */
.press__marquee { overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.press__track { display: flex; align-items: center; gap: 64px; width: max-content;
  animation: press-scroll 45s linear infinite; }
.press__marquee:hover .press__track { animation-play-state: paused; }
.press__track img { width: 143px; height: auto; max-height: none; flex: 0 0 auto;
  filter: grayscale(100%); opacity: .75; transition: .2s; }
.press__track img:hover { filter: none; opacity: 1; }
@keyframes press-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .press__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* Our Team hero uses the full-team photo - keep the scrim light enough to see faces */
.page-hero--team { padding: 80px 0 70px; background-position: center 30%; }
.page-hero--team { background-size: cover; }
.page-hero--team::before { content: ""; position: absolute; inset: 0; background: rgba(33, 61, 105, 0.45); }

/* Blog post body images: cap them so they don't take over the screen */
/* Keep each image's intended width (WP emits width/height + size classes)
   instead of flattening everything to one size; just cap at the column. */
.post-body img, .post-content img, .entry img {
  max-width: 100%; height: auto; margin: 26px auto; border-radius: 6px;
}
.post-content img.size-medium   { max-width: 300px; }
.post-content img.size-large    { max-width: 1024px; }
.post-content img.alignleft     { float: left;  margin: 8px 26px 18px 0; }
.post-content img.alignright    { float: right; margin: 8px 0 18px 26px; }
.post-content img.aligncenter   { display: block; margin-left: auto; margin-right: auto; }
.post-content::after { content: ""; display: block; clear: both; }
/* Client Events is a long photo recap - keep those images modest so it scrolls */
.el-flow--compact .el-img { max-width: 420px; max-height: 300px; object-fit: cover; }
/* Course video cards (Financial Planning Masterclass) */
.vid-grid--course { grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); }
.vid-card--wide { position:relative; aspect-ratio:16/9; background:var(--navy);
  display:flex; align-items:flex-end; padding:16px; text-align:left; }
.vid-card--wide .vid-card__title { position:relative; z-index:1; color:#fff; font-weight:700;
  font-size:15px; line-height:1.3; }
.vid-card--wide .vid-card__play { inset:auto; top:14px; right:14px; margin:0; width:42px; height:42px; }
.vid-card--wide:hover { background:#16294a; }

/* Client Access: eMoney is the primary portal (large, first); LPL sits below it
   deliberately - the original stacks them rather than showing them side by side. */
.login-card--primary, .login-card--secondary {
  background:#fff; border:1px solid var(--border); border-top:4px solid var(--gold);
  border-radius:8px; text-align:center; margin:0 auto 34px;
  box-shadow:0 6px 20px rgba(33,61,105,.07);
}
.login-card--primary { max-width: 900px; padding: 60px 40px; }
.login-card--primary h2 { font-size: clamp(28px,3.4vw,40px); margin-bottom:14px; }
.login-card--primary p { font-size: 20px; }
.login-card--primary .btn { margin-top: 20px; font-size: 22px; padding: 18px 44px; }
.login-card--secondary { max-width: 640px; padding: 34px 30px; }
.login-card--secondary h2 { font-size: 24px; }
.login-card--secondary .btn { margin-top: 14px; }

/* ==========================================================================
   Blog post — matches the original: centred title, modest featured image,
   date + author, share icons, rule, body, and a "More Posts" sidebar.
   ========================================================================== */
.post-page { padding-top: 56px; }
.post-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 56px; align-items: start; }
.post-title { text-align: center; font-size: clamp(30px,3.6vw,46px); margin-bottom: 30px; }
.post-feature { display:block; width:100%; max-width:420px; height:auto; max-height:none;
  object-fit: contain; margin: 0 auto 26px; border-radius: 4px; box-shadow: none; }
.post-byline { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap;
  gap:16px; margin-bottom: 18px; }
.post-meta { color: var(--muted,#8a897f); font-size: 16px; }
.post-share { display:flex; align-items:center; gap:12px; font-size:15px; color:var(--text); }
.post-share svg { width:20px; height:20px; fill: var(--navy); }
.post-share a:hover svg { fill: var(--gold-dark); }
.post-rule { border:0; border-top:1px solid var(--border); margin: 0 0 34px; }
.post-content { font-size: 18px; }
.post-content img { max-width: 100%; height: auto; border-radius: 6px; margin: 24px auto; }

.post-side { position: sticky; top: 120px; }
.post-side h2 { font-size: 26px; margin-bottom: 10px; }
.side-rule { width: 100%; height: 1px; background: var(--border); margin-bottom: 22px; }
.side-post { margin-bottom: 26px; }
.side-post h3 { font-size: 18px; line-height:1.3; margin-bottom: 6px; }
.side-post h3 a { color: var(--navy); }
.side-post p { font-size: 14px; color: var(--muted,#8a897f); margin-bottom: 6px; }
.side-more { font-size: 14px; font-weight: 700; color: var(--navy); }
.side-more:hover { color: var(--gold-dark); }

@media (max-width: 980px) {
  .post-layout { grid-template-columns: 1fr; gap: 40px; }
  .post-side { position: static; border-top: 1px solid var(--border); padding-top: 28px; }
}

/* ---- The Beratung Difference: 3 Uniques / Brand Promise, then alternating rows ---- */
.uniques { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.uniques__col h2 { font-size: clamp(26px,3vw,36px); margin-bottom: 6px; }
.uniques__col h4 { font-size: 20px; color: var(--navy); font-weight: 600; margin: 0 0 14px; }
.uniques__note { max-width: 900px; margin: 44px auto 0; text-align: center; font-size: 20px; }

.diff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.diff-row--reverse .diff-row__img { order: 2; }
.diff-row__img img { width: 100%; max-width: 560px; height: auto; border-radius: 8px;
  box-shadow: 0 10px 30px rgba(33,61,105,.12); margin: 0 auto; }
.diff-row__body h2 { font-size: clamp(26px,3vw,38px); margin-bottom: 16px; }
.diff-row__body .btn { margin-top: 10px; }
@media (max-width: 900px) {
  .uniques, .diff-row { grid-template-columns: 1fr; gap: 30px; }
  .diff-row--reverse .diff-row__img { order: 0; }
}

/* ---- Video galleries (masterclass, tips, client/advisor videos) ---- */
.vlist-count { text-align:center; color:var(--muted,#8a897f); font-weight:700; margin-bottom:30px;
  text-transform:uppercase; letter-spacing:.08em; font-size:14px; }
.vlist-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:26px; }
.vlist-card a { display:block; text-decoration:none; }
.vlist-thumb { position:relative; display:block; border-radius:8px; overflow:hidden;
  box-shadow:0 6px 18px rgba(33,61,105,.10); background:var(--navy); }
.vlist-thumb img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block;
  transition:transform .3s ease; }
.vlist-thumb--empty { aspect-ratio:16/9; }
.vlist-card a:hover .vlist-thumb img { transform:scale(1.04); }
.vlist-card h3 { font-size:17px; line-height:1.35; margin:14px 0 0; color:var(--navy); }
.vlist-card a:hover h3 { color:var(--gold-dark); }
@media (max-width:560px){ .vlist-grid { grid-template-columns:1fr; } }

/* Partner / supported-organisation logos: contain, never crop, link out */
.el-logos { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:40px; align-items:center; margin:34px 0; }
.el-logos a, .el-logos span { display:flex; align-items:center; justify-content:center; min-height:110px; }
.el-logos img { max-width:100%; max-height:90px; width:auto; height:auto; object-fit:contain;
  filter:grayscale(100%); opacity:.8; transition:.2s; }
.el-logos a:hover img { filter:none; opacity:1; }

/* ==========================================================================
   Team bio pages - matches the original: centred name + credential, then a
   two-column block (photo left / About + Contact right), then VERTICAL tabs
   (titles down the left, content on the right), then the full team grid.
   ========================================================================== */
.bio-page { padding-top: 60px; }
.bio-name { text-align:center; font-size: clamp(30px,4vw,50px); margin-bottom: 6px; }
.bio-cred { text-align:center; color: var(--navy); font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; font-size: clamp(16px,2vw,24px); margin: 0 0 54px; }

.bio-top { display:grid; grid-template-columns: 388px 1fr; gap: 60px; align-items:start; }
.bio-top__photo img { width:100%; height:auto; border-radius:4px;
  box-shadow:0 10px 30px rgba(33,61,105,.14); }
.bio-top__body h2 { font-size: clamp(26px,3vw,36px); margin-bottom: 4px; }
.bio-top__body p { margin: 0 0 1em; }
.bio-contact-h { margin-top: 40px; }
.divider-gold--left { width:90px; height:3px; background:var(--gold); margin:10px 0 22px; }
.bio-social { display:flex; gap:14px; }
.bio-social a { display:inline-flex; align-items:center; justify-content:center;
  width:32px; height:32px; border-radius:0; background:none; transition:color .18s ease; }
.bio-social a:hover svg { fill: var(--gold); }
.bio-social svg { width:24px; height:24px; fill: var(--navy); }

/* Vertical tabs */
.vtabs { display:grid; grid-template-columns: 330px 1fr; gap: 0; margin-top: 64px;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.vtabs__nav { display:flex; flex-direction:column; background: var(--cream);
  border-right: 1px solid var(--border); }
.vtab { background:none; border:0; border-bottom:1px solid var(--border);
  border-left: 4px solid transparent; cursor:pointer; text-align:left;
  padding:22px 26px; font-family:var(--font); font-size:19px; font-weight:700; color:var(--text); }
.vtab:last-child { border-bottom: 0; }
.vtab:hover { color: var(--navy); }
.vtab.is-active { background:#fff; color: var(--gold); border-left-color: transparent; }
.vtabs__panes { padding: 30px 34px; background:#fff; }
.vpane { display:none; }
.vpane.is-active { display:block; }
.vpane p { margin:0; line-height:1.9; }

@media (max-width: 900px) {
  .bio-top { grid-template-columns: 1fr; gap: 30px; }
  .bio-top__photo { max-width: 388px; margin: 0 auto; }
  .vtabs { grid-template-columns: 1fr; }
  .vtabs__nav { flex-direction: row; flex-wrap: wrap; border-right: 0;
    border-bottom: 1px solid var(--border); }
  .vtab { border-left: 0; border-bottom: 3px solid transparent; padding: 14px 18px; font-size: 16px; }
  .vtab.is-active { border-bottom-color: var(--gold); }
}

/* A section whose only content is a heading is a divider heading - centre it
   with the gold rule, like the original. */
.el-head-only { text-align: center; }
.el-head-only h2 { margin-bottom: 0; }
.el-head-only .divider-gold { margin: 18px auto 0; }

/* ---- Our Financial Planning Process: 6 steps, small icon beside the text ---- */
.proc-full { display:block; width:100%; max-width:1200px; height:auto; margin:0 auto; }
.psteps { display:grid; gap:22px; max-width:940px; margin:0 auto; }
.pstep { display:grid; grid-template-columns:56px 1fr; gap:22px; align-items:start;
  background:#fff; border:1px solid var(--border); border-left:4px solid var(--gold);
  border-radius:8px; padding:26px 28px; box-shadow:0 4px 14px rgba(33,61,105,.05); }
.pstep__icon { width:40px; height:40px; object-fit:contain; margin-top:4px; }
.pstep__num { display:block; font-size:13px; font-weight:800; letter-spacing:.12em;
  text-transform:uppercase; color:var(--gold-dark); margin-bottom:4px; }
.pstep__body h3 { font-size:24px; margin-bottom:8px; }
.pstep__body p { margin:0; font-size: 14px; }
.proc-video-h { font-size:20px; font-weight:600; color:#1E1810; line-height:1.4; }
@media (max-width:600px){ .pstep { grid-template-columns:1fr; gap:12px; } }

/* The original runs a tight 22px global line-height but relaxes it in prose. */
.el-text p, .el-text li, .post-content p, .post-content li,
.bio-top__body p, .vpane p, .pstep__body p, .diff-row__body p { line-height: 1.65; }
h1, h2, h3, h4, h5 { line-height: 1.2; }

/* Room photos on the Education Center render at ~367px on the original. */
.el-photos img { max-width: 380px; margin: 0 auto; }

/* Fee figures (1.00% / $2,500-$10,000 ...) - the headline number of each tier */
/* Fee table: rate + the account-value range it applies to */
.fee-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin: 26px 0; }
.fee-tier { text-align: center; background:#fff; border:1px solid var(--border);
  border-top: 3px solid var(--gold); border-radius: 8px; padding: 26px 18px;
  box-shadow: 0 4px 14px rgba(33,61,105,.05); }
.fee-tier__rate { display:block; font-size: clamp(28px,3vw,38px); font-weight:600;
  color: var(--navy); line-height:1.1; margin-bottom: 8px; }
.fee-tier__range { display:block; font-size:16px; font-weight:400; color: var(--text); }
.fee-tier__desc { display:block; font-size:14px; color: var(--muted,#8a897f); margin-top:6px; }

/* Numbered process lists (hiring process, IPS steps) */
.step-list { counter-reset: step; list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 7px; }
.step-list li { counter-increment: step; display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: center; background:#fff; border:1px solid var(--border); border-radius:6px; padding:9px 14px; font-size:15px; line-height:1.35; }
.step-list li::before { content: counter(step); display:flex; align-items:center; justify-content:center;
  width:28px; height:28px; border-radius:50%; background:var(--navy); color:#fff;
  font-weight:700; font-size:13px; }

/* ---- Cookie consent banner ---- */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--navy); color: #e7edf5; box-shadow: 0 -6px 24px rgba(0,0,0,.2); }
.cookie-banner__inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 20px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.cookie-banner p { margin: 0; font-size: 15px; max-width: 70ch; }
.cookie-banner a { color: var(--gold); }
.cookie-banner__actions { display: flex; align-items: center; gap: 10px; }
.cookie-banner .btn--outline { border-color: rgba(255,255,255,.55); color: #fff; }
.cookie-banner__link { font-size: 14px; font-weight: 700; }
@media (max-width: 700px) { .cookie-banner__inner { flex-direction: column; align-items: flex-start; } }

/* ---- Accessibility toolbar ---- */
.a11y { position: fixed; right: 0; top: 40%; z-index: 260; }
.a11y__toggle { display:flex; align-items:center; justify-content:center; width:46px; height:46px;
  border:0; border-radius: 8px 0 0 8px; background: var(--navy); cursor:pointer; }
.a11y__toggle svg { width:24px; height:24px; fill:#fff; }
.a11y__toggle:hover { background: var(--gold); }
.a11y__toggle:hover svg { fill: var(--navy); }
.a11y__panel { position:absolute; right:52px; top:0; width:230px; background:#fff;
  border:1px solid var(--border); border-radius:8px; box-shadow:0 10px 30px rgba(33,61,105,.18);
  padding:12px; }
.a11y__title { margin:0 0 8px; font-weight:700; color:var(--navy); font-size:14px;
  text-transform:uppercase; letter-spacing:.08em; }
.a11y__opt { display:flex; align-items:center; gap:10px; width:100%; text-align:left;
  background:none; border:0; padding:9px 8px; border-radius:6px; cursor:pointer;
  font-family:var(--font); font-size:15px; color:var(--text); }
.a11y__opt:hover { background: var(--cream); color: var(--navy); }
.a11y__key { display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px;
  border-radius:5px; background:var(--cream); color:var(--navy); font-weight:800; font-size:13px; }

/* Modes */
html.a11y-gray  { filter: grayscale(100%); }
html.a11y-hc    { filter: contrast(150%); }
html.a11y-light body { background:#fff; }
html.a11y-light .section--navy, html.a11y-light .site-footer,
html.a11y-light .cta-band, html.a11y-light .page-hero--img { background:#fff !important; color:#213d69 !important; }
html.a11y-light .page-hero--img::before, html.a11y-light .cta-band::before { background: rgba(255,255,255,.86) !important; }
html.a11y-light .section--navy h1, html.a11y-light .section--navy h2,
html.a11y-light .page-hero--img h1, html.a11y-light .cta-band h2, html.a11y-light .cta-band .lead { color:#213d69 !important; }
html.a11y-font, html.a11y-font body, html.a11y-font h1, html.a11y-font h2, html.a11y-font h3 {
  font-family: Verdana, Tahoma, sans-serif !important; letter-spacing: .01em; }
html.a11y-links a { text-decoration: underline !important; }
@media print { .a11y, .cookie-banner { display:none; } }


/* Images with an explicit Elementor width (e.g. the 15% logo mark) */
.el-img--sized { max-width: none; margin: 24px auto; }

/* Constant Contact inline signup forms */
.ctct-wrap { max-width: 720px; margin: 30px auto; scroll-margin-top: 140px; }
.ctct-wrap .ctct-inline-form { min-height: 60px; }

@media (max-width: 600px) {  }


.pstep { transition: box-shadow .2s ease, transform .2s ease; }
.pstep:hover { box-shadow: 0 10px 26px rgba(33,61,105,.14); transform: translateY(-2px); }

/* ---- Financial Health Checkup: it ships its own stylesheet. Keep our globals
        out of it so the app lays out as its author intended. ---- */
.fhc-scope, .fhc-scope * { line-height: normal; }
.fhc-scope { font-size: 16px; }
.fhc-scope img { max-width: none; }
.fhc-scope .container { max-width: none; padding: 0; }

/* Step banners: full-width graphics (924px on the original), stacked - not icons */
.pbanners { display: grid; gap: 26px; max-width: 924px; margin: 30px auto 0; }
.pbanners img { width: 100%; height: auto; display: block; transition: transform .25s ease; }
.pbanners img:hover { transform: scale(1.02); }
/* Step icons keep their own intrinsic sizes (150/145/190/91 on the original) */
.pstep__icon { width: auto; height: auto; max-width: 90px; max-height: 90px; object-fit: contain; }
.pstep { transition: box-shadow .2s ease, transform .2s ease; }
.pstep:hover { box-shadow: 0 10px 26px rgba(33,61,105,.14); transform: translateY(-2px); }

/* Hovering a wedge should highlight the matching description on the right */
.six-areas__body .area-block { transition: background .2s ease, border-color .2s ease; border-left: 4px solid transparent; padding-left: 18px; }
.six-areas__body .area-block.is-hot { background: #fffaf0; border-left-color: var(--gold); }
.wheel__seg.is-hot img, .wheel__seg:hover img { opacity: 1; }

/* Comparison bullets (CFP vs non-CFP) - a list, not a wall of cards */
.el-points { list-style: none; padding: 0; margin: 18px 0 26px; }
.el-points li { position: relative; padding-left: 30px; margin-bottom: 14px; font-size: 17px; }
.el-points li::before {
  content: ""; position: absolute; left: 6px; top: .5em; width: 8px; height: 8px;
  border-right: 2px solid var(--gold); border-top: 2px solid var(--gold); transform: rotate(45deg);
}

/* ---- Footer badges: FPA + EOS side by side (~105px), BrokerCheck on its own
        row below. Width caps keep the two side by side even in a narrow column. ---- */
.footer__badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.footer__badges img { height: auto; width: auto; max-height: 105px; max-width: 46%;
  background: none; padding: 0; border-radius: 0; display: block; object-fit: contain; }
.footer__badges a { flex-basis: 100%; margin-top: 8px; line-height: 0; background: none; padding: 0; }
.footer__badges a img { max-height: 36px; max-width: none; }

/* ---- Why Choose a CFP: two-column comparison + four pillars ---- */
.cfp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 10px 0 30px; }
.cfp-col { background:#fff; border:1px solid var(--border); border-radius:8px; padding:32px 30px;
  box-shadow:0 4px 14px rgba(33,61,105,.05); }
.cfp-col--gold { border-top:4px solid var(--gold); }
.cfp-col h2 { font-size: 24px; margin-bottom: 14px; }
.pillar-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:26px; margin-top:40px; }
.pillar { background:#fff; border:1px solid var(--border); border-radius:8px; overflow:hidden;
  box-shadow:0 4px 14px rgba(33,61,105,.05); display:flex; flex-direction:column; }
.pillar img { width:100%; height:170px; object-fit:cover; }
.pillar h3 { font-size:22px; margin:18px 22px 8px; }
.pillar p { margin:0 22px 18px; font-size:15px; flex:1; }
.pillar .btn { align-self:flex-start; margin:0 22px 22px; }
@media (max-width:900px){ .cfp-compare { grid-template-columns:1fr; } .pillar-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .pillar-grid { grid-template-columns:1fr; } }

/* ---- Financial Planning fee cards ---- */
.fp-fees { display:grid; grid-template-columns:1fr 1fr; gap:30px; align-items:start; }
.fp-fee-card { background:#fff; border:1px solid var(--border); border-top:3px solid var(--gold);
  border-radius:8px; padding:34px 30px; box-shadow:0 6px 18px rgba(33,61,105,.06); }
.fp-fee-card h3 { font-size:24px; margin-bottom:16px; }
.fp-fee-card .fee-sub { font-weight:700; color:var(--navy); margin:18px 0 10px; }
.fp-fee-card--wide { max-width:640px; margin:30px auto 0; text-align:center; }
.fp-fee-card .fine { font-size:13px; color:var(--muted,#8a897f); }
@media (max-width:820px){ .fp-fees { grid-template-columns:1fr; } }
/* ---- RESTORED: Hero CTA arrow (small, white, inline) ---- */
.btn--arrow { display: inline-flex; align-items: center; gap: 10px; }
.btn__arrow { width: 20px !important; height: 20px !important; display: inline-block !important; flex: 0 0 auto; filter: brightness(0) invert(1); margin: 0 !important; vertical-align: middle; }

/* ---- RESTORED: Homepage "Connect with us" navy band ---- */
.section.connect { background: #1a3e70; padding: 66px 0 56px; }
.section.connect h2 { color: #fff; }
.section.connect .divider-gold { margin-left: auto; margin-right: auto; }
.section.connect .ctct-wrap { display: flex; justify-content: center; margin-top: 28px; }
.section.connect .ctct-wrap { display: flex; justify-content: center; margin-top: 28px; }

/* ---- Bio pages: Our Team band on lighthouse photo (match reference) ---- */
.team-band { position: relative; background-image: var(--team-bg); background-size: cover; background-position: center; }
.team-band::before { content:""; position:absolute; inset:0; background: rgba(38,58,102,0.78); }
.team-band > .container { position: relative; z-index: 1; }
.team-band h2 { color: #fff; }

/* ---- Verbatim WordPress content pages: clean, readable styling ---- */
.wxr-content { max-width: 900px; margin: 0 auto; }
.wxr-content h2 { font-size: clamp(24px,3vw,34px); margin: 40px 0 14px; }
.wxr-content h3 { font-size: clamp(20px,2.4vw,26px); margin: 24px 0 10px; }
.wxr-content h4, .wxr-content h5 { margin: 18px 0 10px; }
.wxr-content h5[style*="center"] { color: var(--navy); font-weight: 600; }
.wxr-content p { margin: 0 0 14px; line-height: 1.7; }
.wxr-content ul, .wxr-content ol { margin: 0 0 16px 22px; }
.wxr-content li { margin: 6px 0; line-height: 1.6; }
.wxr-content img { max-width: 320px; width: auto; height: auto; display: inline-block; vertical-align: top; margin: 8px; border-radius: 4px; }
.wxr-content h2, .wxr-content h3, .wxr-content h4 { clear: both; }
.wxr-content a { color: var(--navy); text-decoration: underline; }
.wxr-content a:hover { color: var(--gold); }
.wxr-content > a[href^="#"] { display:inline-block; margin: 2px 10px 2px 0; color: var(--gold); font-weight: 600; text-decoration: none; }

/* Forms-for-planning link cards */
.link-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:38px; }
.link-card { border:1px solid var(--gold); border-radius:6px; padding:30px 24px; background:#fff; display:flex; flex-direction:column; text-align:center; }
.link-card h3 { color:var(--navy); font-size:20px; line-height:1.3; margin:0 0 14px; }
.link-card p { line-height:1.6; margin:0 0 22px; flex:1; }
.link-card .btn { align-self:center; }
@media (max-width:900px){ .link-cards { grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .link-cards { grid-template-columns:1fr; } }

/* Mission statement box */
.statement-box { border:1px solid var(--gold); border-radius:4px; padding:38px 34px; text-align:center; }
.statement-box p { font-size:19px; line-height:1.5; color:var(--navy); margin:0 0 18px; }
.statement-box p:last-child { margin-bottom:0; }

/* Core Values two-column (team photo + values graphic) */
.cv-row { display:grid; grid-template-columns:40% 60%; gap:44px; align-items:center; }
.cv-row img { width:100%; height:auto; border-radius:6px; }
.cv-graphic img { border-radius:0; }
@media (max-width:900px){ .cv-row { grid-template-columns:1fr; gap:28px; } }

/* Non-profit: gold offset image frame */
.np-frame { position:relative; display:block; max-width:460px; margin:0 auto; }
.np-frame img { position:relative; z-index:1; width:100%; height:auto; display:block; border-radius:2px; }
.np-frame::after { content:""; position:absolute; z-index:0; top:20px; left:20px; width:100%; height:100%; border:2px solid var(--gold); border-radius:2px; }

/* Non-profit: fee boxes (navy header + gray body) */
.fee-cards { display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-top:36px; }
.fee-card { border-radius:4px; overflow:hidden; box-shadow:0 1px 4px rgba(0,0,0,0.08); }
.fee-card__head { background:var(--navy); color:#fff; padding:26px 24px; text-align:center; }
.fee-card__head h3 { color:#fff; margin:0; font-size:22px; line-height:1.3; }
.fee-card__body { background:#f0f1f3; padding:42px 30px; text-align:center; }
.fee-card__body .price { font-size:28px; font-weight:700; color:var(--navy); margin:0 0 6px; }
.fee-card__body p { margin:0 0 14px; }
.fee-card__body .fee-line { font-size:16px; margin:0 0 16px; }
.fee-card__body .fee-line strong { color:var(--navy); }
@media (max-width:900px){ .fee-cards { grid-template-columns:1fr; gap:28px; } }

/* Masterclass video gallery (player + course list) */
.mc-gallery { display:grid; grid-template-columns:minmax(0,1fr) 320px; height:430px; max-width:1000px; margin:0 auto; background:var(--navy); border-radius:6px; overflow:hidden; box-shadow:0 4px 18px rgba(33,61,105,.18); }
.mc-player { position:relative; min-width:0; background:#000; }
.mc-player iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.mc-list { overflow-y:auto; }
.mc-item { display:block; width:100%; text-align:left; background:transparent; color:#dfe6f1; border:0; border-bottom:1px solid rgba(255,255,255,.10); border-left:3px solid transparent; padding:14px 18px; font-size:13.5px; font-weight:600; line-height:1.35; cursor:pointer; font-family:inherit; }
.mc-item:hover { background:rgba(255,255,255,.06); color:#fff; }
.mc-item.is-active { background:rgba(201,151,59,.18); color:#fff; border-left-color:var(--gold); }
@media (max-width:820px){ .mc-gallery { grid-template-columns:1fr; height:auto; } .mc-player { aspect-ratio:16/9; } .mc-list { max-height:300px; } }

/* Our Team hero: shorter so it doesn't dominate */
.page-hero--img.page-hero--team { min-height:300px; padding:0; }

/* Clean aligned checklist */
ul.check-list { list-style:none; max-width:900px; margin:8px auto 0; padding:0; }
ul.check-list li { position:relative; padding:0 0 20px 52px; line-height:1.55; color:var(--text); }
ul.check-list li::before { content:""; position:absolute; left:0; top:0; width:34px; height:34px;
  background:url('/wp-content/uploads/2023/03/confirmation-symbol-icon-1152155.png') center/contain no-repeat; }
/* any stray inline check icons stay small */
.wxr-content img[src*="confirmation-symbol"] { width:34px; height:34px; object-fit:contain; vertical-align:middle; }

/* Support-team "Explore Reasons" image tiles (4-col, grow on hover) */
.reason-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin:22px auto 0; max-width:1100px; }
.reason-grid img { width:100%; height:auto; border-radius:6px; display:block; transition:transform .25s ease, box-shadow .25s ease; }
.reason-grid img:hover { transform:scale(1.05); box-shadow:0 10px 26px rgba(33,61,105,.28); position:relative; z-index:2; }
@media (max-width:900px){ .reason-grid { grid-template-columns:repeat(2,1fr); } }

/* Core Values: gold offset frame on team photo + top-aligned row */
.cv-row { align-items:center; }
.cv-photo { position:relative; }
.cv-photo img { position:relative; z-index:1; }
.cv-photo::after { content:""; position:absolute; z-index:0; left:22px; bottom:-22px; width:100%; height:100%; border:2px solid var(--gold); border-radius:4px; }

/* Career-path flip image (front flips to alternative paths on hover) */
.flip-img { position:relative; max-width:1000px; margin:24px auto 8px; border-radius:6px; overflow:hidden; }
.flip-img img { width:100%; max-width:100%; height:auto; display:block; margin:0; }
.wxr-content .flip-img img { max-width:100%; width:100%; margin:0; }
.flip-img__b { position:absolute; inset:0; opacity:0; transition:opacity .45s ease; }
.flip-img:hover .flip-img__b { opacity:1; }
.flip-img__a { transition:opacity .45s ease; }
.flip-img:hover .flip-img__a { opacity:0; }
/* Support-team salary/plan charts: readable width */
.chart-img { display:block; width:100%; max-width:940px; height:auto; margin:20px auto; border-radius:4px; }

/* Make chart/plan/salary images readable (beat the .wxr-content 320px cap) */
.wxr-content img.chart-img, .chart-img { max-width: 960px !important; width: 100% !important; height: auto !important; margin: 24px auto !important; display: block !important; border-radius: 4px; }
/* Core Values: tighter intro header + larger values graphic */
.cv-intro { padding-top: 48px !important; padding-bottom: 8px !important; }
.cv-intro .divider-gold { margin: 16px auto 20px; }
.cv-row { grid-template-columns: 26% 74%; gap: 34px; max-width: 1360px; margin: 0 auto; align-items: center; }

/* Core Values graphic: fill its column fully (readable) */
.cv-graphic img { width:100% !important; max-width:none !important; height:auto; }
@media (max-width:900px){ .cv-row { grid-template-columns:1fr; } }

/* Core Values intro: compact header so the values show sooner */
.cv-intro { padding-top: 30px !important; padding-bottom: 6px !important; }
.cv-intro h2 { font-size: 32px; margin-bottom: 0; }
.cv-intro .divider-gold { margin: 12px auto 16px; }
.cv-intro .el-text p { margin: 0 0 8px; font-size: 16px; line-height: 1.5; }

/* Client Events: clean event rows */
.event-row { display:grid; grid-template-columns:minmax(0,440px) 1fr; gap:40px; align-items:start; margin:0 auto 56px; max-width:1100px; }
.event-row__img img { width:100%; height:auto; border-radius:8px; box-shadow:0 8px 24px rgba(33,61,105,.14); }
.event-row__body h3 { font-size:clamp(24px,2.6vw,32px); color:var(--navy); margin:0 0 14px; }
.event-row__body p { margin:0 0 10px; line-height:1.55; }
.event-reg { font-weight:700; color:var(--gold-dark); }
.event-reg:hover { text-decoration:underline; }
@media (max-width:820px){ .event-row { grid-template-columns:1fr; gap:20px; } }
.events-past-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:24px; }
.ep-card { margin:0; }
.ep-media { position:relative; aspect-ratio:16/9; border-radius:6px; overflow:hidden; background:#0e1f3a; box-shadow:0 6px 18px rgba(33,61,105,.10); }
.ep-media img, .ep-media iframe { position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }
.ep-media img { object-fit:cover; }
.ep-cap { margin-top:10px; text-align:center; }
.ep-cap .ep-title { display:block; font-size:15px; font-weight:600; color:var(--navy); line-height:1.3; }
.ep-cap .ep-when { display:block; font-size:12.5px; color:#5b6b82; margin-top:3px; }
@media (max-width:900px){ .events-past-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .events-past-grid { grid-template-columns:1fr; } }

/* eMoney arrow checklist (how-we-simplify) */
.arrow-list { list-style:none; max-width:1000px; margin:10px auto 32px; padding:0; }
.arrow-list li { position:relative; padding:0 0 22px 42px; }
.arrow-list li::before { content:""; position:absolute; left:8px; top:4px; width:11px; height:11px; border-right:3px solid var(--gold); border-bottom:3px solid var(--gold); transform:rotate(-45deg); }
.arrow-list li strong { display:block; color:var(--navy); font-size:19px; margin-bottom:4px; }
.arrow-list li span { display:block; line-height:1.6; }

/* Join The Team: "Who We Are Looking For" two icon cards */
.wwlf-grid { display:grid; grid-template-columns:1fr 1fr; gap:30px; max-width:1000px; margin:16px auto 0; }
.wwlf-card { border:1px solid var(--gold); border-radius:8px; padding:34px 30px; background:#fff; text-align:center; display:flex; flex-direction:column; }
.wwlf-icon { font-size:48px; color:var(--gold); margin-bottom:12px; line-height:1; }
.wwlf-card h3 { font-size:24px; margin:4px 0 10px; }
.wwlf-sub { margin-bottom:16px; color:var(--navy); }
.wwlf-card .arrow-list { text-align:left; margin:0 0 20px; max-width:none; flex:1; }
.wwlf-card .arrow-list li { padding-bottom:16px; }
.wwlf-cta { margin:auto 0 0; }
@media (max-width:760px){ .wwlf-grid { grid-template-columns:1fr; } }

/* Blog listing cards */
.blog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; max-width:1000px; margin:0 auto; }
.blog-card { border:1px solid var(--border); border-radius:8px; overflow:hidden; background:#fff; box-shadow:0 4px 14px rgba(33,61,105,.06); transition:box-shadow .2s, transform .2s; }
.blog-card:hover { box-shadow:0 12px 28px rgba(33,61,105,.14); transform:translateY(-3px); }
.blog-card__body { padding:26px 26px 30px; }
.blog-card__body h3 { font-size:20px; line-height:1.3; margin:0 0 8px; }
.blog-card__body h3 a { color:var(--navy); }
.blog-card__date { color:var(--gold-dark); font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:1px; margin:0 0 12px; }
.blog-card__more { font-weight:700; color:var(--gold-dark); }
@media (max-width:760px){ .blog-grid { grid-template-columns:1fr; } }
/* Blog post article body */
.post-content h2 { margin:34px 0 12px; color:var(--navy); }
.post-content p, .post-content li { line-height:1.7; }
.post-content blockquote { border-left:4px solid var(--gold); margin:22px 0; padding:6px 0 6px 22px; font-size:20px; font-style:italic; color:var(--navy); }
.post-content ul, .post-content ol { margin:0 0 16px 22px; }
.post-content li { margin-bottom:8px; }

/* Education Center */
.edu-configs { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:24px; }
.edu-configs figure { margin:0; text-align:center; }
.edu-configs h3 { color:var(--navy); margin:0 0 2px; font-size:22px; }
.edu-configs .edu-seats { color:var(--gold-dark); font-weight:700; margin:0 0 12px; }
.edu-configs img { width:100%; height:auto; border-radius:8px; }
.edu-equip { background:var(--gold); color:#fff; }
.edu-equip h2, .edu-equip strong { color:#fff; }
.edu-equip-cols { display:grid; grid-template-columns:1fr 1fr; gap:10px 40px; margin:18px 0 24px; }
.edu-equip-cols ul { margin:0; padding-left:20px; } .edu-equip-cols li { margin-bottom:8px; line-height:1.5; }
.edu-equip p { line-height:1.65; }
.edu-reserve { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:24px; }
.edu-reserve__card { background:#fff; border:1px solid var(--border); border-radius:8px; padding:28px 24px; text-align:center; display:flex; flex-direction:column; }
.edu-reserve__card h3 { color:var(--navy); font-size:18px; flex:1; margin:0 0 18px; }
.edu-reserve__card .btn { align-self:center; }
.edu-contact { color:#fff; }
.edu-contact h2 { color:#fff; }
.edu-contact__name { font-size:26px; font-weight:700; color:#fff; margin:6px 0 4px; }
.edu-contact__email { font-size:20px; } .edu-contact__email a { color:var(--gold-light); }
@media (max-width:820px){ .edu-configs, .edu-reserve, .edu-equip-cols { grid-template-columns:1fr; } }

/* Blog + Videos: layout with sidebar, tabs, search, subscribe */
.blog-layout { display:grid; grid-template-columns:1fr 320px; gap:40px; align-items:start; }
.blog-tabs { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:16px; }
.blog-tab { background:#eef1f5; border:0; border-radius:999px; padding:8px 18px; font-weight:600; font-size:14px; color:var(--navy); cursor:pointer; font-family:inherit; }
.blog-tab.is-active { background:var(--navy); color:#fff; }
.blog-search { width:100%; padding:12px 16px; border:1px solid var(--border); border-radius:8px; font-size:15px; margin-bottom:24px; font-family:inherit; }
.blog-grid { display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.blog-card { border:1px solid var(--border); border-radius:10px; overflow:hidden; background:#fff; box-shadow:0 4px 14px rgba(33,61,105,.06); display:flex; flex-direction:column; transition:box-shadow .2s, transform .2s; }
.blog-card:hover { box-shadow:0 12px 28px rgba(33,61,105,.14); transform:translateY(-3px); }
.blog-card__thumb { display:block; aspect-ratio:16/9; overflow:hidden; background:var(--navy); }
.blog-card__thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.blog-card__body { padding:20px 22px 24px; }
.blog-card__body h3 { font-size:18px; line-height:1.3; margin:0 0 6px; } .blog-card__body h3 a { color:var(--navy); }
.blog-card__date { color:var(--gold-dark); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; margin:0 0 10px; }
.blog-card__more { font-weight:700; color:var(--gold-dark); }
.subscribe-box { background:var(--gold); color:#fff; border-radius:10px; padding:30px 26px; position:sticky; top:20px; }
.subscribe-box h3 { color:#fff; font-size:24px; line-height:1.2; margin:0 0 10px; }
.subscribe-box > p { color:rgba(255,255,255,.9); margin:0 0 18px; font-size:14px; }
.subscribe-form label { display:block; color:#fff; font-size:13px; font-weight:600; margin-bottom:12px; }
.subscribe-form input { display:block; width:100%; margin-top:5px; padding:11px 12px; border:0; border-radius:5px; font-size:15px; }
.subscribe-form .btn { background:var(--navy); margin-top:4px; }
.subscribe-fine { font-size:11px; color:rgba(255,255,255,.85); margin-top:14px; line-height:1.5; }
.vid-card__t { display:block; padding:12px 4px 0; font-size:14px; font-weight:600; color:var(--navy); line-height:1.35; }
@media (max-width:860px){ .blog-layout { grid-template-columns:1fr; } .subscribe-box{ position:static; } .blog-grid { grid-template-columns:1fr; } }

/* ---- About: offset video rows (text beside a smaller video, alternating) ---- */
.vid-row { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.vid-row--reverse .vid-row__media { order:-1; }
.vid-row__media { position:relative; padding-bottom:56.25%; height:0; width:100%; border-radius:8px; overflow:hidden; box-shadow:0 12px 30px rgba(0,0,0,.14); }
.vid-row__media iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.vid-row__body h2 { font-size:clamp(24px,2.8vw,34px); margin-bottom:14px; }
.vid-row__body h3 { margin-bottom:12px; }
.vid-row__body .btn { margin-top:12px; }
@media (max-width:820px){ .vid-row { grid-template-columns:1fr; gap:26px; } .vid-row--reverse .vid-row__media { order:0; } .vid-row__media { padding-bottom:56.25%; } }

/* ---- About: anchored sections clear the sticky header when jumped to ---- */
.about-anchor { scroll-margin-top: 120px; }

/* Rows that carry an image beside the video top-align rather than center */
.vid-row--top { align-items: start; }
.vid-row--center { align-items: center; }
.vid-row__body .el-img, .vid-row__body .el-img--wide { max-width: 100%; margin-top: 18px; }

/* Enlarged salary-model graphic on the career pages */
.el-img--salary { display:block; width:100%; max-width:1080px; height:auto; margin:24px auto; border-radius:6px; }

/* About: "Our 3 Uniques" + "Our Brand Promise" side by side */
.uniques-2col { display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-top:8px; }
.uniques-col { text-align:center; }
.uniques-col .divider-gold { margin-left:auto; margin-right:auto; }
.uniques-col h4 { margin:12px 0; }
@media (max-width:700px){ .uniques-2col { grid-template-columns:1fr; gap:26px; } }

/* Photo-background section headers (Our Why, Our Team band) */
.page-hero--img h2 { color:#fff; text-align:center; margin:0; font-size:clamp(26px,3.4vw,40px); position:relative; z-index:1; }
.page-hero--slim { min-height:170px; padding:0; display:flex; align-items:center; }
.page-hero--slim .container { position:relative; z-index:1; }

/* ---- About: Our Services icons ---- */
.el-icons--svc .el-icon { text-align:center; }
.el-icons--svc .el-icon i { display:block; font-size:46px; line-height:1; color:var(--gold); margin-bottom:16px; }
