:root {
  --alx-blue: #2f6f9f;
  --alx-blue-dark: #24567c;
  --alx-heading: #6784a0;
  --alx-accent: #2f6f9f;
  --alx-text: #212529;
  --alx-muted: #6c757d;
  --alx-nav: rgba(0, 0, 0, 0.55);
  --alx-border: #dee2e6;
  --alx-label: #e1e6ec;
  --alx-soft: #f7f9fb;
  --alx-disclosure: #f0f0f0;
  --alx-white: #ffffff;
  --alx-shadow: rgba(0, 0, 0, 0.12);
  --font: "Open Sans", sans-serif;
  --container: 1140px;
  --header-h: 92px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--alx-text);
  background: var(--alx-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--alx-blue); text-decoration: none; }
a:hover { color: var(--alx-blue-dark); text-decoration: underline; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.25; margin: 0 0 .75rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

.alx-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

/* Header */
.alx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--alx-white);
  border-bottom: 1px solid transparent;
}

.alx-header.is-scrolled {
  border-bottom-color: var(--alx-border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.alx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}

.alx-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.alx-logo img,
.alx-logo .custom-logo {
  height: 78px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.alx-logo-text {
  font-weight: 700;
  color: var(--alx-blue);
  letter-spacing: 0.04em;
  font-size: 18px;
}

.alx-nav ul {
  display: flex;
  align-items: center;
  gap: 6px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.alx-nav a {
  color: var(--alx-nav);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .alx-nav ul { gap: 4px 14px; }
  .alx-nav a { font-size: 13px; }
}

.alx-nav a:hover,
.alx-nav .current-menu-item > a,
.alx-nav .current_page_item > a {
  color: var(--alx-text);
  text-decoration: none;
}

.alx-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--alx-border);
  background: #fff;
  border-radius: 4px;
  padding: 10px 9px;
  cursor: pointer;
}

.alx-burger span {
  display: block;
  height: 2px;
  background: #343a40;
  margin: 5px 0;
}

/* Hero */
.alx-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
  min-height: 230px;
  display: flex;
  align-items: center;
}

.alx-hero--page { min-height: 160px; }

.alx-hero__media {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  pointer-events: none;
}

.alx-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.42;
}

.alx-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.88) 18%, rgba(255,255,255,.35) 48%, rgba(255,255,255,0) 72%);
}

.alx-hero__inner {
  position: relative;
  z-index: 1;
  padding: 48px 0 42px;
}

.alx-hero h1 {
  color: var(--alx-accent);
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 6px;
}

.alx-hero--page h1 {
  max-width: none;
  font-size: 28px;
}

.alx-hero__ticker {
  color: #8a93a0;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.04em;
}

.alx-hero__sub {
  max-width: 48ch;
  color: var(--alx-muted);
  margin: 10px 0 0;
  font-size: 15px;
}

/* Home landing → Fund Summary */
html.alx-front {
  scroll-padding-top: calc(var(--header-h) + 12px);
}

html.alx-front .alx-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

html.alx-front #alx-main {
  padding-top: var(--header-h);
  transition: padding-top 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.alx-landing,
html.alx-landing-exit {
  overflow: hidden;
  height: 100%;
}

html.alx-landing .alx-header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  box-shadow: none;
  border-bottom-color: transparent;
}

html.alx-landing #alx-main {
  padding-top: 0;
}

