:root {
  --navy: #071527;
  --navy-2: #0b2441;
  --blue: #1e6bff;
  --cyan: #5bd6ff;
  --gold: #d8b15f;
  --ink: #102033;
  --muted: #65758a;
  --line: #dce5ef;
  --soft: #f4f8fc;
  --white: #ffffff;
  --danger: #c73434;
  --success: #15804c;
  --shadow: 0 20px 60px rgba(7, 21, 39, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(2.6rem, 5vw, 5.8rem); }
h2 { font-size: clamp(1.75rem, 3vw, 3rem); }
h3 { font-size: 1.05rem; }
input, textarea, button { font: inherit; }
svg { display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem clamp(1rem, 4vw, 4rem);
  color: var(--white);
  background: linear-gradient(135deg, rgba(5, 11, 20, .98), rgba(7, 21, 39, .95));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; min-width: 0; }
.brand-image {
  display: block;
  width: clamp(136px, 16vw, 192px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.brand-image--dark {
  width: clamp(150px, 18vw, 220px);
}
.brand-image--compact {
  width: clamp(132px, 16vw, 184px);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .7rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--navy));
  box-shadow: 0 12px 30px rgba(30, 107, 255, .28);
  font-weight: 800;
}
.brand small { display: block; color: var(--muted); font-size: .78rem; margin-top: -.1rem; }
.site-nav { display: flex; align-items: center; gap: .35rem; }
.site-nav a {
  padding: .65rem .85rem;
  border-radius: .55rem;
  color: #dbe8f5;
  font-size: .92rem;
  font-weight: 650;
}
.site-nav a.active, .site-nav a:hover { color: var(--gold); background: rgba(216, 177, 95, .14); }
.site-nav .nav-cta { color: #08131f; background: linear-gradient(135deg, #f0c76f, var(--gold)); }
.nav-toggle { display: none; border: 0; background: linear-gradient(135deg, #f0c76f, var(--gold)); color: #08131f; border-radius: .55rem; width: 2.6rem; height: 2.6rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  min-height: calc(100vh - 78px);
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem) 4rem;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(91, 214, 255, .18), transparent 26%),
    linear-gradient(135deg, #06101f 0%, #0a2445 52%, #06101f 100%);
}
.hero-copy { align-self: center; max-width: 850px; }
.hero-home .hero-copy h1 { font-size: clamp(2.8rem, 5vw, 5.6rem); max-width: 11ch; }
.hero-intro {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  margin-bottom: 1rem;
  padding: 0 .7rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #c6d8eb;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-subtitle { max-width: 700px; color: #c7d7ea; font-size: 1.08rem; }
.hero-tagline {
  margin: .45rem 0 .55rem;
  color: var(--cyan);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 750;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: .65rem;
  font-weight: 760;
  cursor: pointer;
}
.btn svg {
  width: 1.02rem;
  height: 1.02rem;
  margin-right: .5rem;
  flex: 0 0 auto;
}
.btn.primary { background: linear-gradient(135deg, var(--blue), #2dc9ff); color: var(--white); }
.btn.secondary { background: var(--white); color: var(--navy); }
.btn.ghost { background: transparent; border-color: rgba(255,255,255,.35); color: inherit; }
.btn.small { min-height: 2.15rem; padding: .45rem .65rem; font-size: .85rem; }
.btn.danger { color: var(--danger); border-color: rgba(199, 52, 52, .28); background: #fff5f5; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 2rem;
}
.hero-stats article {
  padding: 1rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.hero-stats strong { display: block; font-size: 1.5rem; line-height: 1; }
.hero-stats span { color: #d4e2f0; font-size: .95rem; }
.hero-panel {
  align-self: center;
  min-width: 0;
  max-width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1rem;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  display: grid;
  gap: .85rem;
}
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-height: 420px;
  border-radius: .95rem;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(11,36,65,.85), rgba(7,21,39,.95));
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,11,20,.12) 20%, rgba(5,11,20,.72) 100%);
}
.hero-slide-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  max-width: 38rem;
  display: grid;
  gap: .4rem;
  padding: 1rem;
  border-radius: .85rem;
  background: rgba(5,11,20,.52);
  backdrop-filter: blur(8px);
}
.hero-slide-copy small {
  color: #d6e7f8;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-slide-copy strong {
  font-size: 1.25rem;
  line-height: 1.15;
}
.hero-slide-copy p { color: #dbe8f5; }
.hero-slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: .45rem;
  padding-inline: .1rem;
}
.hero-panel-note {
  margin: 0;
  color: #d4e2f0;
  font-size: .92rem;
  text-align: left;
}
.hero-slider-nav button {
  width: .75rem;
  height: .75rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  cursor: pointer;
}
.hero-slider-nav button[aria-selected="true"] {
  width: 1.5rem;
  background: linear-gradient(135deg, #f0c76f, var(--gold));
  border-color: transparent;
}
.panel-top { display: flex; gap: .35rem; padding: .45rem .35rem 1rem; }
.panel-top span { width: .6rem; height: .6rem; border-radius: 50%; background: rgba(255,255,255,.45); }
.signal-card {
  min-height: 280px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: .8rem;
  background:
    linear-gradient(165deg, rgba(216,177,95,.34), transparent 45%),
    linear-gradient(145deg, rgba(91,214,255,.22), rgba(255,255,255,.08));
}
.signal-card small { display: inline-flex; margin-bottom: .6rem; color: #d6e7f8; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.signal-card strong { font-size: 1.7rem; line-height: 1.1; }
.signal-card p { color: #dbe8f5; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.mini-grid span {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  align-items: start;
  padding: 1rem;
  border-radius: .7rem;
  background: rgba(255,255,255,.08);
  color: #e8f3ff;
  font-weight: 700;
}
.mini-grid span svg { width: 1rem; height: 1rem; opacity: .85; }
.mini-grid span b { font-weight: 800; }

.section { padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.section-heading--tight { margin-bottom: 1rem; }
.text-link { color: var(--blue); font-weight: 800; }
.text-link.light { color: var(--cyan); }
.proof-strip {
  display: grid;
  gap: 1.2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.2rem;
}
.proof-strip .proof-copy {
  max-width: 760px;
}
.proof-strip .proof-copy small {
  display: block;
  margin-bottom: .35rem;
  color: var(--blue);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.logo-rail--compact { justify-content: flex-start; gap: .65rem; }
.logo-rail--compact span { min-width: 100px; padding: .75rem .95rem; font-size: .92rem; }
.logo-rail--partners { justify-content: space-between; margin-top: 0; }
.logo-rail--partners span {
  min-width: 130px;
  min-height: 84px;
  display: grid;
  place-items: center;
  text-align: center;
}
.partner-logo-box { padding: .75rem 1rem; }
.partner-logo {
  display: block;
  width: 100%;
  max-width: 150px;
  height: 46px;
  object-fit: contain;
}
.values-strip, .value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.values-strip span, .value-grid article {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: var(--soft);
  font-weight: 800;
}
.section-focus .values-strip span { background: linear-gradient(180deg, #ffffff 0%, #f3f8fe 100%); }
.navy-band { color: var(--white); background: var(--navy); }
.navy-band p, .navy-band small { color: #bcd0e6; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card, .person-card, .profile-card, .portfolio-card, .article-card, .list-card, .form-card, .contact-panel, .admin-panel {
  border: 1px solid var(--line);
  border-radius: .9rem;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(7, 21, 39, .06);
}
.service-card { padding: 1.35rem; }
.service-card small { color: var(--blue); font-weight: 850; text-transform: uppercase; font-size: .72rem; }
.service-card h3, .service-card h2 { margin: .55rem 0 .75rem; }
.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  border-radius: .8rem;
  color: var(--blue);
  background: #ecf4ff;
}
.service-icon svg { width: 1rem; height: 1rem; }
.navy-band .service-card { background: #0d2948; border-color: rgba(255,255,255,.12); }
.services-grid--feature .service-card {
  min-height: 208px;
}
.services-band {
  background: var(--white);
}
.services-band .service-card {
  background: var(--white);
}
.services-band .section-heading {
  margin-bottom: 1.25rem;
}
.services-band .service-card h3 { font-size: 1.02rem; }
.services-band .service-card p { color: var(--muted); }
.services-band .service-card small { color: var(--blue); }
.board-work-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  color: var(--white);
  background: linear-gradient(135deg, #071527 0%, #091d37 45%, #071527 100%);
}
.board-column, .portfolio-column {
  padding: clamp(1.5rem, 4vw, 3rem);
}
.board-column + .portfolio-column {
  border-left: 1px solid rgba(255,255,255,.12);
}
.board-work-band .section-heading h2,
.board-work-band .section-heading a { color: var(--white); }
.board-work-band .section-heading a { color: #81b9ff; }
.board-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.board-card {
  padding: 1rem .9rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: none;
}
.avatar--round {
  width: 4rem;
  height: 4rem;
  margin-bottom: .85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0f6ff, #cfe0f9);
}
.avatar-image {
  object-fit: cover;
  object-position: center;
}
.board-card h3 { font-size: .98rem; line-height: 1.2; color: var(--white); }
.board-card p { margin-top: .35rem; color: #c3d4e8; font-size: .92rem; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.featured-card {
  display: grid;
  gap: .65rem;
  padding: .9rem;
  border-radius: .85rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.featured-card:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 185, 255, .45);
  background: rgba(255,255,255,.06);
}
.featured-card strong { color: #81b9ff; font-size: .9rem; }
.featured-card--interactive { cursor: pointer; }
.featured-thumb {
  position: relative;
}
.featured-thumb {
  height: 9rem;
  display: flex;
  align-items: end;
  padding: .85rem;
  border-radius: .7rem;
  overflow: hidden;
  color: var(--white);
  font-weight: 900;
  background:
    linear-gradient(180deg, rgba(47, 130, 255, .15), rgba(7, 21, 39, .9)),
    linear-gradient(135deg, #124e96, #071527);
}
.featured-thumb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .7rem;
}
.featured-thumb span {
  position: relative;
  z-index: 1;
  padding: .28rem .55rem;
  border-radius: .45rem;
  background: rgba(7, 21, 39, .62);
}
.featured-card h3 { color: var(--white); font-size: .98rem; }
.featured-card p { margin-top: .3rem; color: #c3d4e8; font-size: .92rem; }
.partners-band {
  background: #fff;
}
.people-row, .profile-grid, .portfolio-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.profile-grid, .portfolio-grid.public-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.person-card, .profile-card, .portfolio-card, .article-card, .list-card { padding: 1.25rem; }
.avatar {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: .85rem;
  background: linear-gradient(145deg, #eaf4ff, #d9ebff);
  color: var(--blue);
  font-weight: 900;
}
.avatar--small {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0;
}
.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: .9rem;
  border: 1px solid var(--line);
  background: #eff4f9;
}
.list-card--profile {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.list-card--profile h3 { margin-bottom: .2rem; }
.list-thumb {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: .9rem;
  border: 1px solid var(--line);
  background: #eff4f9;
}
.profile-card strong { display: block; margin: .55rem 0 .75rem; color: var(--navy-2); }
.portfolio-preview { background: var(--soft); }
.portfolio-card { min-height: 220px; background: linear-gradient(150deg, var(--white), #eef7ff); }
.portfolio-card span, .article-card small { color: var(--blue); font-weight: 850; }
.partners { text-align: center; }
.logo-rail { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: 1.5rem; }
.logo-rail span { padding: .9rem 1.25rem; min-width: 120px; border: 1px solid var(--line); border-radius: .65rem; background: var(--white); font-weight: 900; color: var(--navy-2); }
.contact-cta {
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #104f97);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-hero {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #123d73);
}
.page-hero p { max-width: 860px; margin-top: 1rem; color: #d4e2f0; font-size: 1.1rem; }
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr);
  align-items: end;
  gap: 1rem;
}
.about-hero-copy {
  max-width: 900px;
}
.about-hero-copy h1 {
  margin-top: .5rem;
}
.about-hero-copy p {
  max-width: 760px;
}
.about-hero-panel {
  display: grid;
  gap: .8rem;
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1rem;
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.about-hero-panel strong {
  font-size: 1.05rem;
}
.about-hero-panel p {
  margin-bottom: 0;
  color: #d4e2f0;
}
.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  gap: 1rem;
}
.about-story-card {
  display: grid;
  gap: .85rem;
}
.about-story-kicker {
  margin: 0;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.about-story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.about-story-side {
  display: grid;
  gap: 1rem;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.about-facts span,
.about-quote {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: .9rem;
  background: var(--soft);
  font-weight: 800;
}
.about-quote {
  background: linear-gradient(145deg, #0b2441, #123d73);
  color: var(--white);
}
.about-quote p {
  color: var(--white);
  margin: 0;
}
.about-vision-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.about-panel {
  padding: 1.35rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  box-shadow: 0 12px 35px rgba(7, 21, 39, .06);
}
.about-panel small {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.about-panel h2 {
  margin-top: .45rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}
.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.about-focus-card {
  display: grid;
  gap: .55rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  box-shadow: 0 12px 35px rgba(7, 21, 39, .06);
}
.about-focus-card span {
  color: var(--navy-2);
  font-size: 1.05rem;
  font-weight: 900;
}
.about-focus-card strong {
  color: var(--blue);
}
.objective-grid {
  display: grid;
  gap: .85rem;
}
.objective-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(7, 21, 39, .04);
  overflow: hidden;
}
.objective-card summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
}
.objective-card summary::-webkit-details-marker {
  display: none;
}
.objective-card summary span {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: .6rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  flex: 0 0 auto;
}
.objective-card p {
  margin: 0;
  padding: 0 1.1rem 1rem 4.25rem;
}
.about-cta-band {
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #104f97);
}
.number-list { display: grid; gap: .8rem; }
.number-list article { display: flex; gap: 1rem; padding: 1rem; border-bottom: 1px solid var(--line); }
.number-list span { flex: 0 0 2.2rem; height: 2.2rem; display: grid; place-items: center; border-radius: .55rem; color: var(--white); background: var(--blue); font-weight: 900; }
.article-list { display: grid; gap: 1rem; }
.contact-layout label, .login-card label, .admin-form label { display: grid; gap: .4rem; color: var(--navy-2); font-weight: 750; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: .65rem;
  padding: .85rem .9rem;
  background: var(--white);
  color: var(--ink);
}
.form-card, .contact-panel { padding: 1.4rem; }
.success { color: var(--success); font-weight: 800; }
.error { color: var(--danger); font-weight: 800; }
.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 177, 95, .12), transparent 22%),
    linear-gradient(180deg, #050b14 0%, #03070d 100%);
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.footer-brand-link { flex: 0 0 auto; display: inline-flex; }
.footer-brand-logo {
  width: 132px;
  height: auto;
  max-width: 100%;
  display: block;
}
.footer-brand strong {
  color: var(--white);
  font-size: 1.15rem;
}
.footer-brand p { max-width: 760px; color: #c6d4e3; }
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}
.footer-links {
  display: grid;
  gap: .4rem;
  color: #b7c7d8;
}
.footer-links strong { color: var(--white); font-size: 1rem; margin-bottom: .1rem; }
.footer-links a { color: var(--white); }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.footer-social a {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  background: rgba(255,255,255,.04);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social a svg { width: 1rem; height: 1rem; }
.footer-social a:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-1px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #a8b9ca;
  font-size: .93rem;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-meta a { color: #dae6f3; font-weight: 700; }
.portfolio-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: .85rem;
  border: 1px solid var(--line);
}
.mini-chat {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: .65rem;
}
.mini-chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem .98rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #1e6bff, #3ac6ff);
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0;
}
.mini-chat-toggle svg { width: 1rem; height: 1rem; }
.mini-chat-panel {
  width: min(92vw, 360px);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, #050b14 0%, #0a1a31 100%);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mini-chat-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: .75rem;
  padding: .95rem 1rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mini-chat-header strong { display: block; }
.mini-chat-header small { color: #c6d4e3; }
.mini-chat-close {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.mini-chat-messages {
  max-height: 220px;
  overflow: auto;
  display: grid;
  gap: .5rem;
  padding: .9rem 1rem;
}
.mini-chat-bubble {
  max-width: 88%;
  padding: .7rem .85rem;
  border-radius: .8rem;
  font-size: .93rem;
}
.mini-chat-bubble--bot { background: rgba(255,255,255,.08); color: #e9f2fb; }
.mini-chat-bubble--user { margin-left: auto; background: rgba(216, 177, 95, .18); color: #fff; }
.mini-chat-presets {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0 1rem .85rem;
}
.mini-chat-presets button {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .45rem .7rem;
  color: #dbe8f5;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.mini-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .5rem;
  padding: 0 1rem 1rem;
}
.mini-chat-form input {
  color: var(--white);
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
}
.mini-chat-form input::placeholder { color: #8ea1b6; }
.mini-chat-form .btn.primary {
  min-height: 2.75rem;
  padding-inline: .95rem;
}

.staff-access {
  background: linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
}
.staff-access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.staff-step {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: .9rem;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 21, 39, .04);
}
.staff-step span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  margin-bottom: .9rem;
  border-radius: .65rem;
  color: var(--gold);
  background: rgba(216, 177, 95, .16);
  font-weight: 900;
}
.staff-step p { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.login-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(216, 177, 95, .12), transparent 22%),
    linear-gradient(135deg, #040a13 0%, #0a1a31 55%, #050b14 100%);
}
.login-shell {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 1rem;
  align-items: stretch;
}
.login-intro {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(160deg, rgba(11, 36, 65, .9), rgba(5, 11, 20, .96)),
    radial-gradient(circle at top right, rgba(216, 177, 95, .12), transparent 24%);
  box-shadow: var(--shadow);
  color: var(--white);
}
.login-copy h1 { color: var(--white); margin-top: .1rem; }
.login-copy p { color: #c7d7ea; max-width: 58ch; }
.login-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.login-steps article {
  padding: .9rem;
  border-radius: .85rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.login-steps span {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-bottom: .7rem;
  border-radius: .55rem;
  color: #0c1624;
  background: linear-gradient(135deg, #f0c76f, var(--gold));
  font-weight: 900;
}
.login-steps p { margin: 0; color: #d3e0ee; font-size: .95rem; }
.login-card {
  width: 100%;
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1rem;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(11, 36, 65, .94), rgba(5, 11, 20, .96));
  box-shadow: var(--shadow);
}
.login-card-head { display: grid; gap: .35rem; }
.login-card h2 { color: var(--white); font-size: 1.65rem; }
.login-card p { color: #c7d7ea; }
.login-card label { color: #e5effa; }
.login-card input {
  color: var(--white);
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.08);
}
.login-card input::placeholder { color: #8ea1b6; }
.login-help-link { color: var(--cyan); }
.login-help-link:hover { color: #9be4ff; }

.admin-body { display: grid; grid-template-columns: 280px minmax(0, 1fr); min-height: 100vh; background: #eef4fa; overflow-x: hidden; }
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  color: var(--white);
  background: linear-gradient(180deg, #050b14 0%, #071527 100%);
}
.admin-sidebar nav { display: grid; gap: .25rem; }
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .72rem .8rem;
  border-radius: .6rem;
  color: #dbe8f5;
  font-weight: 720;
}
.admin-sidebar nav a svg { width: 1rem; height: 1rem; flex: 0 0 auto; }
.admin-sidebar nav a.active, .admin-sidebar nav a:hover { background: rgba(216, 177, 95, .16); color: var(--gold); }
.admin-brand { padding: .25rem 0 1rem !important; }
.logout-link { margin-top: auto; }
.admin-main { padding: 1.2rem; min-width: 0; }
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.admin-topbar small { color: var(--gold); font-weight: 800; text-transform: uppercase; }
.admin-topbar h1 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.admin-stats { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .85rem; }
.admin-stat-card {
  padding: 1rem;
  border-radius: .85rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.admin-stat-card span { display: block; color: var(--blue); font-size: 2rem; font-weight: 900; }
.admin-stat-card p { margin: .1rem 0 0; color: var(--muted); font-weight: 750; }
.admin-stat-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  margin-bottom: .7rem;
  border-radius: .75rem;
  color: var(--gold);
  background: rgba(216, 177, 95, .16);
}
.admin-stat-icon svg { width: 1.1rem; height: 1.1rem; }
.admin-heading small {
  display: block;
  color: var(--blue);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .3rem;
}
.admin-help { color: var(--muted); max-width: 780px; }
.module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
}
.module-card {
  padding: 1rem;
  border-radius: .85rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  box-shadow: 0 10px 26px rgba(7, 21, 39, .05);
}
.module-card h3 { margin: .85rem 0 .4rem; font-size: 1.02rem; }
.module-card p { margin-bottom: .8rem; font-size: .94rem; }
.module-card-top { display: flex; align-items: start; justify-content: space-between; gap: .5rem; }
.module-type {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0 .55rem;
  border-radius: 999px;
  background: rgba(216, 177, 95, .14);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.module-icon {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: .7rem;
  color: var(--gold);
  background: rgba(216, 177, 95, .12);
}
.module-icon svg { width: 1rem; height: 1rem; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.admin-panel { padding: 1rem; margin-bottom: 1rem; }
.quick-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.admin-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.admin-form label:has(textarea), .admin-form .check-label { grid-column: 1 / -1; }
.check-label { display: flex !important; align-items: center; gap: .6rem; }
.check-label input { width: auto; }
.upload-label { align-content: start; }
.upload-label input[type="file"] {
  padding: .65rem .9rem;
  background: #f7fafc;
}
.upload-current {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 650;
}
.upload-preview {
  width: 120px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: .8rem;
  border: 1px solid var(--line);
  background: #eff4f9;
}
.upload-preview--video {
  width: min(100%, 320px);
  aspect-ratio: 16 / 9;
}
.upload-preview-block {
  display: grid;
  gap: .5rem;
  grid-column: 1 / -1;
}
.permission-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
}
.permission-chip {
  display: flex !important;
  align-items: center;
  gap: .5rem;
  padding: .65rem .75rem;
  border: 1px solid var(--line);
  border-radius: .7rem;
  background: var(--soft);
}
.permission-chip input { width: auto; }
.permission-chip span { font-weight: 700; color: var(--navy-2); }
.permission-summary { color: var(--muted); font-size: .82rem; }
.news-feature-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: .9rem;
  border: 1px solid var(--line);
  background: #eff4f9;
}
.news-card h2 a,
.news-article h2 a {
  color: inherit;
}
.article-body {
  color: var(--muted);
  white-space: pre-wrap;
}
.article-body--rich {
  white-space: normal;
}
.article-body--rich p,
.article-body--rich h2,
.article-body--rich h3,
.article-body--rich h4,
.article-body--rich ul,
.article-body--rich ol,
.article-body--rich blockquote,
.article-body--rich figure {
  margin-bottom: 1rem;
}
.article-body--rich img,
.article-body--rich iframe,
.article-body--rich video {
  max-width: 100%;
  border-radius: .85rem;
  border: 1px solid var(--line);
  background: #eff4f9;
}
.news-media {
  width: 100%;
  margin-bottom: 1rem;
}
.news-video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: .95rem;
}
.news-embed {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: .95rem;
  border: 1px solid var(--line);
  background: #eff4f9;
}
.news-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.news-badge-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .7rem;
}
.news-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0 .6rem;
  border-radius: 999px;
  background: rgba(47, 130, 255, .1);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
}
.share-link {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-2);
}
.share-link svg {
  width: 1rem;
  height: 1rem;
}
.rich-editor-wrap {
  grid-column: 1 / -1;
  display: grid;
  gap: .65rem;
}
.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.rich-toolbar button {
  padding: .5rem .7rem;
  border: 1px solid var(--line);
  border-radius: .55rem;
  background: #f7fbff;
  color: var(--navy-2);
  font-weight: 750;
}
.rich-editor-label {
  display: grid;
  gap: .45rem;
}
.rich-source {
  display: none;
}
.rich-editor {
  min-height: 300px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: .9rem;
  background: var(--white);
  color: var(--navy-2);
}
.rich-editor:focus {
  outline: 2px solid rgba(47, 130, 255, .18);
  outline-offset: 1px;
}
.rich-editor h2,
.rich-editor h3 {
  margin: .2rem 0 .6rem;
}
.rich-editor p,
.rich-editor ul,
.rich-editor ol,
.rich-editor blockquote {
  margin-bottom: .8rem;
}
.rich-editor blockquote {
  padding: .8rem 1rem;
  border-left: 4px solid var(--gold);
  background: #f7fbff;
  border-radius: .5rem;
}
.rich-editor img,
.rich-editor iframe,
.rich-editor video {
  max-width: 100%;
  height: auto;
  border-radius: .8rem;
  margin: .2rem 0 .8rem;
}
.embed-frame {
  margin: .4rem 0 1rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: .9rem;
  border: 1px solid var(--line);
  background: #eff4f9;
}
.embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.document-grid--prospectus {
  grid-template-columns: minmax(0, 1.15fr);
}
.document-card {
  min-height: 100%;
  overflow: hidden;
  display: grid;
  gap: .85rem;
}
.document-card h2 {
  margin: 0;
}
.document-cover {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border-radius: .85rem;
  border: 1px solid var(--line);
  background: #eff4f9;
}
.document-cover-image {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 320px);
  object-fit: cover;
  object-position: center top;
}
.module-grid--settings {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.admin-table { display: grid; gap: .65rem; }
.table-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .8rem;
}
.table-filter {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-2);
  font-weight: 750;
}
.table-filter.active {
  color: var(--blue);
  border-color: rgba(47, 130, 255, .35);
  background: rgba(47, 130, 255, .08);
}
.admin-row, .table-lite-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: var(--white);
}
.admin-row-main {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}
.row-thumb {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: .75rem;
  border: 1px solid var(--line);
  background: #eff4f9;
}
.row-actions { display: flex; align-items: center; gap: .45rem; }
.row-actions form { margin: 0; }
.search-input { max-width: 260px; }
.admin-bottom-nav { display: none; }
.status-pill { color: var(--success); font-weight: 850; }

@media (max-width: 980px) {
  .hero, .split, .admin-grid { grid-template-columns: minmax(0, 1fr); }
  .hero { min-height: auto; }
  .board-work-band { grid-template-columns: 1fr; }
  .board-column + .portfolio-column { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .board-rail, .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid, .people-row, .profile-grid, .portfolio-grid.public-list, .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-hero, .about-story-layout, .about-vision-mission, .about-focus-grid { grid-template-columns: 1fr; }
  .login-shell, .staff-access-grid { grid-template-columns: 1fr; }
  .login-steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-cta { flex-direction: column; align-items: stretch; }
  .permission-grid, .document-grid, .module-grid--settings { grid-template-columns: 1fr 1fr; }
  .document-grid--prospectus { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  h1 { font-size: 2.45rem; }
  .site-header { align-items: flex-start; }
  .brand-image, .brand-image--compact { width: 124px; }
  .nav-toggle { display: block; flex: 0 0 auto; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 4.8rem 1rem auto 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: .7rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: .85rem;
    background: linear-gradient(180deg, #050b14 0%, #071527 100%);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-actions, .section-heading, .site-footer, .footer-bottom { align-items: stretch; flex-direction: column; }
  .hero-stats, .card-grid, .people-row, .profile-grid, .portfolio-grid, .portfolio-grid.public-list, .values-strip, .value-grid, .module-grid, .board-rail, .featured-grid, .about-hero, .about-story-layout, .about-vision-mission, .about-focus-grid { grid-template-columns: 1fr; }
  .featured-card { max-width: 100%; }
  .permission-grid, .document-grid, .module-grid--settings { grid-template-columns: 1fr; }
  .news-embed,
  .news-video { aspect-ratio: 16 / 10; }
  .document-cover-image { height: 220px; }
  .hero-home .hero-copy h1 { max-width: none; }
  .hero-panel { order: -1; }
  .hero-slider { min-height: 300px; }
  .hero-slide img { min-height: 300px; }
  .hero-slide-copy {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    padding: .75rem;
    gap: .25rem;
  }
  .hero-slide-copy strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1rem;
  }
  .hero-slide-copy p { display: none; }
  .footer-brand { width: 100%; flex-direction: column; }
  .footer-brand-logo { width: 118px; }
  .footer-social, .footer-bottom { width: 100%; }
  .footer-bottom { gap: .75rem; }
  .logo-rail--partners span { min-width: 0; min-height: 76px; }
  .partner-logo { max-width: 120px; height: 40px; }
  .admin-sidebar { display: none; }
  .admin-main { padding-bottom: 5rem; }
  .admin-stats { grid-template-columns: 1fr; }
  .admin-form { grid-template-columns: 1fr; }
  .admin-row { align-items: stretch; flex-direction: column; }
  .admin-topbar { flex-direction: column; align-items: flex-start; }
  .admin-topbar .btn { width: 100%; justify-content: center; }
  .admin-stat-card { display: grid; gap: .45rem; }
  .admin-stat-card span { font-size: 1.8rem; line-height: 1; }
  .row-actions { justify-content: flex-start; }
  .contact-cta { margin-inline: 1rem; }
  .footer-social { justify-content: flex-start; }
  .about-cta-band {
    margin-inline: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  .objective-card p {
    padding-left: 1.1rem;
  }
  .admin-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--navy);
  }
  .admin-bottom-nav a {
    display: grid;
    justify-items: center;
    gap: .25rem;
    padding: .8rem .35rem;
    color: var(--white);
    text-align: center;
    font-size: .8rem;
    font-weight: 800;
  }
  .admin-bottom-nav a svg { width: 1rem; height: 1rem; }
  .mini-chat { right: .75rem; bottom: .75rem; justify-items: end; }
  .mini-chat-toggle { padding: .78rem .92rem; }
  .mini-chat-panel { width: min(92vw, 340px); }
}
