@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --av-bg: #0b0f19;
  --av-panel: #141b2a;
  --av-panel-alt: #101625;
  --av-border: #232c40;
  --av-teal: #14d6a8;
  --av-teal-dim: rgba(20, 214, 168, 0.15);
  --av-blue: #5b7fff;
  --av-text: #f1f3f8;
  --av-muted: #94a0b8;
  --av-danger: #ff6b6b;
  --av-warning: #f5b942;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  background: var(--av-bg);
  color: var(--av-text);
  font-family: var(--font-body);
  min-height: 100%;
}

body { margin-bottom: 60px; }

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  color: #ffffff;
  font-weight: 700;
}

a { color: var(--av-teal); text-decoration: none; }
a:hover { color: #5df0c6; }

.text-muted-av { color: var(--av-muted) !important; }

.av-navbar {
  background: var(--av-bg);
  border-bottom: 1px solid var(--av-border);
}
.av-navbar .navbar-toggler {
  border: 1px solid var(--av-border);
}
.av-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem var(--av-teal-dim);
}
.av-navbar .navbar-toggler-icon {
  /* Bootstrap's default icon is dark-stroked for light navbars; ours is dark, so
     the three lines were invisible against it. Redraw the same icon in teal. */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2314d6a8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.av-navbar .navbar-brand,
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  gap: .6rem;
}
.av-logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(20, 214, 168, 0.35));
}
.av-navbar .nav-link {
  color: var(--av-muted);
  font-weight: 500;
}
.av-navbar .nav-link:hover,
.av-navbar .nav-link.active {
  color: var(--av-teal);
}

.btn-av-primary {
  background: linear-gradient(135deg, #2ee8bc 0%, var(--av-teal) 45%, #0da583 100%);
  border: 1px solid rgba(20, 214, 168, 0.7);
  color: #06231c;
  font-weight: 600;
}
.btn-av-primary:hover {
  background: linear-gradient(135deg, #3cf4c8 0%, #17e0b1 45%, #0fb890 100%);
  border-color: var(--av-teal);
  color: #06231c;
}
.btn-av-outline {
  background: transparent;
  border: 1px solid var(--av-border);
  color: var(--av-text);
}
.btn-av-outline:hover {
  border-color: var(--av-teal);
  color: var(--av-teal);
}

.av-eyebrow {
  color: var(--av-teal);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.av-hero {
  background: radial-gradient(1200px 500px at 80% -10%, rgba(20,214,168,0.12), transparent),
              var(--av-bg);
  border-bottom: 1px solid var(--av-border);
}

.av-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 40%), var(--av-panel);
  border: 1px solid var(--av-border);
  border-radius: 10px;
  padding: 1.5rem;
}

.av-card-accent { border-top: 3px solid var(--av-teal); }
.av-card-accent.growth { border-top-color: var(--av-blue); }
.av-card-accent.muted { border-top-color: #6b7690; }

.av-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--av-teal-dim);
  color: var(--av-teal);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.av-tag {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--av-teal-dim);
  color: var(--av-teal);
}
.av-tag.growth { background: rgba(91,127,255,0.15); color: var(--av-blue); }
.av-tag.muted { background: rgba(255,255,255,0.08); color: var(--av-muted); }

.av-stat-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--av-teal);
  font-weight: 700;
}

.av-table { color: var(--av-text); border-color: var(--av-border); }
.av-table thead th {
  background: linear-gradient(180deg, rgba(20, 214, 168, 0.14) 0%, rgba(20, 214, 168, 0.04) 100%), var(--av-panel-alt);
  color: var(--av-teal);
  border-bottom: 2px solid rgba(20, 214, 168, 0.35) !important;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  white-space: nowrap;
}
.av-table td, .av-table th { border-color: var(--av-border) !important; vertical-align: middle; }
.av-table td { padding-top: 0.8rem; padding-bottom: 0.8rem; }
.av-table tbody tr { background: var(--av-panel); transition: background-color .15s ease; }
.av-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.015); }
.av-table tbody tr:hover { background: var(--av-teal-dim); }
.av-table tbody tr:hover td { color: #fff; }

/* Transaction direction pills */
.av-tag-in { background: var(--av-teal-dim); color: var(--av-teal); border: 1px solid rgba(20,214,168,.35); }
.av-tag-out { background: rgba(255,107,107,.12); color: var(--av-danger); border: 1px solid rgba(255,107,107,.35); }
.av-tag-neutral { background: rgba(148,160,184,.12); color: var(--av-muted); border: 1px solid rgba(148,160,184,.3); }

.av-progress {
  height: 10px;
  background: var(--av-panel-alt);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--av-border);
}
.av-progress-bar { height: 100%; background: linear-gradient(90deg, var(--av-teal), #5df0c6); }

.form-control, .form-select {
  background: var(--av-panel-alt);
  border: 1px solid var(--av-border);
  color: var(--av-text);
}
.form-control:focus, .form-select:focus {
  background: var(--av-panel-alt);
  border-color: var(--av-teal);
  color: var(--av-text);
  box-shadow: 0 0 0 0.2rem var(--av-teal-dim);
}
.form-control::placeholder { color: var(--av-muted); }
label { color: var(--av-muted); font-weight: 500; font-size: 0.9rem; }

.av-footer {
  border-top: 1px solid var(--av-border);
  color: var(--av-muted);
  background: linear-gradient(180deg, rgba(20, 214, 168, 0.04) 0%, var(--av-bg) 30%);
  position: relative;
}
.av-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--av-teal) 50%, transparent 100%);
  opacity: 0.5;
}

