/* =========================================================
   Athenian Beauty Academy — Design System
   Soft cream luxury + peach accent + black CTAs
   ========================================================= */

:root {
  --bg-deep:    oklch(0.96 0.012 65);
  --bg-mid:     oklch(0.94 0.014 65);
  --bg-up:      oklch(0.99 0.006 65);
  --bg-card:    oklch(0.98 0.008 65);

  --gold:       oklch(0.63 0.13 38);
  --gold-light: oklch(0.72 0.11 40);
  --gold-dim:   oklch(0.55 0.12 36);
  --gold-mute:  oklch(0.90 0.04 45);

  --text-hi:    oklch(0.18 0.01 65);
  --text-body:  oklch(0.38 0.015 65);
  --text-muted: oklch(0.52 0.012 65);

  --ink:        oklch(0.15 0.005 65);
  --ink-on-accent: oklch(0.99 0.004 65);

  --gold-border:  oklch(0.74 0.09 45 / 0.35);
  --gold-border-h: oklch(0.74 0.09 45 / 0.65);
  --gold-glow:  oklch(0.74 0.09 45 / 0.12);
  --surface-sep: oklch(0.74 0.09 45 / 0.18);

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;

  --shadow-soft: 0 12px 40px oklch(0.15 0.01 65 / 0.08);

  --aba-layout-max: min(1600px, calc(100% - 16px));
  --aba-hero-max: min(1600px, calc(100% - 16px));
  --aba-gutter: 8px;

  --surface-ink: oklch(0.20 0.01 65);
  --surface-card: oklch(0.99 0.004 65);
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-deep);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-hi);
  line-height: 1.18;
}

p { line-height: 1.72; }

a { color: var(--gold); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--gold-light); }

img { display: block; max-width: 100%; }

/* ── Utilities ── */
.aba-container {
  width: 100%;
  max-width: var(--aba-layout-max);
  margin: 0 auto;
  padding-inline: var(--aba-gutter);
}

.aba-section     { padding-block: 96px; }
.aba-section-sm  { padding-block: 64px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.12;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 14px;
}

.gold-rule { width: 52px; height: 2px; background: var(--gold); margin: 20px 0; }
.gold-rule-c { width: 52px; height: 2px; background: var(--gold); margin: 20px auto; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--ink-on-accent);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease-out, transform 0.14s ease-out, box-shadow 0.18s;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
.btn-gold:hover {
  background: oklch(0.28 0.01 65);
  color: var(--ink-on-accent);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--bg-up);
  color: var(--text-hi);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--gold-border-h);
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease-out, color 0.18s, border-color 0.18s, transform 0.14s ease-out;
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: var(--gold-mute);
  color: var(--text-hi);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* CTA shine + glow (hero, auth promo) */
@keyframes aba-cta-glow-dark {
  0%, 100% {
    box-shadow:
      var(--shadow-soft),
      0 0 0 1px oklch(0.72 0.11 40 / 0.28),
      0 0 26px oklch(0.63 0.13 38 / 0.2);
  }
  50% {
    box-shadow:
      var(--shadow-soft),
      0 0 0 1px oklch(0.78 0.12 40 / 0.48),
      0 0 40px oklch(0.63 0.13 38 / 0.34);
  }
}

@keyframes aba-cta-glow-outline {
  0%, 100% {
    box-shadow:
      0 1px 2px oklch(0.15 0.01 65 / 0.06),
      0 0 0 1px oklch(0.74 0.09 45 / 0.38),
      0 0 18px oklch(0.63 0.13 38 / 0.1);
  }
  50% {
    box-shadow:
      0 4px 14px oklch(0.15 0.01 65 / 0.08),
      0 0 0 1px oklch(0.72 0.11 40 / 0.58),
      0 0 32px oklch(0.63 0.13 38 / 0.22);
  }
}

.aba-btn-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.aba-btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  pointer-events: none;
  transform: translateX(-160%) skewX(-18deg);
  animation: aba-nav-shine 4.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.aba-btn-cta.btn-gold {
  animation: aba-cta-glow-dark 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.aba-btn-cta.btn-gold::after {
  background: linear-gradient(
    105deg,
    transparent 0%,
    oklch(0.99 0.01 65 / 0.03) 38%,
    oklch(0.99 0.02 65 / 0.28) 50%,
    oklch(0.99 0.01 65 / 0.03) 62%,
    transparent 100%
  );
}

.aba-btn-cta.btn-outline-gold {
  animation: aba-cta-glow-outline 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.aba-btn-cta.btn-outline-gold::after {
  background: linear-gradient(
    105deg,
    transparent 0%,
    oklch(0.63 0.13 38 / 0.04) 38%,
    oklch(0.72 0.11 40 / 0.22) 50%,
    oklch(0.63 0.13 38 / 0.04) 62%,
    transparent 100%
  );
}

.aba-btn-cta.btn-gold:hover,
.aba-btn-cta.btn-outline-gold:hover {
  animation: none;
}

.aba-btn-cta.btn-gold:hover {
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px oklch(0.78 0.12 40 / 0.45),
    0 0 34px oklch(0.63 0.13 38 / 0.28);
}

.aba-btn-cta.btn-outline-gold:hover {
  box-shadow:
    0 4px 14px oklch(0.15 0.01 65 / 0.1),
    0 0 0 1px oklch(0.72 0.11 40 / 0.55),
    0 0 28px oklch(0.63 0.13 38 / 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .aba-btn-cta {
    animation: none !important;
  }
  .aba-btn-cta::after {
    animation: none !important;
  }
}

/* ── Circle image ── */
.circle-img {
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold-border);
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.aba-nav {
  --nav-bg:        oklch(0.15 0.018 42);
  --nav-surface:   oklch(0.24 0.028 40);
  --nav-text:      oklch(0.95 0.012 55);
  --nav-muted:     oklch(0.76 0.02 48);
  --nav-active-bg:   oklch(0.58 0.11 38 / 0.32);
  --nav-active-text: oklch(0.98 0.03 48);
  --nav-active-ring: oklch(0.72 0.11 40 / 0.58);
  --nav-border:    oklch(0.58 0.05 42 / 0.22);
  --nav-glow:      oklch(0.63 0.13 38 / 0.5);
  --nav-tube-bg:   oklch(0.22 0.025 42 / 0.92);
  --nav-tube-border: oklch(0.58 0.06 42 / 0.42);
  --nav-icon-bg:   oklch(0.63 0.13 38 / 0.14);
  --nav-icon-bg-active: oklch(0.63 0.13 38 / 0.28);

  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
}

.aba-nav-inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  padding: 10px var(--aba-gutter);
  max-width: var(--aba-hero-max);
  margin: 0 auto;
  width: 100%;
}

.aba-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.aba-logo:hover,
.aba-logo:focus,
.aba-logo:focus-visible {
  text-decoration: none;
  color: inherit;
}
.aba-logo img {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 50%;
}
.aba-logo-copy {
  display: block;
  min-width: 0;
}
.aba-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  color: oklch(0.99 0.006 65);
  line-height: 1.15;
  white-space: nowrap;
  text-decoration: none;
}
.aba-logo-text-short {
  display: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: oklch(0.99 0.006 65);
  line-height: 1.15;
  white-space: nowrap;
}
.aba-logo:hover .aba-logo-text,
.aba-logo:focus .aba-logo-text,
.aba-logo:focus-visible .aba-logo-text {
  color: oklch(0.99 0.006 65);
  text-decoration: none;
}

.aba-nav-tube-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

.aba-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aba-nav-tube > li {
  display: flex;
}

.aba-nav-dropdown {
  position: relative;
}

.aba-nav-chevron {
  display: inline-flex;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  opacity: 0.72;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.aba-nav-chevron svg {
  width: 100%;
  height: 100%;
}

.aba-nav-dropdown:hover .aba-nav-chevron,
.aba-nav-dropdown:focus-within .aba-nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.aba-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: none;
  min-width: 240px;
  max-width: min(320px, 70vw);
  max-height: min(360px, 60vh);
  overflow-y: auto;
  padding: 8px;
  background: oklch(0.18 0.015 65 / 0.96);
  border: 1px solid oklch(0.58 0.04 42 / 0.45);
  border-radius: var(--r-md);
  box-shadow:
    0 0 0 1px oklch(0.63 0.13 38 / 0.1),
    0 16px 40px oklch(0 0 0 / 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.aba-nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.aba-nav-dropdown:hover .aba-nav-dropdown-menu,
.aba-nav-dropdown:focus-within .aba-nav-dropdown-menu {
  display: block;
}

.aba-nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  color: var(--nav-text);
  transition: background 0.15s ease-out, color 0.15s ease-out;
}

.aba-nav-dropdown-item:hover {
  background: oklch(0.63 0.13 38 / 0.18);
  color: var(--nav-active-text);
}

.aba-nav-dropdown-title {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.aba-nav-dropdown-type {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nav-muted);
}

.aba-nav-dropdown-item:hover .aba-nav-dropdown-type {
  color: oklch(0.82 0.06 42);
}

.aba-nav-dropdown-empty {
  display: block;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--nav-muted);
}

.aba-nav-dropdown-all {
  display: block;
  margin-top: 4px;
  padding: 10px 12px;
  border-top: 1px solid oklch(0.32 0.018 65 / 0.65);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: color 0.15s ease-out, background 0.15s ease-out;
}

.aba-nav-dropdown-all:hover {
  color: var(--gold);
  background: oklch(0.63 0.13 38 / 0.12);
}

.aba-nav-tube {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: var(--nav-tube-bg);
  border: 1px solid var(--nav-tube-border);
  border-radius: var(--r-full);
  box-shadow:
    0 0 0 1px oklch(0.63 0.13 38 / 0.12),
    0 10px 36px oklch(0 0 0 / 0.42),
    inset 0 1px 0 oklch(0.88 0.01 65 / 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  isolation: isolate;
}

.aba-nav-tube a.aba-nav-tube-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--nav-muted);
  padding: 10px 22px;
  border-radius: var(--r-full);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.aba-nav-tube a.aba-nav-tube-link:hover:not(.aba-active) {
  color: var(--nav-text);
}

.aba-nav-tube a.aba-nav-tube-link.aba-active {
  color: var(--nav-active-text);
}

.aba-nav-icon {
  display: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.aba-nav-icon svg {
  width: 100%;
  height: 100%;
}

.aba-nav-label {
  line-height: 1;
}

/* Tubelight sliding lamp (nav-tubelight.js) */
.aba-tubelight-lamp {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: var(--r-full);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.18s ease-out;
  will-change: transform;
}

.aba-tubelight-lamp--instant {
  transition: none !important;
}

.aba-tubelight-lamp__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--nav-active-bg);
  box-shadow:
    0 0 0 1px var(--nav-active-ring),
    0 4px 20px oklch(0.63 0.13 38 / 0.35);
}