.alx-home-hero {
  min-height: 230px;
  transition: min-height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.alx-home-hero .alx-hero__media {
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.alx-home-hero .alx-hero__media img {
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.alx-home-hero .alx-hero__media::after {
  transition: background 0.9s ease, opacity 0.9s ease;
}

.alx-home-splash {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.alx-home-hero .alx-hero__inner {
  transition: opacity 0.55s ease 0.2s, visibility 0.55s ease 0.2s;
}

html.alx-landing .alx-home-hero {
  min-height: 100vh;
  min-height: 100dvh;
}

html.alx-landing .alx-home-hero .alx-hero__media {
  display: block;
  width: 100%;
  opacity: 1;
}

html.alx-landing .alx-home-hero .alx-hero__media img {
  opacity: 1;
  object-position: center 42%;
  animation: alxKenBurns 22s ease-out forwards;
}

html.alx-landing .alx-home-hero .alx-hero__media::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(248, 251, 253, 0.42) 42%,
    rgba(248, 251, 253, 0.82) 100%
  );
}

html.alx-landing .alx-home-splash {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.alx-landing-exit .alx-home-splash {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-28px);
  transition-delay: 0s;
}

html.alx-landing .alx-home-hero .alx-hero__inner {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.alx-home-splash__logo {
  width: min(280px, 72vw);
  height: auto;
  margin: 0 0 22px;
  animation: alxSplashIn 0.85s ease both;
}

.alx-home-splash__wordmark {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 700;
  color: var(--alx-blue);
  letter-spacing: 0.04em;
  animation: alxSplashIn 0.85s ease both;
}

.alx-home-splash__slogan {
  margin: 0 0 18px;
  color: var(--alx-blue);
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  animation: alxSplashIn 0.85s ease 0.12s both;
}

.alx-home-splash__desc {
  margin: 0 0 28px;
  max-width: 42em;
  color: var(--alx-text);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.65;
  animation: alxSplashIn 0.85s ease 0.24s both;
}

.alx-home-splash__cta {
  padding: 14px 28px;
  font-size: 16px;
  animation: alxSplashIn 0.85s ease 0.36s both;
}

@keyframes alxSplashIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes alxKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  html.alx-front .alx-header,
  html.alx-front #alx-main,
  .alx-home-hero,
  .alx-home-hero .alx-hero__media,
  .alx-home-hero .alx-hero__media img,
  .alx-home-hero .alx-hero__media::after,
  .alx-home-splash,
  .alx-home-hero .alx-hero__inner,
  .alx-home-splash__logo,
  .alx-home-splash__wordmark,
  .alx-home-splash__slogan,
  .alx-home-splash__desc,
  .alx-home-splash__cta {
    animation: none !important;
    transition: none !important;
  }
}

/* Content sections */
.alx-section {
  position: relative;
  padding: 56px 0;
}

.alx-section--tight { padding: 40px 0; }
.alx-section--soft { background: var(--alx-soft); }
.alx-section--disclosure { background: var(--alx-disclosure); }

.alx-block { margin-bottom: 40px; }
.alx-block:last-child { margin-bottom: 0; }

.alx-section h2,
.alx-section h3.alx-h {
  font-size: 22px;
  color: var(--alx-heading);
  font-weight: 600;
  margin-bottom: 12px;
}

.alx-lead {
  font-size: 15px;
  color: var(--alx-text);
  max-width: 980px;
}

.alx-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.alx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.alx-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* Tables — Beacon Pointe pattern */
.alx-table-wrap { overflow-x: auto; }

.alx-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--alx-text);
  margin-bottom: 0;
}

.alx-table td,
.alx-table th {
  padding: 0.75rem;
  vertical-align: middle;
  font-size: 14px;
  border-top: 1px solid var(--alx-border);
}

.alx-table--terms td:first-child {
  background: var(--alx-label);
  font-weight: 600;
  border-bottom: 1px solid #fff;
  width: 38%;
  border-top: 0;
}

.alx-table--terms td {
  border-top: 0;
  border-bottom: 1px solid var(--alx-border);
}

.alx-table--terms tr:first-child td { border-top: 1px solid var(--alx-border); }

.alx-table--data thead tr {
  background: var(--alx-heading);
  color: #fff;
}

.alx-table--data thead th {
  font-weight: 600;
  border-top: 0;
  white-space: nowrap;
}

.alx-table--data tbody td:first-child { font-weight: 600; }
.alx-table--holdings tbody tr:nth-child(odd) { background: var(--alx-label); }
.alx-table--holdings td:last-child,
.alx-table--numeric td:nth-child(n+2) { text-align: right; }

.alx-table--data tfoot td {
  font-weight: 700;
  background: var(--alx-soft);
}

/* Documents */
.alx-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}

.alx-doc {
  width: 130px;
  color: var(--alx-text);
  text-decoration: none;
}

.alx-doc:hover { text-decoration: none; color: var(--alx-text); }

.alx-doc__thumb {
  width: 100%;
  height: 170px;
  box-shadow: 0 3px 8px var(--alx-shadow);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: box-shadow 0.1s ease;
}

.alx-doc:hover .alx-doc__thumb { box-shadow: 0 5px 12px var(--alx-shadow); }

.alx-doc__name {
  margin-top: 12px;
  text-align: center;
  line-height: 1.15;
  font-size: 14px;
}

.alx-doc__icon {
  width: 72px;
  color: var(--alx-heading);
}

/* Team */
.alx-grid-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}

.alx-person { background: transparent; }

.alx-person__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.alx-person__open:hover .alx-person__photo,
.alx-person__open:focus-visible .alx-person__photo {
  box-shadow: 0 8px 24px rgba(47, 111, 159, 0.22);
}

.alx-person__open:focus-visible {
  outline: 2px solid var(--alx-blue);
  outline-offset: 4px;
}