/* Admin shell */
.av-admin-shell { display: flex; min-height: 100vh; }
.av-admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #0e2a24 0%, var(--av-panel-alt) 34%, var(--av-bg) 100%);
  border-right: 1px solid var(--av-border);
  padding: 1.25rem 0.75rem;
}
.av-admin-sidebar .nav-link {
  color: var(--av-muted);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.15rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.av-admin-sidebar .nav-link:hover {
  background: var(--av-teal-dim);
  color: var(--av-teal);
}
.av-admin-sidebar .nav-link.active {
  background: linear-gradient(90deg, var(--av-teal-dim) 0%, rgba(20, 214, 168, 0.04) 100%);
  color: var(--av-teal);
  border-left-color: var(--av-teal);
  font-weight: 600;
}
.av-admin-content { flex: 1; padding: 1.75rem; min-width: 0; }

@media (max-width: 900px) {
  .av-admin-shell { flex-direction: column; min-height: 0; }
  .av-admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--av-border);
    padding: 1rem 0.75rem;
  }
  .av-admin-sidebar .nav {
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .av-admin-sidebar .nav-link,
  .av-admin-sidebar form { flex-shrink: 0; white-space: nowrap; }
  .av-admin-sidebar hr { display: none; }
  .av-admin-content { padding: 1.25rem 1rem; }
}

.av-kpi { display: flex; align-items: center; gap: 1rem; }
.av-kpi .label { color: var(--av-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.av-kpi .value { font-family: var(--font-display); font-size: 1.8rem; color: #fff; font-weight: 700; }

/* Transaction / income type pills — semantic color independent of the brand accent */
.av-tag-in { background: rgba(20, 214, 168, 0.16); color: var(--av-teal); }
.av-tag-out { background: rgba(255, 107, 107, 0.14); color: var(--av-danger); }
.av-tag-neutral { background: rgba(148, 160, 184, 0.16); color: var(--av-muted); }

.badge-status-pending,
.badge-status-pendingapproval { background: var(--av-warning); color: #221800; }
.badge-status-active,
.badge-status-completed { background: var(--av-teal); color: #06231c; }
.badge-status-closed { background: #6b7690; color: #fff; }
.badge-status-rejected,
.badge-status-earlyexited { background: var(--av-danger); color: #240808; }

/* ==================== Motion system ==================== */

@keyframes av-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes av-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes av-pop-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes av-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20,214,168,.35); }
  50% { box-shadow: 0 0 0 10px rgba(20,214,168,0); }
}
@keyframes av-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-2%, 2%) scale(1.06); }
}
@keyframes av-ripple {
  to { transform: scale(2.6); opacity: 0; }
}
@keyframes av-shimmer {
  0% { background-position: -300px 0; }
  100% { background-position: 300px 0; }
}

main { animation: av-fade-in .45s ease both; }

/* Scroll reveal: add .av-reveal to any element; JS toggles .is-visible.
   Stagger children by setting style="--i:N" (N = 0,1,2,...). */
.av-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1);
  transition-delay: calc(var(--i, 0) * 90ms);
  will-change: opacity, transform;
}
.av-reveal.is-visible { opacity: 1; transform: translateY(0); }

.av-card-pop {
  opacity: 0;
  animation: av-pop-in .55s cubic-bezier(.16,.8,.24,1) .05s both;
}

/* Hero card: contained, rounded gradient banner (sits inside .container) */
.av-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--av-border);
  border-radius: 18px;
  background: linear-gradient(160deg, var(--av-panel) 0%, var(--av-panel-alt) 100%);
}
.av-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(600px 300px at 75% 20%, rgba(20,214,168,.18), transparent 60%),
              radial-gradient(500px 260px at 15% 80%, rgba(91,127,255,.14), transparent 60%);
  animation: av-drift 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.av-hero > * { position: relative; z-index: 1; }