.aba-tubelight-lamp__beam {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.aba-tubelight-lamp__bar {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 5px;
  border-radius: var(--r-full) var(--r-full) 0 0;
  background: linear-gradient(
    180deg,
    oklch(0.78 0.12 40) 0%,
    var(--gold) 55%,
    oklch(0.58 0.14 36) 100%
  );
  box-shadow:
    0 0 12px oklch(0.72 0.12 40 / 0.9),
    0 0 28px oklch(0.63 0.13 38 / 0.55);
}

.aba-tubelight-lamp__glow {
  position: absolute;
  top: -12px;
  border-radius: 50%;
  background: oklch(0.72 0.12 40 / 0.45);
  filter: blur(10px);
}
.aba-tubelight-lamp__glow--lg {
  left: calc(50% - 32px);
  width: 56px;
  height: 28px;
}
.aba-tubelight-lamp__glow--md {
  left: calc(50% - 18px);
  width: 36px;
  height: 24px;
  filter: blur(8px);
  background: oklch(0.68 0.13 38 / 0.5);
}
.aba-tubelight-lamp__glow--sm {
  left: calc(50% + 4px);
  top: -5px;
  width: 18px;
  height: 18px;
  filter: blur(5px);
  background: oklch(0.78 0.11 40 / 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .aba-tubelight-lamp {
    transition: opacity 0.2s ease-out;
  }
  .aba-tubelight-lamp--instant {
    transition: none !important;
  }
}

.aba-nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.aba-nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}
.aba-nav-auth-sep {
  width: 1px;
  height: 22px;
  background: oklch(0.42 0.012 65 / 0.55);
  flex-shrink: 0;
}

@keyframes aba-nav-shine {
  0%, 68% {
    transform: translateX(-160%) skewX(-18deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  32% {
    transform: translateX(260%) skewX(-18deg);
    opacity: 1;
  }
  38%, 100% {
    transform: translateX(260%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes aba-nav-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px oklch(0.72 0.11 40 / 0.4),
      0 4px 20px oklch(0.63 0.13 38 / 0.45),
      0 0 36px oklch(0.63 0.13 38 / 0.28);
  }
  50% {
    box-shadow:
      0 0 0 1px oklch(0.78 0.12 40 / 0.55),
      0 6px 28px oklch(0.63 0.13 38 / 0.58),
      0 0 48px oklch(0.63 0.13 38 / 0.38);
  }
}

@keyframes aba-nav-glow-pulse-login {
  0%, 100% {
    box-shadow:
      0 0 0 1px oklch(0.63 0.13 38 / 0.14),
      0 0 22px oklch(0.63 0.13 38 / 0.14);
  }
  50% {
    box-shadow:
      0 0 0 1px oklch(0.72 0.11 40 / 0.38),
      0 0 34px oklch(0.63 0.13 38 / 0.3);
  }
}

.btn-nav-login,
.btn-nav-signup {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-full);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-login::after,
.btn-nav-signup::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    oklch(0.99 0.01 65 / 0.04) 38%,
    oklch(0.99 0.02 65 / 0.3) 50%,
    oklch(0.99 0.01 65 / 0.04) 62%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
}

.btn-nav-login {
  background: oklch(0.18 0.015 65 / 0.35);
  color: var(--nav-text);
  border: 1.5px solid oklch(0.72 0.09 42 / 0.58);
  animation: aba-nav-glow-pulse-login 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.btn-nav-login::after {
  animation: aba-nav-shine 4.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.btn-nav-login:hover {
  color: oklch(0.99 0.006 65);
  border-color: oklch(0.78 0.11 42 / 0.78);
  background: oklch(0.24 0.02 65 / 0.65);
  box-shadow:
    0 0 0 1px oklch(0.72 0.11 40 / 0.35),
    0 0 28px oklch(0.63 0.13 38 / 0.28);
  animation: none;
}

.btn-nav-signup {
  background: linear-gradient(
    165deg,
    oklch(0.72 0.12 40) 0%,
    var(--gold) 48%,
    oklch(0.58 0.14 36) 100%
  );
  color: var(--ink-on-accent);
  border: 1.5px solid oklch(0.78 0.11 40 / 0.45);
  animation: aba-nav-glow-pulse 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.btn-nav-signup::after {
  animation: aba-nav-shine 4.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.btn-nav-signup:hover {
  color: var(--ink-on-accent);
  background: linear-gradient(
    165deg,
    oklch(0.78 0.12 40) 0%,
    var(--gold-light) 48%,
    oklch(0.64 0.13 38) 100%
  );
  box-shadow:
    0 0 0 1px oklch(0.78 0.12 40 / 0.55),
    0 8px 32px oklch(0.63 0.13 38 / 0.55),
    0 0 52px oklch(0.63 0.13 38 / 0.42);
  transform: translateY(-1px);
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn-nav-login,
  .btn-nav-signup {
    animation: none;
  }
  .btn-nav-signup {
    box-shadow:
      0 0 0 1px oklch(0.72 0.11 40 / 0.4),
      0 4px 20px oklch(0.63 0.13 38 / 0.45);
  }
  .btn-nav-login {
    box-shadow:
      0 0 0 1px oklch(0.63 0.13 38 / 0.14),
      0 0 22px oklch(0.63 0.13 38 / 0.14);
  }
  .btn-nav-login::after,
  .btn-nav-signup::after {
    animation: none !important;
  }
}

.aba-nav-cta .btn-outline-gold {
  background: transparent;
  color: var(--nav-text);
  border-color: oklch(0.72 0.01 65 / 0.45);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  padding: 9px 18px;
}
.aba-nav-cta .btn-outline-gold:hover {
  background: oklch(0.20 0.012 65 / 0.5);
  color: var(--nav-text);
  border-color: var(--gold);
}

.aba-hamburger {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  border-radius: var(--r-md);
  transition: background 0.18s ease-out;
}
.aba-hamburger:hover,
.aba-hamburger:focus-visible {
  background: oklch(0.24 0.018 65 / 0.55);
  outline: none;
}
.aba-hamburger span {
  position: absolute;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.18s ease-out;
}
.aba-hamburger span:nth-child(1) { transform: translateY(-6px); }
.aba-hamburger span:nth-child(2) { transform: translateY(0); }
.aba-hamburger span:nth-child(3) { transform: translateY(6px); }
.aba-hamburger.is-open span:nth-child(1) { transform: rotate(45deg); }
.aba-hamburger.is-open span:nth-child(2) { opacity: 0; }
.aba-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg); }

.aba-dropdown { position: relative; }
.aba-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-up);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 164px;
  display: none;
  box-shadow: 0 12px 32px oklch(0 0 0 / 0.4);
}
.aba-dropdown:hover .aba-dropdown-menu { display: block; }
.aba-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-body);
  border-radius: var(--r-sm);
  transition: background 0.12s, color 0.12s;
}
.aba-dropdown-menu a:hover { background: var(--gold-glow); color: var(--gold); }

.aba-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px var(--aba-gutter) 20px;
  border-top: 1px solid var(--nav-border);
  gap: 0;
  background: var(--nav-bg);
}
.aba-mobile-nav a,
.aba-mobile-courses-panel > summary {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--nav-muted);
  min-height: 48px;
  padding: 10px 4px;
  border-bottom: 1px solid oklch(0.58 0.04 42 / 0.18);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.aba-mobile-courses-panel > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.aba-mobile-courses-panel > summary::-webkit-details-marker { display: none; }
.aba-mobile-courses-panel > summary::marker { content: ''; }
.aba-mobile-courses-panel > summary .aba-mobile-chevron {
  margin-left: auto;
  display: inline-flex;
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.aba-mobile-courses-panel[open] > summary .aba-mobile-chevron {
  transform: rotate(180deg);
}
.aba-mobile-courses-panel > summary.aba-active {
  color: var(--nav-active-text);
  font-weight: 600;
  background: var(--nav-active-bg);
  border-radius: var(--r-md);
  padding: 10px 14px;
  margin-inline: -4px;
  border-bottom-color: transparent;
  box-shadow: 0 0 0 1px var(--nav-active-ring);
}
.aba-mobile-nav a .aba-nav-icon,
.aba-mobile-courses-panel > summary .aba-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: var(--r-md);
  background: var(--nav-icon-bg);
  color: var(--gold-light);
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.aba-mobile-nav a:hover,
.aba-mobile-courses-panel > summary:hover { color: var(--gold-light); }
.aba-mobile-nav a.aba-active {
  color: var(--nav-active-text);
  font-weight: 600;
  background: var(--nav-active-bg);
  border-radius: var(--r-md);
  padding: 10px 12px;
  margin-inline: -4px;
  border-bottom-color: transparent;
  box-shadow: 0 0 0 1px var(--nav-active-ring);
}
.aba-mobile-nav a.aba-active .aba-nav-icon,
.aba-mobile-courses-panel > summary.aba-active .aba-nav-icon {
  background: var(--nav-icon-bg-active);
  color: oklch(0.98 0.03 48);
}
.aba-mobile-auth {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding: 16px 0 max(8px, env(safe-area-inset-bottom));
  border-top: 1px solid oklch(0.58 0.05 42 / 0.24);
}
.aba-mobile-auth .btn-nav-login,
.aba-mobile-auth .btn-nav-signup {
  flex: 1;
  text-align: center;
  min-height: 48px;
  padding-block: 12px;
}
.aba-mobile-nav.open {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.aba-mobile-courses-panel {
  border-bottom: none;
}

.aba-mobile-courses-panel[open] > summary {
  border-bottom-color: transparent;
}

.aba-mobile-courses {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 8px;
  padding: 8px 10px 10px;
  border-bottom: 1px solid oklch(0.58 0.04 42 / 0.18);
  background: oklch(0.63 0.13 38 / 0.08);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: inset 0 1px 0 oklch(0.72 0.09 42 / 0.1);
}

.aba-mobile-courses-panel[open] > summary.aba-active + .aba-mobile-courses,
.aba-mobile-courses-panel[open] > summary:not(.aba-active) + .aba-mobile-courses {
  margin-top: -2px;
  border: 1px solid oklch(0.58 0.06 42 / 0.22);
  border-top: none;
}

.aba-mobile-courses-panel[open] > summary.aba-active {
  border-radius: var(--r-md) var(--r-md) 0 0;
  margin-bottom: 0;
}

.aba-mobile-courses-all {
  display: flex !important;
  align-items: center !important;
  gap: 6px;
  padding: 12px 4px 4px !important;
  margin-top: 4px;
  min-height: 44px !important;
  font-size: 0.82rem !important;
  font-weight: 600;
  color: var(--gold) !important;
  border-top: 1px solid oklch(0.58 0.05 42 / 0.2) !important;
  border-bottom: none !important;
  text-align: left;
}

.aba-mobile-account {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 16px 0 max(8px, env(safe-area-inset-bottom));
  border-top: 1px solid oklch(0.58 0.05 42 / 0.24);
}

.aba-mobile-account-name {
  margin: 4px 0 2px;
  padding: 8px 0 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(0.58 0.04 42);
}

.aba-mobile-account a {
  min-height: 44px;
}

.aba-mobile-logout {
  color: oklch(0.72 0.08 25) !important;
}

body.aba-nav-open {
  overflow: hidden;
}

body.aba-nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  background: oklch(0.12 0.018 42 / 0.68);
  pointer-events: none;
}

.aba-mobile-nav a.aba-mobile-course-link,
.aba-mobile-nav a.aba-mobile-courses-all {
  align-items: flex-start;
  text-align: left;
}

.aba-mobile-course-link {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 6px;
  padding: 10px 8px !important;
  min-height: 48px !important;
  border-bottom: none !important;
  border-radius: var(--r-sm);
  font-size: 0.86rem !important;
  color: var(--nav-text) !important;
  transition: background 0.15s ease-out, color 0.15s ease-out;
}

.aba-mobile-course-link:hover,
.aba-mobile-course-link:focus-visible {
  color: var(--nav-active-text) !important;
  background: oklch(0.63 0.13 38 / 0.16);
  outline: none;
}

.aba-mobile-course-title {
  font-weight: 600;
  line-height: 1.35;
  width: 100%;
}

.aba-mobile-course-type {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: oklch(0.78 0.08 42);
  background: oklch(0.63 0.13 38 / 0.18);
  border-radius: var(--r-full);
  line-height: 1.2;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.aba-hero {
  background-color: #fff;
  padding: 100px 0 clamp(32px, 4vw, 48px);
  position: relative;
}

.aba-hero-shell {
  width: 100%;
  max-width: var(--aba-hero-max);
  margin: 0 auto;
  padding-inline: var(--aba-gutter);
}

/* Golden aurora lights (CSS port of aurora-background, no React/Tailwind) */
.aba-hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aba-hero-aurora-glow {
  position: absolute;
  inset: -12%;
  opacity: 0.62;
  filter: blur(42px);
  will-change: background-position;
  background-image:
    repeating-linear-gradient(
      100deg,
      oklch(0.98 0.008 65) 0%,
      oklch(0.98 0.008 65) 7%,
      transparent 10%,
      transparent 12%,
      oklch(0.98 0.008 65) 16%
    ),
    repeating-linear-gradient(
      100deg,
      oklch(0.72 0.11 48) 8%,
      oklch(0.82 0.09 52) 14%,
      oklch(0.78 0.10 45) 20%,
      oklch(0.88 0.06 62) 26%,
      oklch(0.70 0.12 42) 32%,
      oklch(0.85 0.07 55) 38%
    );
  background-size: 300% 200%, 280% 180%;
  background-position: 50% 50%, 50% 50%;
  animation: aba-aurora-shift 55s linear infinite;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 75% at 18% 22%,
    oklch(0.2 0.01 65) 12%,
    transparent 68%
  );
  mask-image: radial-gradient(
    ellipse 90% 75% at 18% 22%,
    oklch(0.2 0.01 65) 12%,
    transparent 68%
  );
}

.aba-hero-aurora-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  background-image:
    repeating-linear-gradient(
      100deg,
      oklch(0.99 0.006 65) 0%,
      oklch(0.99 0.006 65) 7%,
      transparent 10%,
      transparent 12%,
      oklch(0.99 0.006 65) 16%
    ),
    repeating-linear-gradient(
      100deg,
      oklch(0.76 0.10 50) 10%,
      oklch(0.86 0.08 58) 18%,
      oklch(0.74 0.11 45) 24%,
      oklch(0.90 0.05 65) 30%
    );
  background-size: 220% 100%, 200% 120%;
  background-position: 50% 50%, 50% 50%;
  animation: aba-aurora-shift 45s linear infinite reverse;
}