.alx-person__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--alx-label);
  margin-bottom: 16px;
  border-radius: 2px;
  transition: box-shadow 0.2s ease;
}

.alx-person__photo img,
.alx-person__photo .alx-placeholder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.alx-person__name {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--alx-text);
  margin: 0 0 4px;
}

.alx-person__role {
  display: block;
  color: var(--alx-heading);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.alx-person p {
  font-size: 14px;
  color: #495057;
}

.alx-placeholder-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #d7e2ec, #b7c7d6);
  color: #fff;
  font-size: 42px;
  font-weight: 600;
}

/* Team modal */
.alx-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.alx-modal[hidden] { display: none; }

.alx-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 44, 0.55);
}

.alx-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: stretch;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.alx-modal__photo {
  background: var(--alx-label);
  min-height: 360px;
  overflow: hidden;
}

.alx-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #445;
}

.alx-modal__photo img,
.alx-modal__photo .alx-placeholder-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.alx-modal__body { padding: 28px 40px 32px 28px; overflow: auto; }
.alx-modal__body h3 { font-size: 24px; margin-bottom: 4px; }
.alx-modal__bio { font-size: 15px; color: #495057; margin-top: 14px; }
.alx-modal__bio p { margin: 0 0 12px; }

body.alx-modal-open { overflow: hidden; }

/* Charts */
.alx-chart-card {
  margin: 20px 0 8px;
  background: #fff;
  border: 1px solid var(--alx-border);
  padding: 18px 16px 12px;
}

.alx-chart-card__head {
  margin: 0 8px 12px;
}

.alx-chart-card__head strong {
  display: block;
  font-size: 16px;
  color: var(--alx-text);
}

.alx-chart-card__head span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--alx-muted);
}

.alx-chart-wrap {
  width: 100%;
  overflow: hidden;
}

.alx-chart-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

.alx-hbar {
  display: grid;
  gap: 14px;
  padding: 8px 4px 4px;
}

.alx-hbar__row {
  display: grid;
  grid-template-columns: minmax(92px, 22%) 1fr;
  gap: 12px;
  align-items: center;
}

.alx-hbar__label {
  font-size: 13px;
  color: #5b6570;
  text-align: right;
  line-height: 1.25;
}

.alx-hbar__track {
  position: relative;
  height: 54px;
}

.alx-hbar__axis {
  position: absolute;
  inset: 0 0 0 0;
  pointer-events: none;
}

.alx-hbar__zero {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #c5ccd3;
}

.alx-hbar__bars {
  position: absolute;
  inset: 8px 0;
}

.alx-hbar__bar {
  position: absolute;
  height: 10px;
  border-radius: 1px;
  transform-origin: var(--origin, left) center;
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.alx-hbar__bar.is-top { top: 0; }
.alx-hbar__bar.is-med { top: 14px; }
.alx-hbar__bar.is-bot { top: 28px; }

.alx-chart-wrap.is-on .alx-hbar__bar { transform: scaleX(1); }

.alx-hbar__bar.is-top { background: #4b8ef5; }
.alx-hbar__bar.is-med { background: #8dc896; }
.alx-hbar__bar.is-bot { background: #e8a582; }

.alx-hbar__scale {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 0;
  padding-left: calc(22% + 12px);
  font-size: 12px;
  color: #8a93a0;
}

.alx-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  justify-content: center;
  margin-top: 14px;
  font-size: 13px;
  color: #5b6570;
}

.alx-chart-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: -1px;
}

.alx-line-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid var(--alx-border);
  font-size: 12px;
  color: #445;
}

.alx-line-legend span { white-space: nowrap; }
.alx-line-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: -1px;
}

.alx-chart-line {
  fill: none;
  stroke-width: 2.25;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.alx-chart-line.is-draw {
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
}

.alx-chart-wrap.is-on .alx-chart-line.is-draw {
  animation: alx-draw 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes alx-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .alx-hbar__bar,
  .alx-chart-line.is-draw { transition: none; animation: none; transform: none; stroke-dashoffset: 0; }
}

/* Stats */
.alx-stat {
  text-align: center;
  padding: 18px 10px;
}

.alx-stat__num {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--alx-blue);
  line-height: 1.1;
}

.alx-stat__label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alx-heading);
}

/* Cards / lists */
.alx-card {
  border: 1px solid var(--alx-border);
  padding: 22px;
  background: #fff;
}

.alx-card h3 {
  color: var(--alx-heading);
  font-size: 18px;
}