.av-hero .container,
.av-hero .px-hero { padding: 3rem 2.5rem; }
@media (max-width: 768px) {
  .av-hero .px-hero { padding: 2rem 1.25rem; }
}

/* Homepage hero carousel */
.av-hero-carousel .carousel-item { min-height: 380px; }
@media (max-width: 768px) {
  .av-hero-carousel .carousel-item { min-height: 0; }
  .av-hero-carousel h1.display-4 { font-size: 1.9rem; line-height: 1.2; }
  .av-hero-carousel .fs-5 { font-size: 1rem; }
}
/* Only the item(s) Bootstrap is actually showing get the flex layout —
   matching Bootstrap's own display:none/block toggle selector exactly,
   so inactive slides stay hidden instead of stacking on top of the active one. */
.av-hero-carousel .carousel-item.active,
.av-hero-carousel .carousel-item-next,
.av-hero-carousel .carousel-item-prev {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.av-hero-carousel .carousel-indicators { position: relative; margin: 1.5rem 0 0; }
.av-hero-carousel .carousel-indicators [data-bs-target] {
  width: 8px; height: 8px; border-radius: 50%;
  background-color: var(--av-border); opacity: 1; border: none; margin: 0 5px;
  transition: background-color .2s ease, transform .2s ease;
}
.av-hero-carousel .carousel-indicators .active { background-color: var(--av-teal); transform: scale(1.3); }
.av-hero-carousel .carousel-control-prev,
.av-hero-carousel .carousel-control-next { width: 3rem; opacity: .6; }
.av-hero-carousel .carousel-control-prev:hover,
.av-hero-carousel .carousel-control-next:hover { opacity: 1; }
.av-hero-carousel .carousel-control-prev-icon,
.av-hero-carousel .carousel-control-next-icon {
  filter: invert(72%) sepia(45%) saturate(1000%) hue-rotate(115deg) brightness(95%);
  width: 1.5rem; height: 1.5rem;
}
/* Hero visual panel (image/icon side) */
.av-hero-visual {
  position: relative;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.av-hero-visual .av-hero-art-card {
  position: relative;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--av-border);
  background: linear-gradient(160deg, rgba(20,214,168,.08), var(--av-panel-alt) 65%);
  padding: 1.5rem 1.5rem .5rem;
}
.av-hero-visual svg { width: 100%; height: auto; display: block; }
.av-hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--av-panel);
  border: 1px solid var(--av-border);
  border-radius: 999px;
  padding: .5rem .9rem .5rem .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--av-text);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  animation: av-fade-up .7s cubic-bezier(.16,.8,.24,1) both;
}
.av-hero-float-badge .av-icon-badge { width: 2rem; height: 2rem; border-radius: 8px; }
.av-hero-float-badge.badge-top-left { top: -.75rem; left: -1rem; animation-delay: .3s; }
.av-hero-float-badge.badge-bottom-right { bottom: -.75rem; right: -1rem; animation-delay: .55s; }
@media (max-width: 991.98px) {
  .av-hero-visual { display: none; }
}

/* Autoplay progress bar under the hero carousel */
@keyframes av-hero-fill { from { width: 0%; } to { width: 100%; } }
.av-hero-progress {
  height: 3px;
  width: 220px;
  max-width: 60%;
  background: var(--av-border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1.75rem;
}
.av-hero-progress-bar { height: 100%; width: 0%; background: var(--av-teal); }
.av-hero-progress-bar.animate { animation: av-hero-fill linear; }

/* ==================== Scroll-snap slider ==================== */

.av-slider-wrap { position: relative; }
.av-slider {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .25rem .25rem 1rem;
  margin: -.25rem -.25rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.av-slider::-webkit-scrollbar { display: none; }
.av-slider-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 78%;
}
@media (min-width: 576px) { .av-slider-item { width: 46%; } }
@media (min-width: 992px) { .av-slider-item { width: 23.5%; } }

.av-slider-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--av-panel);
  border: 1px solid var(--av-border);
  color: var(--av-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .15s ease;
}
.av-slider-nav:hover { background: var(--av-teal-dim); border-color: var(--av-teal); }
.av-slider-nav:active { transform: translateY(-50%) scale(.92); }
.av-slider-nav.prev { left: -.75rem; }
.av-slider-nav.next { right: -.75rem; }
@media (max-width: 575.98px) { .av-slider-nav { display: none; } }

/* Card hover lift (opt-in via .av-card-hover) */
.av-card-hover { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.av-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  border-color: var(--av-teal);
}

/* Button micro-interactions */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-av-primary:hover { box-shadow: 0 8px 24px rgba(20,214,168,.35); }
.av-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: av-ripple .6s ease-out;
  pointer-events: none;
}