.aba-hero-aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.45;
  animation: aba-aurora-float 18s ease-in-out infinite;
}

.aba-hero-aurora-orb--1 {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: -8%;
  left: -6%;
  background: radial-gradient(
    circle,
    oklch(0.78 0.12 48 / 0.9) 0%,
    oklch(0.78 0.12 48 / 0) 70%
  );
}

.aba-hero-aurora-orb--2 {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  bottom: 6%;
  left: 28%;
  animation-delay: -9s;
  background: radial-gradient(
    circle,
    oklch(0.84 0.08 55 / 0.85) 0%,
    oklch(0.84 0.08 55 / 0) 72%
  );
}

@keyframes aba-aurora-shift {
  from {
    background-position: 50% 50%, 50% 50%;
  }
  to {
    background-position: 350% 50%, 320% 50%;
  }
}

@keyframes aba-aurora-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(24px, -18px) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aba-hero-aurora-glow,
  .aba-hero-aurora-glow::after,
  .aba-hero-aurora-orb {
    animation: none;
  }
}

/* ── Scroll parallax gallery (Aceternity-style, vanilla) ── */
.aba-parallax {
  position: relative;
  z-index: 2;
  min-height: 200vh;
  background: var(--surface);
  overflow: visible;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
}

/* Stack following sections above the sticky parallax viewport while scrolling */
.aba-parallax + section {
  position: relative;
  z-index: 10;
}

.aba-parallax-header {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(48px, 8vw, 88px) 0 clamp(24px, 4vw, 40px);
}

/* Match nav / section grid so eyebrow + title line up with content above */
.aba-gallery.aba-parallax .aba-parallax-header .aba-container {
  max-width: var(--aba-layout-max);
  padding-inline: var(--aba-gutter);
}

.aba-gallery.aba-parallax .aba-parallax-header .section-eyebrow,
.aba-gallery.aba-parallax .aba-parallax-header .aba-parallax-title,
.aba-gallery.aba-parallax .aba-parallax-header .aba-parallax-lead {
  max-width: 680px;
}

.aba-parallax-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.15;
  margin: 0 0 16px;
}

.aba-parallax-title em {
  font-style: italic;
  color: var(--gold);
}

.aba-parallax-lead {
  font-size: clamp(0.95rem, 1.35vw, 1.125rem);
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}

.aba-parallax-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(16px, 3vh, 32px) 0;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.aba-parallax-stage {
  width: 100%;
  max-width: var(--aba-layout-max);
  margin: 0 auto;
  padding: 0 var(--aba-gutter);
  transform-style: preserve-3d;
  transform: rotateX(var(--parallax-rotate-x, 12deg)) rotateZ(var(--parallax-rotate-z, 8deg))
    translateY(var(--parallax-translate-y, -40px)) scale(var(--parallax-scale, 0.88));
  transform-origin: center center;
  opacity: var(--parallax-opacity, 0.35);
  will-change: transform, opacity;
}

.aba-parallax-row {
  margin-bottom: clamp(0.75rem, 2vw, 1.35rem);
  overflow: visible;
}

.aba-parallax-row--rev .aba-parallax-row-track {
  flex-direction: row-reverse;
}

.aba-parallax-row-track {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  transform: translateX(var(--parallax-row-x, 0px));
  will-change: transform;
}

.aba-parallax-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 24vw, 22rem);
  height: clamp(140px, 22vw, 15rem);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
}

.aba-parallax-card:hover,
.aba-parallax-card:focus-visible {
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.18);
  outline: none;
}

.aba-parallax-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.aba-parallax-card-overlay {
  position: absolute;
  inset: 0;
  background: #111;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.aba-parallax-card:hover .aba-parallax-card-overlay,
.aba-parallax-card:focus-visible .aba-parallax-card-overlay {
  opacity: 0.55;
}

.aba-parallax-card-title {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.aba-parallax-card:hover .aba-parallax-card-title,
.aba-parallax-card:focus-visible .aba-parallax-card-title {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .aba-parallax {
    min-height: 200vh;
  }

  .aba-parallax-header {
    padding: clamp(28px, 5vw, 40px) 0 clamp(12px, 2.5vw, 20px);
  }

  .aba-parallax-sticky {
    top: 72px;
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
    align-items: center;
    justify-content: center;
    padding: 0 0 16px;
  }

  .aba-parallax-stage {
    --parallax-scale: 1.08;
    --parallax-opacity: 0.85;
    width: 100%;
    max-width: none;
    padding: 0 clamp(10px, 2.5vw, 16px);
    transform: rotateX(var(--parallax-rotate-x, 3deg)) rotateZ(var(--parallax-rotate-z, 2deg))
      translateY(var(--parallax-translate-y, -8px)) scale(var(--parallax-scale, 1.08));
  }

  .aba-parallax-row {
    margin-bottom: 0.6rem;
  }

  .aba-parallax-row-track {
    gap: 0.65rem;
  }

  .aba-parallax-card {
    width: clamp(168px, 54vw, 212px);
    height: clamp(116px, 37vw, 148px);
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aba-parallax {
    min-height: auto;
    padding-bottom: 48px;
  }

  .aba-parallax-sticky {
    position: relative;
    height: auto;
    perspective: none;
  }

  .aba-parallax-stage {
    transform: none;
    opacity: 1;
  }

  .aba-parallax-row-track {
    transform: none !important;
    flex-wrap: wrap;
    justify-content: center;
  }

  .aba-parallax-card {
    width: min(100%, 280px);
    height: 200px;
  }
}

.aba-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(24px, 3vw, 40px);
  padding: 8px 0 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.aba-hero-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}

.aba-hero-motto {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 1.5;
}

.aba-section-motto {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--gold);
  margin: 4px 0 14px;
  line-height: 1.45;
}

.aba-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.35rem, 4.2vw, 3.75rem);
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.1;
  margin-bottom: 20px;
}
.aba-hero-h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.aba-hero-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 22px;
  border-radius: 2px;
}

.aba-hero-sub {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 36px;
}

.aba-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.aba-hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--bg-up);
  border: 1.5px solid oklch(0.74 0.09 45 / 0.28);
  border-radius: var(--r-xl);
  box-shadow:
    0 1px 0 oklch(0.99 0.004 65) inset,
    0 12px 40px oklch(0.15 0.01 65 / 0.08),
    0 0 0 1px oklch(0.63 0.13 38 / 0.06);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: clamp(32px, 4vw, 48px) 0 0;
}

.aba-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid oklch(0.74 0.09 45 / 0.2);
  transition: background 0.2s ease-out;
}
.aba-hero-stat:last-child {
  border-right: none;
}
.aba-hero-stat:hover {
  background: oklch(0.97 0.02 45 / 0.45);
}

.aba-hero-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: oklch(0.94 0.035 42);
  color: var(--gold-dim);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px oklch(0.74 0.09 45 / 0.15);
}
.aba-hero-stat-icon svg {
  width: 22px;
  height: 22px;
}

.aba-hero-stat-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.aba-hero-stat-copy strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.aba-hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 10px;
  min-height: 100%;
}

.aba-hero-image {
  width: 100%;
  flex: 1 1 auto;
  min-height: clamp(320px, 38vw, 480px);
  max-height: clamp(400px, 54vh, 560px);
  position: relative;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

/* ── Feature carousel (3D perspective showcase) ── */
.aba-feature-carousel-glow {
  position: absolute;
  inset: -8% -12%;
  z-index: 0;
  opacity: 0.28;
  pointer-events: none;
}

.aba-feature-carousel-glow::before,
.aba-feature-carousel-glow::after {
  content: "";
  position: absolute;
  width: min(420px, 72%);
  height: min(420px, 68%);
  border-radius: 50%;
}

.aba-feature-carousel-glow::before {
  bottom: 0;
  left: -18%;
  top: -8%;
  background: radial-gradient(circle farthest-side, oklch(0.72 0.12 75 / 0.45), transparent);
}

.aba-feature-carousel-glow::after {
  bottom: 0;
  right: -18%;
  top: -8%;
  background: radial-gradient(circle farthest-side, oklch(0.58 0.08 55 / 0.35), transparent);
}

.aba-feature-carousel-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aba-feature-carousel-track {
  --fc-shift: 45%;
  --fc-tilt: 10deg;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.aba-feature-carousel-card {
  --fc-x: 0;
  --fc-scale: 0.7;
  --fc-opacity: 0;
  --fc-z: 1;
  --fc-filter: blur(4px);
  position: absolute;
  width: clamp(14rem, 68%, 24rem);
  height: min(92%, 460px);
  max-height: 100%;
  aspect-ratio: 5 / 6;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(calc(var(--fc-x) * var(--fc-shift))) scale(var(--fc-scale)) rotateY(calc(var(--fc-x) * var(--fc-tilt) * -1));
  opacity: var(--fc-opacity);
  z-index: var(--fc-z);
  filter: var(--fc-filter);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out,
    filter 0.5s ease-in-out,
    visibility 0s linear 0.5s;
}

.aba-feature-carousel-card[data-pos="-1"],
.aba-feature-carousel-card[data-pos="1"] {
  --fc-scale: 0.85;
  --fc-opacity: 0.42;
  --fc-z: 5;
  --fc-filter: blur(4px);
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out,
    filter 0.5s ease-in-out,
    visibility 0s;
}

.aba-feature-carousel-card[data-pos="-1"] { --fc-x: -1; }
.aba-feature-carousel-card[data-pos="1"]  { --fc-x: 1; }

.aba-feature-carousel-card[data-pos="0"] {
  --fc-x: 0;
  --fc-scale: 1;
  --fc-opacity: 1;
  --fc-z: 10;
  --fc-filter: blur(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.5s ease-in-out,
    opacity 0.5s ease-in-out,
    filter 0.5s ease-in-out,
    visibility 0s;
}

.aba-feature-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  border-radius: calc(var(--r-lg) + 4px);
  border: 2px solid oklch(0.99 0.006 65 / 0.14);
  box-shadow:
    var(--shadow-soft),
    0 22px 44px oklch(0.12 0.02 65 / 0.38);
}

@media (prefers-reduced-motion: reduce) {
  .aba-feature-carousel-card {
    transition: none;
    transform: none;
    filter: none;
  }
  .aba-feature-carousel-card:not([data-pos="0"]) {
    display: none;
  }
}

.aba-hero-services {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  width: 100%;
  padding: 12px 14px;
  background: oklch(0.18 0.01 65 / 0.88);
  border-radius: var(--r-md);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.aba-hero-services-track {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.aba-hero-service.aba-hero-service--clone {
  display: none;
}

.aba-hero-service {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  color: oklch(0.92 0.01 65);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  transition: color 0.15s;
  min-width: 0;
}
.aba-hero-service:hover {
  color: var(--gold-light);
}
.aba-hero-service-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.aba-hero-service-icon svg {
  width: 100%;
  height: 100%;
}

/* ─────────────────────────────────────────────
   SPECIALIZED COURSES (landing)
───────────────────────────────────────────── */
.aba-specialized {
  background: var(--bg-deep);
  padding-block: 72px 80px;
}

.aba-specialized-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.aba-specialized-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.aba-specialized-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.12;
}

.aba-specialized-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.aba-specialized-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(22px, 2.5vw, 28px) clamp(18px, 2vw, 24px) clamp(48px, 5vw, 56px);
  background: var(--surface-card);
  border-radius: var(--r-lg);
  border: 1px solid oklch(0.74 0.09 45 / 0.1);
  box-shadow: 0 4px 20px oklch(0.15 0.01 65 / 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.aba-specialized-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px oklch(0.15 0.01 65 / 0.1);
}

.aba-specialized-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 18px;
}
.aba-specialized-icon svg {
  width: 100%;
  height: 100%;
}

.aba-specialized-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.25;
  margin-bottom: 10px;
}

.aba-specialized-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.aba-specialized-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-on-accent);
  transition: background 0.18s ease-out, transform 0.18s ease-out;
}
.aba-specialized-arrow svg {
  width: 18px;
  height: 18px;
}
.aba-specialized-card:hover .aba-specialized-arrow {
  background: var(--gold-dim);
  transform: translateX(2px);
}