.alx-pill {
  display: inline-block;
  background: var(--alx-label);
  color: var(--alx-blue-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  margin-bottom: 10px;
}

.alx-alloc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.alx-alloc__item {
  background: var(--alx-soft);
  border-top: 4px solid var(--alx-blue);
  padding: 18px 16px;
}

.alx-alloc__item strong {
  display: block;
  font-size: 22px;
  color: var(--alx-blue);
}

.alx-alloc__item span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--alx-muted);
}

.alx-chart {
  margin: 20px 0 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,.06);
  background: #fff;
}

.alx-chart img { width: 100%; }

.alx-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.alx-offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.alx-office {
  background: #eef3f7;
  padding: 18px 16px;
}

.alx-office h3 {
  font-size: 16px;
  color: var(--alx-blue);
  margin-bottom: 8px;
}

.alx-office p {
  font-size: 13px;
  margin: 0;
  color: #495057;
}

/* Buttons / form */
.alx-btn {
  display: inline-block;
  background: var(--alx-accent);
  border: 1px solid var(--alx-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  cursor: pointer;
  text-decoration: none;
}

.alx-btn:hover {
  background: var(--alx-heading);
  border-color: var(--alx-heading);
  color: #fff;
  text-decoration: none;
}

.alx-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.alx-form input,
.alx-form textarea,
.alx-form select {
  width: 100%;
  border: 1px solid #ced4da;
  padding: 10px 12px;
  font: inherit;
  margin-bottom: 14px;
}

.alx-form textarea { min-height: 120px; }

.alx-form-msg {
  padding: 12px 14px;
  margin-bottom: 16px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
}

.alx-form-msg.is-error {
  background: #fdecea;
  border-color: #f5c6cb;
}

/* Footer */
.alx-footer {
  padding: 36px 0 20px;
  background: #fff;
  border-top: 1px solid var(--alx-border);
}

.alx-footer__contact {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 30px;
  margin-bottom: 24px;
  font-size: 14px;
}

.alx-footer__brand img { height: 72px; width: auto; margin-bottom: 10px; }
.alx-footer a { color: var(--alx-text); }

.alx-disclosures {
  padding: 28px 0 40px;
  background: var(--alx-disclosure);
  font-size: 14px;
  color: #444;
}

.alx-disclosures p { margin-bottom: 12px; }

.alx-copyright {
  font-size: 13px;
  color: var(--alx-muted);
  padding: 8px 0 28px;
}

/* Admin-facing empty state */
.alx-empty {
  padding: 20px;
  background: var(--alx-soft);
  border: 1px dashed var(--alx-border);
  color: var(--alx-muted);
  font-size: 14px;
}

@media (max-width: 991px) {
  .alx-header { position: sticky; }
  .alx-burger { display: block; }
  .alx-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--alx-border);
    padding: 12px 20px 20px;
    box-shadow: 0 8px 18px rgba(0,0,0,.06);
  }
  .alx-nav.is-open { display: block; }
  .alx-nav ul { flex-direction: column; align-items: flex-start; gap: 12px; }
  .alx-nav a { display: block; padding: 4px 0; }
  .alx-hero h1 { font-size: 26px; }
  .alx-hero__media { width: 64%; opacity: 0.85; }
  .alx-grid-2,
  .alx-grid-3,
  .alx-grid-5,
  .alx-alloc,
  .alx-split,
  .alx-offices,
  .alx-footer__contact {
    grid-template-columns: 1fr;
  }
  .alx-grid-team { grid-template-columns: 1fr 1fr; }
  .alx-modal__dialog { grid-template-columns: 1fr; }
  .alx-modal__photo img,
  .alx-modal__photo .alx-placeholder-photo { min-height: 220px; max-height: 280px; }
  .alx-hbar__row { grid-template-columns: 1fr; }
  .alx-hbar__label { text-align: left; }
  .alx-hbar__scale { padding-left: 0; }
  .alx-section { padding: 40px 0; }
  .alx-section h2,
  .alx-section h3.alx-h { font-size: 18px; }
}

@media (max-width: 575px) {
  .alx-logo img { height: 54px; }
  .alx-hero__media { display: none; }
  html.alx-landing .alx-home-hero .alx-hero__media { display: block; }
  .alx-home-splash__logo { width: min(220px, 70vw); margin-bottom: 16px; }
  .alx-home-splash__slogan { font-size: 22px; }
  .alx-home-splash { padding: 20px 16px; }
  .alx-docs { gap: 20px 24px; }
  .alx-doc { width: 120px; }
  .alx-doc__thumb { height: 150px; }
  .alx-grid-team { grid-template-columns: 1fr; max-width: 420px; }
}