/* Submit-button processing state (added by site.js on form submit) */
@keyframes av-spin { to { transform: rotate(360deg); } }
.btn.is-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}
.btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1em;
  height: 1.1em;
  margin: -0.55em 0 0 -0.55em;
  border: 2px solid rgba(6, 35, 28, 0.35);
  border-top-color: #06231c;
  border-radius: 50%;
  animation: av-spin .7s linear infinite;
}
.btn-av-outline.is-loading::after {
  border-color: rgba(20, 214, 168, 0.3);
  border-top-color: var(--av-teal);
}

/* Nav link underline sweep */
.av-navbar .nav-link { position: relative; }
.av-navbar .nav-link::after {
  content: "";
  position: absolute; left: .75rem; right: .75rem; bottom: -2px;
  height: 2px; background: var(--av-teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.av-navbar .nav-link:hover::after,
.av-navbar .nav-link.active::after { transform: scaleX(1); }

/* Progress bars animate width in via JS (data-fill attribute) */
.av-progress-bar { width: 0; transition: width 1.1s cubic-bezier(.16,.8,.24,1); }

/* Pulsing highlight for a featured card (e.g. top reward tier) */
.av-pulse { animation: av-pulse-glow 2.4s ease-in-out infinite; }

[data-countup] { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .av-reveal, main, .av-hero::before, .av-pulse, .btn, .av-card-pop {
    animation: none !important;
    transition: none !important;
  }
  .av-reveal, .av-card-pop { opacity: 1; transform: none; }
}

/* ==================== Auth split layout ==================== */

.av-auth-split {
  border: 1px solid var(--av-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--av-panel);
}
.av-auth-form-col { padding: 3rem 2.75rem; }
.av-auth-art {
  position: relative;
  min-height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(155deg, #0e2a24 0%, var(--av-panel-alt) 55%, var(--av-bg) 100%);
  overflow: hidden;
}
.av-auth-art::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(500px 260px at 70% 15%, rgba(20,214,168,.22), transparent 60%);
  animation: av-drift 20s ease-in-out infinite;
}
.av-auth-art svg { position: relative; z-index: 1; width: 100%; height: auto; }
.av-auth-art .av-auth-tagline {
  position: relative;
  z-index: 1;
  color: var(--av-muted);
  font-style: italic;
  font-size: .85rem;
  margin-top: 1.5rem;
}
@media (max-width: 991.98px) {
  .av-auth-form-col { padding: 2rem 1.5rem; }
}

/* ==================== About / stat strip ==================== */

.av-stat-strip .av-stat-value { font-size: 1.9rem; }

/* ==================== Contact page ==================== */

.av-contact-info li { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1.1rem; }
.av-contact-info .av-icon-badge { width: 2.25rem; height: 2.25rem; flex-shrink: 0; }

/* ==================== Icon feature cards ==================== */

.av-icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(155deg, rgba(20, 214, 168, 0.22) 0%, rgba(20, 214, 168, 0.05) 100%);
  border: 1px solid rgba(20, 214, 168, 0.32);
  box-shadow: 0 0 12px rgba(20, 214, 168, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.av-icon-badge svg { display: block; }
.av-card-hover:hover .av-icon-badge {
  border-color: var(--av-teal);
  box-shadow: 0 0 18px rgba(20, 214, 168, 0.28);
}

/* ==================== Accordion (FAQ) theming ==================== */

.accordion-item {
  background: var(--av-panel);
  border-color: var(--av-border);
}
.accordion-button {
  background: var(--av-panel);
  color: var(--av-text);
  font-weight: 600;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: var(--av-panel-alt);
  color: var(--av-teal);
  box-shadow: none;
}
.accordion-button::after {
  filter: invert(72%) sepia(45%) saturate(1000%) hue-rotate(115deg) brightness(95%);
}
.accordion-button:focus {
  box-shadow: 0 0 0 .2rem var(--av-teal-dim);
  border-color: var(--av-teal);
}
.accordion-body { color: var(--av-muted); }

/* ==================== Footer ==================== */

.av-footer-links li { margin-bottom: .65rem; }
.av-footer-links a,
.av-footer-links { color: var(--av-muted); font-size: .92rem; }
.av-footer-links a:hover { color: var(--av-teal); }
.av-footer-contact li { display: flex; align-items: center; gap: .5rem; }
.av-footer-contact svg { flex-shrink: 0; }
/* the email address is one unbreakable token wider than the mobile half-column —
   without this it pushes the whole page into horizontal scroll */
.av-footer-contact li span { overflow-wrap: anywhere; min-width: 0; }