/* ─────────────────────────────────────────────
   TRUST + CTA BAND
───────────────────────────────────────────── */
.aba-trust-band {
  background: var(--surface-ink);
}

.aba-trust-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(168px, 220px) minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  max-width: var(--aba-hero-max);
  margin: 0 auto;
  padding: 10px var(--aba-gutter);
}

.aba-trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 6px 10px;
  min-width: 0;
  color: oklch(0.92 0.01 65);
}

.aba-trust-thumb {
  width: 76px;
  height: 76px;
  min-width: 76px;
  min-height: 76px;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 2px solid oklch(0.74 0.09 45 / 0.45);
  flex-shrink: 0;
}

.aba-trust-icon {
  width: 76px;
  height: 76px;
  min-width: 76px;
  min-height: 76px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.aba-trust-icon svg {
  width: 100%;
  height: 100%;
}

.aba-trust-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  font-weight: 700;
  color: oklch(0.98 0.004 65);
  line-height: 1.15;
  margin-bottom: 2px;
}

.aba-trust-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.78rem, 0.95vw, 0.84rem);
  color: oklch(0.78 0.02 65);
  line-height: 1.35;
}

.aba-trust-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 12px 14px;
  background: var(--gold);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 28px oklch(0 0 0 / 0.22);
  min-width: 0;
}

.aba-trust-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  font-weight: 700;
  color: oklch(0.99 0.004 65);
  line-height: 1.12;
}

.aba-trust-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.78rem, 0.95vw, 0.84rem);
  color: oklch(0.22 0.02 38 / 0.9);
  line-height: 1.35;
  max-width: 22ch;
}

.aba-trust-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-hi);
  background: var(--surface-card);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.18s ease-out, transform 0.14s ease-out;
}
.aba-trust-cta-btn:hover {
  background: oklch(0.96 0.008 65);
  color: var(--text-hi);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   FEATURED COURSES + HIGHLIGHTS (legacy)
───────────────────────────────────────────── */
.aba-showcase {
  background: var(--bg-deep);
  padding-block: 72px 88px;
}

.aba-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(260px, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

.aba-showcase-grid > * {
  min-width: 0;
}

.aba-showcase-panel {
  background: var(--bg-up);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 36px);
}

.aba-panel-head {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.aba-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-hi);
}

.aba-panel-title-marked {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.aba-panel-title-marked::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.aba-panel-title-plain {
  display: inline-block;
  margin-left: 0.35em;
}

.aba-panel-title-single {
  display: block;
  max-width: 12ch;
}

.aba-showcase-courses {
  overflow: hidden;
}

.aba-featured-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}

.aba-featured-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: transform 0.2s ease-out;
}
.aba-featured-card:hover {
  transform: translateY(-4px);
}
.aba-featured-card:hover .aba-featured-card-link {
  color: var(--gold-dim);
}

.aba-featured-card-img {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 14px;
  background: var(--bg-mid);
}
.aba-featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aba-featured-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.25;
  margin-bottom: 4px;
}

.aba-featured-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
}

.aba-featured-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  transition: color 0.15s;
}

.aba-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 26px);
}

.aba-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.aba-highlight-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--gold);
}
.aba-highlight-icon svg {
  width: 100%;
  height: 100%;
}

.aba-highlight-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.3;
  margin-bottom: 4px;
}

.aba-highlight-desc {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   COURSES (legacy grid — courses.php etc.)
───────────────────────────────────────────── */
.aba-courses { background: var(--bg-mid); }

.aba-courses-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 52px;
}

.aba-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aba-course-card {
  background: var(--bg-up);
  border-radius: var(--r-lg);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s, transform 0.22s ease-out, box-shadow 0.22s;
}
.aba-course-card:hover {
  border-color: var(--gold-border-h);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.aba-course-img-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 24px 16px;
}
.aba-course-img-wrap img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold-border);
  background: var(--bg-mid);
}

.aba-course-body { padding: 12px 24px 28px; flex: 1; display: flex; flex-direction: column; }

.aba-course-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 8px;
  line-height: 1.3;
}

.aba-course-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.aba-course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aba-course-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}

/* ─────────────────────────────────────────────
   COURSES PAGE (courses.php)
───────────────────────────────────────────── */
.aba-courses-page {
  background: var(--bg-deep);
  padding-top: 72px;
}

.aba-courses-hero {
  padding-block: 56px 64px;
  background: linear-gradient(180deg, var(--bg-up) 0%, var(--bg-deep) 100%);
  text-align: center;
}

.aba-courses-hero .section-eyebrow {
  justify-content: center;
}

.aba-courses-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.aba-courses-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-hi);
  margin-bottom: 16px;
}

.aba-courses-hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.75;
  max-width: 58ch;
  margin: 0 auto 12px;
}

.aba-courses-hero-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 auto;
}

.aba-course-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 32px 24px 8px;
  max-width: 1320px;
  margin: 0 auto;
}

.aba-filter-btn {
  padding: 10px 22px;
  border-radius: var(--r-full);
  border: 1px solid var(--gold-border);
  background: var(--bg-up);
  color: var(--text-hi);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out, transform 0.2s ease-out;
}

.aba-filter-btn:hover {
  border-color: var(--gold-border-h);
  transform: translateY(-1px);
}

.aba-filter-btn.active {
  background: var(--ink);
  color: var(--ink-on-accent);
  border-color: var(--ink);
}

.aba-courses-catalog {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 24px 96px;
}

.aba-courses-section {
  margin-bottom: 72px;
}

.aba-courses-section:last-child {
  margin-bottom: 0;
}

.aba-courses-section-head {
  margin-bottom: 28px;
}

.aba-courses-section-head .section-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.aba-courses-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.aba-rail-card {
  background: var(--bg-up);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.24s ease-out, box-shadow 0.24s ease-out, border-color 0.24s ease-out;
}

.aba-rail-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px oklch(0.15 0.01 65 / 0.08);
  border-color: var(--gold-border-h);
}

.aba-rail-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.aba-rail-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-mid);
}

.aba-rail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aba-rail-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: var(--bg-up);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.aba-rail-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aba-rail-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aba-rail-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.aba-rail-enrollments {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.aba-rail-enrollments i {
  color: var(--gold);
  font-size: 0.9rem;
}

.aba-rail-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--ink-on-accent);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease-out, transform 0.2s ease-out;
}

.aba-rail-cta:hover {
  background: oklch(0.22 0.01 65);
  color: var(--ink-on-accent);
  transform: translateY(-1px);
}

.aba-courses-empty {
  grid-column: 1 / -1;
  padding: 48px 28px;
  text-align: center;
  background: var(--bg-up);
  border: 1px dashed var(--gold-border);
  border-radius: var(--r-lg);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.aba-courses-empty a {
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   CORE VALUES (courses.php)
───────────────────────────────────────────── */
.aba-core-values {
  padding: 72px 0 96px;
  background: var(--bg-up);
  border-top: 1px solid var(--surface-sep);
}

.aba-core-values-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.aba-core-values-head .section-eyebrow {
  justify-content: center;
}

.aba-core-values-sub {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.aba-core-values-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
}

.aba-core-values-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 26px;
  background: var(--bg-card);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 20px oklch(0.15 0.01 65 / 0.04);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.aba-core-values-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border-h);
  box-shadow: 0 12px 32px oklch(0.15 0.01 65 / 0.08);
}

.aba-core-values-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: var(--gold-mute);
  color: var(--gold-dim);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.aba-core-values-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.3;
}

.aba-core-values-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .aba-core-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .aba-core-values {
    padding: 56px 0 72px;
  }

  .aba-core-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .aba-courses-hero {
    padding-block: 40px 48px;
  }

  .aba-courses-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .aba-rail-card {
    flex: 0 0 min(300px, 88vw);
    scroll-snap-align: start;
  }
}

/* ─────────────────────────────────────────────
   MY COURSES (video-tracking.php)
───────────────────────────────────────────── */
.aba-my-courses-page {
  background: var(--bg-deep);
  padding-top: 72px;
}

.aba-my-courses-hero {
  padding-block: clamp(40px, 6vw, 56px) clamp(32px, 5vw, 48px);
  background: linear-gradient(180deg, var(--bg-up) 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--surface-sep);
  text-align: center;
}

.aba-my-courses-hero .section-eyebrow {
  justify-content: center;
}

.aba-my-courses-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-hi);
  margin-bottom: 14px;
}

.aba-my-courses-lead {
  max-width: 52ch;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.75;
  color: var(--text-body);
}

.aba-my-courses-catalog {
  padding-block: 40px 96px;
}

.aba-my-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.aba-my-course-card {
  background: var(--bg-up);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease-out, box-shadow 0.24s ease-out, border-color 0.24s ease-out;
}

.aba-my-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px oklch(0.15 0.01 65 / 0.08);
  border-color: var(--gold-border-h);
}

.aba-my-course-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-mid);
}

.aba-my-course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease-out;
}

.aba-my-course-card:hover .aba-my-course-media img {
  transform: scale(1.04);
}

.aba-my-course-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.aba-my-course-status.is-new {
  background: var(--bg-up);
  color: var(--text-muted);
  border-color: var(--gold-border);
}

.aba-my-course-status.is-active {
  background: oklch(0.97 0.03 85);
  color: var(--gold-dim);
  border-color: var(--gold-border);
}

.aba-my-course-status.is-complete {
  background: oklch(0.28 0.04 145);
  color: oklch(0.96 0.02 145);
  border-color: oklch(0.38 0.05 145);
}

.aba-my-course-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.aba-my-course-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-hi);
}

.aba-my-course-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: -4px 0 0;
}

.aba-my-course-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aba-my-course-progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.aba-my-course-progress-label strong {
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
}

.aba-my-course-progress {
  height: 8px;
  border-radius: var(--r-full);
  background: oklch(0.94 0.01 65);
  overflow: hidden;
}

.aba-my-course-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transition: width 0.35s ease-out;
}

.aba-my-course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

.aba-my-course-actions form {
  margin: 0;
}

.aba-my-course-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out, transform 0.2s ease-out;
}

.aba-my-course-btn:hover {
  transform: translateY(-1px);
}

.aba-my-course-btn-primary {
  background: var(--ink);
  color: var(--ink-on-accent);
}

.aba-my-course-btn-primary:hover {
  background: oklch(0.22 0.01 65);
  color: var(--ink-on-accent);
}

.aba-my-course-btn-secondary {
  background: transparent;
  color: var(--text-hi);
  border-color: var(--gold-border);
}

.aba-my-course-btn-secondary:hover {
  background: var(--bg-mid);
  color: var(--gold-dim);
  border-color: var(--gold-border-h);
}

.aba-my-courses-empty {
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
  background: var(--bg-up);
  border: 1px dashed var(--gold-border);
  border-radius: var(--r-lg);
}

.aba-my-courses-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: oklch(0.97 0.02 85);
  color: var(--gold);
  font-size: 1.6rem;
}

.aba-my-courses-empty h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-hi);
  margin-bottom: 10px;
}

.aba-my-courses-empty p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.aba-my-courses-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--ink-on-accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease-out, transform 0.2s ease-out;
}

.aba-my-courses-empty-cta:hover {
  background: oklch(0.22 0.01 65);
  color: var(--ink-on-accent);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .aba-my-courses-grid {
    grid-template-columns: 1fr;
  }

  .aba-my-course-actions {
    flex-direction: column;
  }

  .aba-my-course-btn {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────
   LIVE COURSE ENROLL (enroll-live-course.php)
───────────────────────────────────────────── */
.aba-enroll-page {
  background: var(--bg-deep);
  padding-top: 72px;
}

.aba-enroll-hero {
  padding-block: clamp(32px, 6vw, 48px) clamp(24px, 4vw, 32px);
  border-bottom: 1px solid var(--surface-sep);
  background: linear-gradient(180deg, var(--bg-up) 0%, var(--bg-deep) 100%);
}

.aba-enroll-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: start;
}

.aba-enroll-hero-grid > * {
  min-width: 0;
}

.aba-enroll-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.aba-enroll-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.aba-enroll-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-up);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.aba-enroll-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--surface-sep);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.aba-enroll-stat {
  background: var(--bg-mid);
  padding: 26px 22px;
  text-align: center;
}

.aba-enroll-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.aba-enroll-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.1;
}

.aba-enroll-card {
  background: var(--bg-up);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.aba-enroll-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-mid);
}

.aba-enroll-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aba-enroll-card-body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-up);
}

.aba-enroll-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.aba-enroll-price {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background: var(--bg-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-hi);
  text-align: center;
}

.aba-enroll-card-body .btn-gold,
.aba-enroll-card-body .btn-outline-gold {
  width: 100%;
  justify-content: center;
}

.aba-enroll-content {
  padding-block: clamp(32px, 5vw, 40px) clamp(64px, 10vw, 96px);
}

.aba-enroll-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.aba-enroll-tab-btn {
  padding: 10px 22px;
  border-radius: var(--r-full);
  border: 1px solid var(--gold-border);
  background: var(--bg-up);
  color: var(--text-hi);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out, transform 0.2s ease-out;
}

@media (hover: hover) {
  .aba-enroll-tab-btn:hover {
    border-color: var(--gold-border-h);
    transform: translateY(-1px);
  }
}

.aba-enroll-tab-btn.active {
  background: var(--ink);
  color: var(--ink-on-accent);
  border-color: var(--ink);
}

.aba-enroll-panel {
  max-width: 820px;
}

.aba-enroll-overview {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.8;
}

.aba-enroll-overview h1,
.aba-enroll-overview h2,
.aba-enroll-overview h3,
.aba-enroll-overview h4 {
  margin-top: 1.4em;
  margin-bottom: 0.6em;
}

.aba-enroll-overview ul,
.aba-enroll-overview ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.aba-enroll-curriculum-head {
  margin-bottom: 24px;
}

.aba-enroll-curriculum-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.aba-enroll-chapters {
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-up);
}

.aba-enroll-chapter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--surface-sep);
  font-size: 0.95rem;
  color: var(--text-hi);
}

.aba-enroll-chapter:last-child {
  border-bottom: none;
}

.aba-enroll-chapter-index {
  color: var(--gold-dim);
  font-weight: 600;
  margin-right: 8px;
}

.aba-enroll-chapter-play {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--bg-mid);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  cursor: default;
}

.aba-enroll-certificate {
  display: flex;
  justify-content: center;
  padding: 24px 0 8px;
}

.aba-enroll-certificate img {
  max-width: min(100%, 640px);
  border-radius: var(--r-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-soft);
}

.aba-enroll-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: oklch(0.15 0.01 65 / 0.72);
  backdrop-filter: blur(4px);
}

.aba-enroll-overlay.is-open {
  display: flex;
}

.aba-enroll-modal {
  width: 100%;
  max-width: 480px;
  background: var(--bg-up);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 36px);
  box-shadow: var(--shadow-soft);
}

.aba-enroll-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.aba-enroll-modal-head h2 {
  font-size: 1.35rem;
  margin: 0;
}

.aba-enroll-modal-close {
  border: none;
  background: var(--bg-mid);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.aba-enroll-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

@media (max-width: 960px) {
  .aba-enroll-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .aba-enroll-sidebar {
    width: 100%;
  }

  .aba-enroll-card {
    width: 100%;
    max-width: min(520px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .aba-enroll-page {
    padding-top: 64px;
  }

  .aba-enroll-page .aba-container {
    padding-inline: clamp(18px, 4.5vw, 28px);
  }

  .aba-enroll-hero-copy h1 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    margin-bottom: 20px;
    overflow-wrap: anywhere;
  }

  .aba-enroll-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 8px;
    padding-bottom: 6px;
    margin-bottom: 28px;
  }

  .aba-enroll-tab-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 44px;
    padding-inline: 18px;
  }

  .aba-enroll-panel {
    max-width: none;
  }

  .aba-enroll-chapter {
    padding: 14px 16px;
    font-size: 0.92rem;
  }

  .aba-enroll-chapter-play {
    width: 44px;
    height: 44px;
  }

  .aba-enroll-modal-close {
    width: 44px;
    height: 44px;
  }

  .aba-enroll-overlay {
    padding: max(16px, env(safe-area-inset-top, 0px))
      max(16px, env(safe-area-inset-right, 0px))
      max(16px, env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
  }

  .aba-enroll-modal {
    max-height: min(92vh, 720px);
    overflow-y: auto;
  }
}

@media (max-width: 640px) {
  .aba-enroll-hero-grid {
    gap: 28px;
  }

  .aba-enroll-badges {
    margin-bottom: 22px;
  }

  .aba-enroll-stats {
    grid-template-columns: 1fr;
  }

  .aba-enroll-stat {
    padding: 20px 18px;
    text-align: left;
  }

  .aba-enroll-stat-label,
  .aba-enroll-stat-value {
    text-align: left;
  }

  .aba-enroll-price-row {
    grid-template-columns: 1fr;
  }

  .aba-enroll-card-body {
    padding: 28px 24px 32px;
  }

  .aba-enroll-card-body .btn-gold,
  .aba-enroll-card-body .btn-outline-gold {
    min-height: 48px;
    padding-block: 14px;
  }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .aba-enroll-hero-grid {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  }
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.aba-about { background: var(--bg-up); }

.aba-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.aba-about-inner > * {
  min-width: 0;
}

.aba-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--surface-sep);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 36px;
}

.aba-stat {
  background: var(--bg-up);
  padding: 34px 24px;
  text-align: center;
}

.aba-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.aba-stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  letter-spacing: 0.1em;
}

.aba-about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
}
.aba-about-photos img {
  border-radius: var(--r-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--gold-border);
}
.aba-about-photos img:first-child {
  grid-row: span 2;
  height: 100%;
}

.aba-stats-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ─────────────────────────────────────────────
   ABOUT PAGE (about.php)
───────────────────────────────────────────── */
.aba-about-page {
  background: var(--bg-deep);
  padding-top: 72px;
}

.aba-about-hero {
  padding-block: 56px 48px;
}

.aba-about-page .aba-about.aba-section {
  padding-top: 56px;
  padding-bottom: 96px;
}

.aba-about-quote {
  background: var(--bg-mid);
  border-top: 1px solid var(--surface-sep);
  border-bottom: 1px solid var(--surface-sep);
  padding: 28px 24px;
  text-align: center;
}

.aba-about-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--text-hi);
  line-height: 1.5;
  max-width: 52ch;
  margin: 0 auto;
}

.aba-milestones {
  background: var(--bg-up);
  padding-block: 72px;
  border-top: 1px solid var(--surface-sep);
}

.aba-milestones-head {
  text-align: center;
  margin-bottom: 48px;
}

.aba-milestones-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.aba-milestones-aside {
  flex: 0 0 120px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: right;
}

.aba-milestone-nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--bg-up);
  color: var(--text-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.aba-milestone-nav:hover {
  background: var(--ink);
  color: var(--ink-on-accent);
  border-color: var(--ink);
}

.aba-milestone-nav[hidden] {
  visibility: hidden;
  pointer-events: none;
}

.aba-timeline-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.aba-timeline {
  display: flex;
  gap: 20px;
  padding-top: 28px;
  width: max-content;
  scroll-behavior: smooth;
  position: relative;
}

.aba-timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-border);
  z-index: 0;
}

.aba-milestone-item {
  text-align: center;
  width: 190px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.24s ease-out;
}

.aba-milestone-item:hover {
  transform: translateY(-4px);
}

.aba-milestone-year {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
  margin-bottom: 8px;
}

.aba-milestone-dot {
  width: 14px;
  height: 14px;
  background: var(--bg-up);
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 12px;
}

.aba-milestone-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-hi);
  margin: 0 0 8px;
  line-height: 1.3;
}

.aba-milestone-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.aba-different {
  background: var(--bg-mid);
}

.aba-different-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.aba-different-card {
  background: var(--bg-up);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.24s ease-out, box-shadow 0.24s ease-out, border-color 0.24s;
}

.aba-different-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px oklch(0.15 0.01 65 / 0.08);
  border-color: var(--gold-border-h);
}

.aba-different-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 20px;
}

.aba-different-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text-hi);
  margin-bottom: 12px;
  line-height: 1.25;
}

.aba-different-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─────────────────────────────────────────────
   COMMUNITY PAGE (community.php)
───────────────────────────────────────────── */
.aba-community-page {
  background: var(--bg-deep);
  padding-top: 72px;
}

.aba-community-hero {
  padding-block: 56px 72px;
}

.aba-community-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.aba-community-hero-inner > * {
  min-width: 0;
}

.aba-community-hero-copy .section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.aba-community-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 28px;
}

.aba-community-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.aba-community-links a:nth-child(3) {
  grid-column: 1 / -1;
}

.aba-community-link-card {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--bg-up);
  transition: transform 0.24s ease-out, box-shadow 0.24s ease-out, border-color 0.24s;
}

.aba-community-link-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-border-h);
}

.aba-community-link-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.aba-community-banner {
  background: var(--bg-mid);
  padding: 0 0 72px;
}

.aba-community-banner-inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  max-width: 1320px;
  margin: 0 auto;
}

.aba-community-banner-inner img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 280px;
  object-fit: cover;
}

.aba-community-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(24px, 5vw, 56px);
  background: linear-gradient(
    90deg,
    oklch(0.15 0.01 65 / 0.55) 0%,
    oklch(0.15 0.01 65 / 0.82) 45%,
    oklch(0.15 0.01 65 / 0.88) 100%
  );
}

.aba-community-banner-text {
  max-width: 420px;
  color: var(--ink-on-accent);
}

.aba-community-banner-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink-on-accent);
}

.aba-community-banner-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: oklch(0.92 0.01 65);
  margin-bottom: 22px;
}

.aba-community-channels {
  background: var(--bg-deep);
  padding-bottom: 96px;
}

.aba-community-channels-head {
  text-align: center;
  margin-bottom: 48px;
}

.aba-community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.aba-channel-card {
  background: var(--bg-up);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform 0.24s ease-out, box-shadow 0.24s ease-out, border-color 0.24s;
}

.aba-channel-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px oklch(0.15 0.01 65 / 0.08);
  border-color: var(--gold-border-h);
}

.aba-channel-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: block;
}

.aba-channel-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-hi);
  margin-bottom: 10px;
}

.aba-channel-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────────
   CONTACT PAGE (contact.php)
───────────────────────────────────────────── */
.aba-contact-page {
  background: var(--bg-deep);
  padding-top: 72px;
}

.aba-contact-hero {
  padding-block: 48px 24px;
  text-align: center;
}

.aba-contact-hero .section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.aba-contact-faq {
  padding-block: 24px 56px;
}

.aba-contact-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.aba-faq-item {
  background: var(--bg-up);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.aba-faq-item .card-header {
  background: transparent;
  border: none;
  padding: 0;
}

.aba-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-hi);
  cursor: pointer;
  text-decoration: none !important;
}

.aba-faq-btn:hover { color: var(--gold); }
.aba-faq-btn:focus { outline: none; box-shadow: none; }

.aba-faq-btn .icon-plus,
.aba-faq-btn .icon-dash {
  color: var(--gold);
  flex-shrink: 0;
}

.aba-faq-btn.collapsed .icon-plus { display: inline; }
.aba-faq-btn.collapsed .icon-dash { display: none; }
.aba-faq-btn:not(.collapsed) .icon-plus { display: none; }
.aba-faq-btn:not(.collapsed) .icon-dash { display: inline; }

.aba-faq-answer {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--gold-mute);
  border-top: 1px solid var(--gold-border);
}

.aba-faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.aba-contact-form-section {
  background: var(--bg-mid);
  padding: 72px 0 96px;
}

.aba-contact-logo-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.aba-contact-logo-wrap img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold-border);
}

.aba-contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.aba-contact-info-card {
  background: var(--bg-up);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: var(--r-md);
  padding: 20px 18px;
  text-align: center;
}

.aba-contact-info-card h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.aba-contact-info-card p,
.aba-contact-info-card a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  word-break: break-word;
}

.aba-contact-info-card a:hover { color: var(--gold); }

.aba-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.aba-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   AUTH PAGES (login.php, register.php)
───────────────────────────────────────────── */
.aba-auth-page {
  background: var(--bg-deep);
  padding-top: 72px;
  min-height: 100vh;
}

.aba-auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 96px;
}

.aba-auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-up);
  border: 1px solid oklch(0.92 0.01 65);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow-soft);
}

.aba-auth-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-hi);
  text-align: center;
  margin-bottom: 8px;
}

.aba-auth-card .gold-rule-c {
  margin-bottom: 28px;
}

.aba-auth-lead {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.aba-auth-card .aba-field small {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.aba-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--r-md);
  margin-bottom: 20px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.aba-alert--danger {
  background: oklch(0.95 0.04 25);
  border: 1px solid oklch(0.85 0.08 25);
  color: oklch(0.45 0.12 25);
}

.aba-alert--success {
  background: oklch(0.96 0.03 145);
  border: 1px solid oklch(0.88 0.06 145);
  color: oklch(0.42 0.10 145);
}

.aba-alert i { flex-shrink: 0; margin-top: 2px; }

.aba-auth-submit {
  width: 100%;
  margin-top: 8px;
}

.aba-auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid oklch(0.92 0.01 65);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.aba-auth-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid oklch(0.92 0.01 65);
}

.aba-auth-cta .aba-btn-cta {
  flex: 1 1 calc(50% - 6px);
  justify-content: center;
  min-width: 0;
}

@media (max-width: 420px) {
  .aba-auth-cta {
    flex-direction: column;
  }
  .aba-auth-cta .aba-btn-cta {
    flex: 1 1 auto;
    width: 100%;
  }
}

.aba-auth-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.aba-auth-link:hover {
  color: var(--text-hi);
  text-decoration: underline;
}

.aba-auth-forgot {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
}

#errorText.aba-auth-inline-error {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: oklch(0.50 0.14 25);
  margin-bottom: 12px;
}

#errorText.aba-auth-inline-error.d-none { display: none !important; }

.aba-auth-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.aba-auth-status > i {
  display: block;
  flex-shrink: 0;
  margin: 0 0 20px;
  font-size: 3.25rem;
  line-height: 1;
}

.aba-auth-status--success > i {
  color: oklch(0.55 0.14 145);
}

.aba-auth-status--error > i {
  color: oklch(0.50 0.14 25);
}

.aba-auth-status h1 {
  margin-bottom: 8px;
}

.aba-auth-status > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.aba-auth-status .aba-auth-footer {
  margin-top: 28px;
  padding-top: 0;
  border-top: none;
}

/* ─────────────────────────────────────────────
   TRAINERS — MASTER SHOWCASE
───────────────────────────────────────────── */
.aba-trainers--showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    oklch(0.99 0.008 65) 0%,
    oklch(0.98 0.012 65) 45%,
    oklch(0.96 0.018 55) 100%
  );
}

.aba-trainers-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.aba-trainers-decor::before {
  content: '';
  position: absolute;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  top: -18%;
  right: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.74 0.09 45 / 0.14) 0%, transparent 68%);
}
.aba-trainers-decor::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(oklch(0.55 0.12 36 / 0.12) 1px, transparent 1px),
    radial-gradient(oklch(0.74 0.09 45 / 0.08) 1px, transparent 1px);
  background-size: 28px 28px, 44px 44px;
  background-position: 0 0, 14px 18px;
}

.aba-trainers--showcase .aba-container {
  position: relative;
  z-index: 1;
}

.aba-trainers-header {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}

.aba-trainers-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--gold-border);
  background: oklch(0.99 0.006 65 / 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.aba-trainers-badge-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.aba-trainers-badge-icon svg {
  width: 100%;
  height: 100%;
}

.aba-trainers-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-hi);
  margin: 0;
}

.aba-trainers-title-plain {
  display: block;
  font-weight: 600;
}

.aba-trainers-title-highlight {
  display: block;
  color: var(--gold-dim);
}

.aba-trainers-sub {
  margin: 14px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.aba-trainers-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
  padding: 0;
}

.aba-trainers-grid > li {
  min-width: 0;
}

.aba-trainer-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  min-height: 148px;
  padding: 16px 16px 40px;
  text-align: left;
  background: var(--surface-card);
  border: 1px solid oklch(0.74 0.09 45 / 0.22);
  border-radius: 24px;
  box-shadow: 0 8px 28px oklch(0.15 0.01 65 / 0.06);
  transition: transform 240ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 240ms cubic-bezier(0.25, 1, 0.5, 1);
}

.aba-trainer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px oklch(0.15 0.01 65 / 0.1);
}

.aba-trainer-card-media {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.aba-trainer-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  background: var(--bg-up);
  transition: border-color 0.22s;
}

.aba-trainer-card:hover .aba-trainer-img {
  border-color: var(--gold-border-h);
}

.aba-trainer-spec {
  position: absolute;
  right: -4px;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid oklch(0.74 0.09 45 / 0.35);
  color: var(--gold);
  box-shadow: 0 4px 12px oklch(0.15 0.01 65 / 0.08);
}
.aba-trainer-spec svg {
  width: 18px;
  height: 18px;
}

.aba-trainer-card-body {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.aba-trainer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-hi);
  margin: 0 0 6px;
  line-height: 1.2;
}

.aba-trainer-role {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.aba-trainer-exp {
  position: absolute;
  right: 14px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: oklch(0.96 0.02 65);
  border: 1px solid oklch(0.74 0.09 45 / 0.2);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
}

.aba-trainer-exp-icon {
  display: inline-flex;
  width: 12px;
  height: 12px;
  color: var(--gold);
}
.aba-trainer-exp-icon svg {
  width: 100%;
  height: 100%;
}

.aba-trainers-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
  padding: 28px 24px;
  border-radius: 24px;
  background: oklch(0.94 0.04 45);
  border: 1px solid oklch(0.74 0.09 45 / 0.25);
}

.aba-trainers-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.aba-trainers-stat-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: oklch(0.99 0.006 65 / 0.9);
  border: 1px solid oklch(0.74 0.09 45 / 0.28);
  color: var(--gold);
}
.aba-trainers-stat-icon svg {
  width: 20px;
  height: 20px;
}

.aba-trainers-stat-value {
  margin: 0 0 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.1;
}

.aba-trainers-stat-title {
  margin: 0 0 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-hi);
  line-height: 1.2;
}

.aba-trainers-stat-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .aba-trainer-card {
    transition: none;
  }
  .aba-trainer-card:hover {
    transform: none;
  }
}

/* ─────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────── */
.aba-gallery { background: var(--bg-deep); }

.aba-gallery.aba-parallax {
  background: var(--surface);
  overflow: visible;
  padding-top: 0;
  padding-bottom: 0;
}

.aba-gallery.aba-parallax .section-eyebrow {
  color: var(--gold);
}

.aba-gallery-strip {
  display: flex;
  gap: 10px;
  margin-top: 44px;
  overflow: hidden;
}
.aba-gallery-strip img {
  height: 300px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--gold-border);
  flex: 1;
  min-width: 0;
  transition: flex 0.4s ease-out, border-color 0.22s;
}
.aba-gallery-strip img:hover {
  flex: 1.6;
  border-color: var(--gold-border-h);
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.aba-testimonials { background: var(--bg-mid); }

.aba-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.aba-testimonial {
  background: var(--bg-up);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.22s;
}
.aba-testimonial:hover { border-color: var(--gold-border-h); }

.aba-t-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold-border-h);
  line-height: 0.8;
  user-select: none;
}

.aba-t-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.8rem;
}

.aba-t-text {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
}

.aba-t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.aba-t-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  background: var(--bg-deep);
  flex-shrink: 0;
}
.aba-t-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-hi);
}
.aba-t-course {
  font-size: 0.78rem;
  color: var(--gold-dim);
}

/* ─────────────────────────────────────────────
   VISION + MISSION
───────────────────────────────────────────── */
.aba-vm {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(242, 106, 61, 0.08), transparent 26%),
    linear-gradient(135deg, #fff8f5 0%, #fff3ee 100%);
  padding: 80px 0;
}

.aba-vm::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 106, 61, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 106, 61, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.aba-vm .aba-container {
  position: relative;
  max-width: min(1400px, 90%);
}

.aba-vm-head {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.aba-vm-eyebrow {
  justify-content: center;
  color: #f26a3d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.aba-vm-eyebrow::before,
.aba-vm-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: #f26a3d;
  flex-shrink: 0;
}

.aba-vm-heading {
  font-size: clamp(2.75rem, 5.6vw, 4rem);
  line-height: 1.1;
  color: #111;
}

.aba-vm-heading span { color: #f26a3d; }

.aba-vm-divider {
  width: 120px;
  height: 3px;
  background: #f26a3d;
  margin: 24px auto 22px;
  border-radius: 999px;
}

.aba-vm-intro {
  margin: 0 auto;
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

.aba-vm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.aba-vm-panel {
  position: relative;
  min-width: 0;
  padding: 40px;
  background: #fff;
  border: 1px solid rgba(242, 106, 61, 0.12);
  border-radius: 32px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    0 28px 70px rgba(242, 106, 61, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.aba-vm-panel--mission {
  background: linear-gradient(135deg, #fff 0%, #fff4ef 100%);
}

.aba-vm-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 106, 61, 0.24);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.06),
    0 36px 90px rgba(242, 106, 61, 0.11);
}

.aba-vm-icon {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff2ed;
  color: #f26a3d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.aba-vm-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(242, 106, 61, 0.42);
  border-radius: inherit;
}

.aba-vm-icon svg {
  width: 52px;
  height: 52px;
}

.aba-vm-kicker {
  margin: 0 0 10px;
  color: #f26a3d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.aba-vm-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.3vw, 2.625rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.aba-vm-accent {
  width: 100px;
  height: 4px;
  background: #f26a3d;
  border-radius: 999px;
  margin-bottom: 22px;
}

.aba-vm-text {
  margin: 0;
  font-size: 20px;
  color: #444;
  line-height: 1.9;
}

.aba-vm-image-wrap {
  position: relative;
  margin-top: 34px;
  border-radius: 24px;
}

.aba-vm-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 45%);
  pointer-events: none;
}

.aba-vm-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
}

.aba-vm-metrics {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  right: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.aba-vm-metrics span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  color: #222;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.aba-vm-statbar {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: -28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.aba-vm-stat {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #333;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.aba-vm-stat svg {
  width: 24px;
  height: 24px;
  color: #f26a3d;
}

.aba-vm-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.aba-vm-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  color: #444;
  font-size: 18px;
  line-height: 1.8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.aba-vm-list li + li {
  border-top: 1px solid rgba(242, 106, 61, 0.12);
}

.aba-vm-list li:hover {
  transform: translateX(6px);
  color: #222;
}

.aba-vm-list-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(242, 106, 61, 0.15);
  border-radius: 50%;
  background: #fff6f3;
  color: #f26a3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aba-vm-list-icon svg {
  width: 23px;
  height: 23px;
}

/* Shared compact form fields used outside the landing contact section. */
.aba-field { margin-bottom: 16px; }
.aba-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.aba-field input,
.aba-field select,
.aba-field textarea {
  width: 100%;
  background: var(--bg-up);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  padding: 11px 15px;
  color: var(--text-hi);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s;
  -webkit-appearance: none;
}
.aba-field input::placeholder,
.aba-field textarea::placeholder { color: var(--text-muted); }
.aba-field input:focus,
.aba-field select:focus,
.aba-field textarea:focus { border-color: var(--gold-dim); }
.aba-field select { cursor: pointer; background-image: none; }
.aba-field select option { background: var(--bg-up); color: var(--text-hi); }
.aba-field textarea { resize: vertical; min-height: 110px; }
.aba-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─────────────────────────────────────────────
   CONTACT (Visit Us)
───────────────────────────────────────────── */
.aba-contact {
  position: relative;
  overflow: hidden;
  background: #fcf9f7;
  padding: 48px 56px;
}

.aba-contact::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 34px;
  width: 180px;
  height: 180px;
  opacity: 0.45;
  background-image: radial-gradient(rgba(244, 122, 77, 0.32) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}

.aba-contact::after {
  content: '';
  position: absolute;
  top: -92px;
  right: -64px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(244, 122, 77, 0.18);
  box-shadow:
    inset 0 0 0 34px rgba(244, 122, 77, 0.04),
    inset 0 0 0 78px rgba(244, 122, 77, 0.035),
    inset 0 0 0 128px rgba(244, 122, 77, 0.03);
  pointer-events: none;
}

.aba-contact .aba-container {
  position: relative;
  max-width: min(1600px, 100%);
  padding-inline: 0;
}

.aba-contact-head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.aba-contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f47a4d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.aba-contact-badge-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.aba-contact-badge-icon svg {
  width: 100%;
  height: 100%;
}

.aba-contact-title {
  margin: 0;
  color: #111;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.aba-contact-title span { color: #f47a4d; }

.aba-contact-sub {
  max-width: 700px;
  margin: 18px auto 0;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
}

.aba-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.aba-contact-card {
  position: relative;
  min-width: 0;
  background: #fff;
  border: 1px solid #f2ddd3;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.aba-contact-card::before,
.aba-contact-card::after {
  content: '*';
  position: absolute;
  color: rgba(244, 122, 77, 0.28);
  font-size: 28px;
  line-height: 1;
  pointer-events: none;
}

.aba-contact-card::before {
  top: 30%;
  left: -18px;
}

.aba-contact-card::after {
  right: -14px;
  bottom: 28%;
}

.aba-contact-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.aba-contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fceee8;
  color: #f47a4d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aba-contact-card-icon svg {
  width: 28px;
  height: 28px;
}

.aba-contact-details-title,
.aba-form-title {
  margin: 0;
  color: #111;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.aba-contact-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid #f2ddd3;
}

.aba-contact-card-head + .aba-contact-row {
  border-top: none;
  padding-top: 0;
}

.aba-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fceee8;
  border: 1px solid rgba(244, 122, 77, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f47a4d;
  flex-shrink: 0;
}

.aba-contact-icon svg {
  width: 23px;
  height: 23px;
}

.aba-contact-text {
  display: grid;
  gap: 4px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.65;
}

.aba-contact-text strong {
  display: block;
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.aba-contact-text a {
  color: #6b7280;
  overflow-wrap: anywhere;
}

.aba-contact-text a:hover { color: #f47a4d; }

.aba-map {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f2ddd3;
  background: #fff8f5;
  margin-top: 18px;
}

.aba-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.aba-map-action {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  color: #111;
  font-size: 0.84rem;
  font-weight: 700;
}

.aba-map-action:hover {
  color: #f47a4d;
}

.aba-location-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #fff8f5;
}

.aba-location-benefit {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
}

.aba-location-benefit span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #f47a4d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aba-location-benefit svg {
  width: 20px;
  height: 20px;
}

.aba-location-benefit strong {
  color: #111;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.aba-location-benefit p {
  margin: 0;
  color: #6b7280;
  font-size: 0.76rem;
  line-height: 1.35;
}

.aba-contact .aba-field { margin-bottom: 18px; }

.aba-contact .aba-field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}

.aba-contact .aba-field input,
.aba-contact .aba-field select,
.aba-contact .aba-field textarea {
  width: 100%;
  min-height: 54px;
  background: #fcf9f7;
  border: 1px solid #f2ddd3;
  border-radius: 12px;
  padding: 14px 16px;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}

.aba-contact .aba-field input::placeholder,
.aba-contact .aba-field textarea::placeholder { color: #9ca3af; }

.aba-contact .aba-field input:focus,
.aba-contact .aba-field select:focus,
.aba-contact .aba-field textarea:focus {
  background: #fff;
  border-color: #f47a4d;
  box-shadow: 0 0 0 4px rgba(244, 122, 77, 0.12);
}

.aba-contact .aba-field select {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #f47a4d 50%),
    linear-gradient(135deg, #f47a4d 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.aba-contact .aba-field select option { background: #fff; color: #111; }

.aba-contact .aba-field textarea {
  min-height: 138px;
  resize: vertical;
}

.aba-contact .aba-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.aba-contact-submit {
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 12px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.16s ease;
}

.aba-contact-submit svg {
  width: 21px;
  height: 21px;
}

.aba-contact-submit:hover {
  background: #f47a4d;
  transform: translateY(-1px);
}

.aba-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 6px 24px oklch(0 0 0 / 0.35);
  animation: aba-toast-in 0.4s ease-out, aba-toast-out 3s ease forwards;
  z-index: 9000;
}
.aba-toast.success { background: oklch(0.55 0.14 145); color: #fff; }
.aba-toast.error   { background: oklch(0.55 0.18 25);  color: #fff; }
@keyframes aba-toast-in  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes aba-toast-out { 0%, 80% { opacity: 1; } 100% { opacity: 0; transform: translateY(16px); visibility: hidden; } }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.aba-footer {
  background: var(--ink);
  border-top: none;
  padding: 64px 0 28px;
  color: oklch(0.78 0.01 65);
}

.aba-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--surface-sep);
}

.aba-footer-brand-text {
  font-size: 0.875rem;
  color: oklch(0.72 0.01 65);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}

.aba-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.aba-footer-logo img {
  height: 72px;
  width: 72px;
  object-fit: cover;
  border-radius: 50%;
}
.aba-footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: oklch(0.94 0.01 65);
}

.aba-footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.aba-footer-col ul { list-style: none; }
.aba-footer-col li { margin-bottom: 10px; }
.aba-footer-col a {
  font-size: 0.875rem;
  color: oklch(0.72 0.01 65);
  transition: color 0.15s;
}
.aba-footer-col a:hover { color: var(--gold-light); }

.aba-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.8rem;
  color: oklch(0.62 0.01 65);
  flex-wrap: wrap;
  gap: 14px;
}

.aba-socials { display: flex; gap: 10px; }
.aba-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: border-color 0.15s, color 0.15s;
}
.aba-social:hover { border-color: var(--gold); color: var(--gold); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .aba-trainers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aba-trainers-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .aba-courses-grid  { grid-template-columns: repeat(2, 1fr); }
  .aba-footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }

  .aba-showcase-grid {
    grid-template-columns: 1fr;
  }
  .aba-featured-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aba-specialized-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aba-trust-band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .aba-trust-cta {
    grid-column: 1 / -1;
    max-width: 320px;
    margin-inline: auto;
    width: 100%;
  }

  .aba-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .aba-hero-stat:nth-child(2) {
    border-right: none;
  }
  .aba-hero-stat:nth-child(odd) {
    border-right: 1px solid oklch(0.74 0.09 45 / 0.2);
  }

  .aba-vm {
    padding: 60px 24px;
  }
  .aba-vm .aba-container {
    max-width: 100%;
  }
  .aba-vm-grid {
    grid-template-columns: 1fr;
  }
  .aba-vm-panel {
    min-height: auto;
  }

  .aba-contact {
    padding: 32px;
  }
  .aba-contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .aba-contact .aba-container {
    max-width: 100%;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .aba-featured-track {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .aba-featured-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  .aba-section    { padding-block: 64px; }
  .aba-section-sm { padding-block: 44px; }

  .aba-nav-tube-wrap { display: none; }
  .aba-hamburger  { display: flex; }
  .aba-nav-cta .aba-nav-auth,
  .aba-nav-cta .aba-dropdown { display: none; }
  .aba-nav-inner {
    gap: 10px;
    padding-block: 8px;
  }
  .aba-logo {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }
  .aba-logo img {
    height: 44px;
    width: 44px;
    flex-shrink: 0;
  }
  .aba-logo-text {
    display: block;
    font-size: clamp(0.88rem, 3.6vw, 1rem);
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: oklch(0.99 0.006 65);
  }
  .aba-hamburger {
    margin-inline: -6px -2px;
  }

  .aba-nav {
    --aba-nav-mobile-h: calc(44px + 16px);
  }

  .aba-mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--aba-nav-mobile-h);
    bottom: 0;
    z-index: 999;
    margin: 0;
    padding: 10px var(--aba-gutter) 0;
    border-top: none;
    background:
      linear-gradient(
        180deg,
        oklch(0.17 0.026 42) 0%,
        oklch(0.14 0.02 48) 55%,
        oklch(0.13 0.018 55) 100%
      );
    box-shadow: inset 0 1px 0 oklch(0.72 0.09 42 / 0.12);
  }

  .aba-mobile-nav.open {
    max-height: none;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .aba-mobile-nav {
    text-align: left;
  }

  .aba-mobile-courses-panel[open] > summary:not(.aba-active) {
    color: var(--gold-light);
    background: oklch(0.58 0.11 38 / 0.14);
    border-radius: var(--r-md) var(--r-md) 0 0;
    padding: 10px 12px;
    margin-inline: -4px;
    box-shadow: 0 0 0 1px oklch(0.58 0.06 42 / 0.22);
  }

  .aba-mobile-courses-panel[open] > summary:not(.aba-active) .aba-nav-icon {
    background: oklch(0.63 0.13 38 / 0.22);
    color: var(--gold);
  }

  .aba-mobile-courses {
    margin-inline: -4px;
    padding: 6px 10px 10px;
  }

  .aba-mobile-course-link + .aba-mobile-course-link {
    border-top: 1px solid oklch(0.58 0.04 42 / 0.12);
  }

  .aba-mobile-auth {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-top: 14px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: linear-gradient(
      180deg,
      oklch(0.14 0.02 48 / 0) 0%,
      oklch(0.14 0.02 48 / 0.92) 28%,
      oklch(0.13 0.018 55) 100%
    );
  }

  .aba-mobile-auth .btn-nav-login,
  .aba-mobile-auth .btn-nav-signup {
    font-size: 0.88rem;
    font-weight: 700;
    animation: none;
  }

  .aba-mobile-auth .btn-nav-login::after,
  .aba-mobile-auth .btn-nav-signup::after {
    animation: none;
    opacity: 0;
  }

  .aba-mobile-auth .btn-nav-login {
    background: oklch(0.30 0.032 42 / 0.78);
    color: oklch(0.98 0.015 55);
    border-color: oklch(0.84 0.12 42 / 0.9);
    box-shadow:
      0 0 0 1px oklch(0.72 0.11 40 / 0.4),
      0 4px 18px oklch(0.63 0.13 38 / 0.28);
  }

  .aba-mobile-auth .btn-nav-login:hover,
  .aba-mobile-auth .btn-nav-login:focus-visible {
    background: oklch(0.36 0.038 42 / 0.92);
    color: oklch(0.99 0.01 55);
    border-color: oklch(0.90 0.13 44);
    box-shadow:
      0 0 0 1px oklch(0.78 0.12 40 / 0.55),
      0 6px 22px oklch(0.63 0.13 38 / 0.38);
  }

  .aba-mobile-auth .btn-nav-signup {
    background: linear-gradient(
      165deg,
      oklch(0.82 0.14 42) 0%,
      oklch(0.72 0.15 38) 48%,
      oklch(0.64 0.15 36) 100%
    );
    color: oklch(0.99 0.01 55);
    border-color: oklch(0.88 0.12 42 / 0.7);
    box-shadow:
      0 0 0 1px oklch(0.80 0.12 40 / 0.55),
      0 6px 26px oklch(0.63 0.13 38 / 0.62),
      0 0 44px oklch(0.63 0.13 38 / 0.42);
  }

  .aba-mobile-auth .btn-nav-signup:hover,
  .aba-mobile-auth .btn-nav-signup:focus-visible {
    background: linear-gradient(
      165deg,
      oklch(0.88 0.13 44) 0%,
      oklch(0.78 0.14 40) 48%,
      oklch(0.68 0.14 38) 100%
    );
    box-shadow:
      0 0 0 1px oklch(0.86 0.12 42 / 0.65),
      0 8px 32px oklch(0.63 0.13 38 / 0.72),
      0 0 56px oklch(0.63 0.13 38 / 0.5);
  }

  .aba-mobile-account {
    position: sticky;
    bottom: 0;
    background: linear-gradient(
      180deg,
      oklch(0.14 0.02 48 / 0) 0%,
      oklch(0.14 0.02 48 / 0.92) 28%,
      oklch(0.13 0.018 55) 100%
    );
  }

  @media (max-width: 400px) {
    .aba-logo-text { display: none; }
    .aba-logo-text-short {
      display: block;
      font-size: 1rem;
    }
  }

  .aba-hero-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
    text-align: center;
    gap: 28px;
    padding: 8px 0 0;
  }

  .aba-hero-text {
    order: 1;
    min-height: 0;
  }

  .aba-hero-visual {
    order: 0;
    justify-content: flex-start;
    min-height: 0;
    overflow: hidden;
    width: 100%;
  }

  .aba-hero-stats {
    margin-top: clamp(20px, 2.5vw, 28px);
  }
  .aba-hero-h1 { max-width: none; margin-left: auto; margin-right: auto; }
  .aba-hero-divider { margin-left: auto; margin-right: auto; }
  .aba-hero-sub { margin-left: auto; margin-right: auto; }
  .aba-hero-actions { justify-content: center; }
  .aba-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .aba-hero-stat {
    padding: 22px 14px;
  }
  .aba-hero-stat-icon {
    width: 42px;
    height: 42px;
  }
  .aba-hero-stat-icon svg {
    width: 20px;
    height: 20px;
  }
  .aba-hero-stat-copy {
    font-size: 0.68rem;
  }
  .aba-hero-stat-copy strong {
    font-size: 1.35rem;
  }
  .aba-specialized-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .aba-specialized-card {
    flex: 0 0 min(78vw, 260px);
    scroll-snap-align: start;
  }
  .aba-trust-band-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px var(--aba-gutter);
  }
  .aba-trust-cta {
    grid-column: auto;
    max-width: 320px;
    margin-inline: auto;
    width: 100%;
  }
  .aba-hero-services {
    display: block;
    margin-top: 12px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
      90deg,
      oklch(0.18 0.01 65 / 0) 0%,
      oklch(0.18 0.01 65 / 1) 10%,
      oklch(0.18 0.01 65 / 1) 90%,
      oklch(0.18 0.01 65 / 0) 100%
    );
    mask-image: linear-gradient(
      90deg,
      oklch(0.18 0.01 65 / 0) 0%,
      oklch(0.18 0.01 65 / 1) 10%,
      oklch(0.18 0.01 65 / 1) 90%,
      oklch(0.18 0.01 65 / 0) 100%
    );
  }

  .aba-hero-services-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 48px;
    padding-block: 14px;
    animation: aba-hero-services-marquee 36s linear infinite;
    will-change: transform;
  }

  .aba-hero-services:hover .aba-hero-services-track,
  .aba-hero-services:focus-within .aba-hero-services-track {
    animation-play-state: paused;
  }

  .aba-hero-service {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-inline: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    color: oklch(0.96 0.012 55);
  }

  .aba-hero-service::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-inline: clamp(18px, 5vw, 28px);
    border-radius: 50%;
    background: oklch(0.72 0.14 40);
    opacity: 0.85;
    flex-shrink: 0;
  }

  .aba-hero-service-icon {
    display: none;
  }

  .aba-hero-service.aba-hero-service--clone {
    display: flex;
    flex-direction: row;
    align-items: center;
    pointer-events: none;
  }

  @keyframes aba-hero-services-marquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
  }

  @media (prefers-reduced-motion: reduce) {
    .aba-hero-services {
      -webkit-mask-image: none;
      mask-image: none;
    }

    .aba-hero-services-track {
      animation: none;
      width: 100%;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 0;
      padding: 12px 14px;
    }

    .aba-hero-service::after {
      display: none;
    }

    .aba-hero-service.aba-hero-service--clone {
      display: none;
    }

    .aba-hero-service {
      flex: 0 1 calc(33% - 12px);
      flex-direction: column;
      gap: 8px;
      font-size: 0.62rem;
      letter-spacing: 0.04em;
      text-transform: none;
      font-weight: 600;
    }

    .aba-hero-service-icon {
      display: block;
    }
  }
  .aba-hero-image {
    flex: none;
    min-height: clamp(280px, 72vw, 360px);
    max-height: none;
    overflow: hidden;
  }

  .aba-feature-carousel-stage {
    overflow: hidden;
  }

  .aba-feature-carousel-track {
    --fc-shift: 24%;
    --fc-tilt: 0deg;
  }

  .aba-feature-carousel-card {
    width: clamp(11.5rem, 68vw, 18rem);
    height: min(88%, 380px);
    aspect-ratio: 5 / 6;
  }

  .aba-feature-carousel-card[data-pos="-1"],
  .aba-feature-carousel-card[data-pos="1"] {
    --fc-scale: 0.78;
    --fc-opacity: 0.28;
  }

  .aba-showcase { padding-block: 56px 64px; }
  .aba-showcase-panel {
    padding-inline: clamp(20px, 5vw, 28px);
  }
  .aba-featured-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .aba-featured-card {
    flex: 0 0 min(72vw, 200px);
    scroll-snap-align: start;
  }

  .aba-courses-grid      { grid-template-columns: 1fr; }
  .aba-courses-header    { flex-direction: column; align-items: flex-start; }
  .aba-about-inner       { grid-template-columns: 1fr; gap: 44px; }
  .aba-stats-grid--3     { grid-template-columns: 1fr; }
  .aba-about-hero {
    padding-block: 40px 36px;
  }
  .aba-about-photos {
    grid-template-rows: minmax(200px, 1fr) minmax(200px, 1fr);
    min-height: 420px;
    max-width: min(520px, 100%);
    width: 100%;
    margin: 0 auto;
  }
  .aba-about-page,
  .aba-contact-page,
  .aba-community-page,
  .aba-courses-page {
    padding-top: 64px;
  }

  .aba-community-hero {
    padding-block: 44px 56px;
  }

  .aba-contact-hero {
    padding-block: 40px 20px;
  }

  .aba-contact-faq {
    padding-block: 20px 48px;
  }

  .aba-milestones-aside  { display: none; }
  .aba-different-grid    { grid-template-columns: 1fr; }
  .aba-community-hero-inner { grid-template-columns: 1fr; }
  .aba-community-grid    { grid-template-columns: 1fr; max-width: 360px; }
  .aba-community-banner-overlay {
    justify-content: center;
    background: linear-gradient(
      180deg,
      oklch(0.15 0.01 65 / 0.2) 0%,
      oklch(0.15 0.01 65 / 0.85) 70%
    );
  }
  .aba-community-banner-text { text-align: center; max-width: none; }
  .aba-contact-info-grid { grid-template-columns: 1fr; }
  .aba-trainers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .aba-trainer-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 0;
    padding: 20px 18px 44px;
  }
  .aba-trainer-card-body {
    padding-top: 0;
    width: 100%;
  }
  .aba-trainer-exp {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .aba-trainers-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
  }
  .aba-testimonials-grid { grid-template-columns: 1fr; }
  .aba-vm {
    padding: 40px 16px;
  }

  .aba-vm-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }

  .aba-vm-eyebrow::before,
  .aba-vm-eyebrow::after {
    width: 24px;
  }

  .aba-vm-heading {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .aba-vm-divider {
    width: 88px;
    margin: 18px auto 16px;
  }

  .aba-vm-intro {
    font-size: 1rem;
    line-height: 1.65;
  }

  .aba-vm-grid {
    gap: 24px;
    margin-top: 34px;
  }

  .aba-vm-panel {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .aba-vm-panel:hover {
    transform: none;
  }

  .aba-vm-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
  }

  .aba-vm-icon::before {
    inset: -6px;
  }

  .aba-vm-icon svg {
    width: 34px;
    height: 34px;
  }

  .aba-vm-title {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
    line-height: 1.16;
    margin-bottom: 14px;
  }

  .aba-vm-accent {
    width: 78px;
    height: 3px;
    margin-bottom: 18px;
  }

  .aba-vm-text {
    font-size: 1rem;
    line-height: 1.78;
  }

  .aba-vm-image-wrap {
    margin-top: 26px;
    padding-bottom: 68px;
  }

  .aba-vm-image-wrap img {
    height: 280px;
  }

  .aba-vm-metrics {
    grid-template-columns: 1fr;
    right: auto;
    max-width: 190px;
  }

  .aba-vm-metrics span {
    min-height: 36px;
    font-size: 0.74rem;
  }

  .aba-vm-statbar {
    left: 12px;
    right: 12px;
    bottom: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .aba-vm-stat {
    grid-template-columns: 24px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
    font-size: 0.82rem;
  }

  .aba-vm-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 0;
    font-size: 1rem;
    line-height: 1.65;
  }

  .aba-vm-list li:hover {
    transform: none;
  }

  .aba-vm-list-icon {
    width: 42px;
    height: 42px;
  }

  .aba-contact {
    padding: 20px;
  }

  .aba-contact::before {
    width: 120px;
    height: 120px;
    top: 16px;
    left: 10px;
  }

  .aba-contact::after {
    width: 220px;
    height: 220px;
    top: -86px;
    right: -96px;
  }

  .aba-contact-head {
    margin-bottom: 34px;
  }

  .aba-contact-badge {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .aba-contact-title {
    font-size: 48px;
  }

  .aba-contact-sub {
    font-size: 1rem;
    line-height: 1.65;
  }

  .aba-contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aba-contact-card {
    padding: 20px;
    border-radius: 24px;
  }

  .aba-contact-card::before,
  .aba-contact-card::after {
    display: none;
  }

  .aba-contact-card-head {
    gap: 14px;
    margin-bottom: 22px;
  }

  .aba-contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .aba-contact-details-title,
  .aba-form-title {
    font-size: 2rem;
  }

  .aba-contact-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
  }

  .aba-contact-icon {
    width: 42px;
    height: 42px;
  }

  .aba-map {
    height: 260px;
    border-radius: 18px;
  }

  .aba-location-benefits {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .aba-location-benefit {
    grid-template-columns: 38px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .aba-location-benefit p {
    grid-column: 2;
  }

  .aba-contact .aba-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .aba-contact .aba-field input,
  .aba-contact .aba-field select,
  .aba-contact .aba-field textarea {
    font-size: 0.95rem;
  }

  .aba-footer-top        { grid-template-columns: 1fr 1fr; gap: 28px; }
  .aba-footer-bottom     { flex-direction: column; text-align: center; }

  .aba-gallery-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .aba-gallery-strip img {
    height: 210px;
    width: 200px;
    flex: none;
    transition: none;
  }
}

@media (max-width: 480px) {
  .aba-stats-grid    { grid-template-columns: 1fr; }
  .aba-footer-top    { grid-template-columns: 1fr; }
}
