/* ═════════════════════════════════════════════════════════════════════════
   AIBP Academy — Platform shell
   Sticky header + footer + mobile drawer minden marketing/app oldalra
   (landing, dashboard, skill gallery, skill detail, 00-intro térkép).

   A lecke-oldalak NEM használják (deep-work mód).
   ═════════════════════════════════════════════════════════════════════════ */

/* Body padding-top kompenzálás a sticky header miatt */
body.has-shell { padding-top: 0; }

/* A shell komponensei SAJÁT box-modellel dolgoznak — nem függhetnek a host-oldal
   globális `* { box-sizing: border-box }` resetjétől (azt csak az app.css hozza,
   a signal.css / lecke-oldalak NEM). Enélkül a sidebar content-box-on
   width:var(--side-w) + padding ≈ 312px-re hízik, miközben a tartalom-offset csak
   --side-w (264px) — így a széles footer a sidebar alá csúszik (signal, radar). */
.academy-shell-header, .academy-shell-header *,
.academy-shell-sidebar, .academy-shell-sidebar *,
.academy-shell-footer, .academy-shell-footer *,
.ash-side-reopen { box-sizing: border-box; }

/* ─────────── HEADER ─────────── */
.academy-shell-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--shell-bg);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--shell-border);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

/* Overlay-dark mode: skill detail dark hero felett transparens header,
 * scroll után opaque (.is-scrolled osztály a shell.js-ből) */
.academy-shell-header.shell-mode-overlay-dark {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--dark-text, #F0E9DC);
}
.academy-shell-header.shell-mode-overlay-dark.is-scrolled {
  background: var(--shell-bg);
  border-bottom-color: var(--shell-border);
  color: var(--ink);
}
.academy-shell-header.shell-mode-overlay-dark .ash-brand,
.academy-shell-header.shell-mode-overlay-dark .ash-nav a,
.academy-shell-header.shell-mode-overlay-dark .ash-right a {
  color: var(--dark-text, #F0E9DC);
}
.academy-shell-header.shell-mode-overlay-dark.is-scrolled .ash-brand,
.academy-shell-header.shell-mode-overlay-dark.is-scrolled .ash-nav a,
.academy-shell-header.shell-mode-overlay-dark.is-scrolled .ash-right a {
  color: var(--ink);
}
.academy-shell-header.shell-mode-overlay-dark .ash-brand .academy {
  color: var(--tone-lila, #B591FF);
}
.academy-shell-header.shell-mode-overlay-dark.is-scrolled .ash-brand .academy {
  color: var(--accent);
}

.ash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.75rem;
  min-height: var(--shell-h);
}

/* Brand-mark — wordmark V1 (DM Mono "AIBP" + Caveat "Academy") */
.ash-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.ash-brand .aibp {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ash-brand .academy {
  font-family: var(--font-hand);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  transform: rotate(-2deg);
  transform-origin: left center;
  letter-spacing: 0.005em;
  position: relative;
  top: 2px;
  transition: color 0.15s;
}
.ash-brand:hover .academy { color: var(--accent-strong); }

/* Nav (center) */
.ash-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.ash-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.ash-nav a:hover { color: var(--ink); }
.ash-nav a.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

/* Right side (guest / auth) */
.ash-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ash-right a.ash-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.ash-right a.ash-link:hover { color: var(--ink); }

.ash-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border: 1.5px solid var(--ink);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 2px;
  transform: rotate(-0.5deg);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ash-cta:hover {
  transform: rotate(-0.5deg) translate(-1px, -1px);
  box-shadow: var(--shadow-pop);
}

/* Auth — avatar dropdown (logged-in) */
.ash-user {
  position: relative;
}
.ash-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.ash-user-btn:hover { border-color: var(--ink); }
.ash-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.ash-user-name {
  font-weight: 500;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ash-user-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 220px;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--hair-strong);
  border-radius: 6px;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.18);
  display: none;
  flex-direction: column;
}
.ash-user.is-open .ash-user-menu { display: flex; }
.ash-user-menu .meta {
  padding: 0.45rem 0.7rem 0.55rem;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--hair);
  word-break: break-all;
}
.ash-user-menu .item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.12s;
}
.ash-user-menu .item:hover { background: var(--paper-2); }

/* Mobile hamburger toggle */
.ash-mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hair-strong);
  background: rgba(255,255,255,0.5);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}
.ash-mobile-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.ash-mobile-toggle span::before,
.ash-mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}
.ash-mobile-toggle span::before { top: -5px; }
.ash-mobile-toggle span::after  { top: 5px; }

@media (max-width: 860px) {
  .ash-nav { display: none; }
  .ash-mobile-toggle { display: inline-flex; }
  body.shell-mobile-open .ash-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: var(--shell-h);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--shell-border);
    padding: 1rem 1.75rem 1.5rem;
    z-index: 80;
  }
  body.shell-mobile-open .ash-nav a {
    width: 100%;
    padding: 0.85rem 0;
    font-size: 12px;
    border-bottom: 1px dashed var(--hair);
  }
  body.shell-mobile-open .ash-nav a.is-active { border-bottom-color: var(--accent); }
  .ash-right .ash-link.hide-mobile { display: none; }
}

/* ─────────── SIDEBAR (app-mód: belépett user, app-oldal) ───────────
   Desktopon a bal oldali menü a fő navigáció, a felső header ilyenkor rejtve.
   Mobilon (≤860px) a sidebar tűnik el, és a sticky header + drawer navigál.
   Vizuál: jegyzetfüzet-margó — tinta-vonal jobb szélen, piros-lila margóvonal,
   marker-highlight az aktív elemen, Caveat kéz-jegyzetek. */
:root { --side-w: 264px; }

/* Oldalváltáskor a böngésző (ha támogatja) a sidebart mozdulatlanul tartja,
   a tartalmat cross-fade-eli — a bal sáv nem "villan újra" minden linknél. */
@view-transition { navigation: auto; }
.academy-shell-sidebar { view-transition-name: aibp-sidebar; }
body.sidebar-collapsed .academy-shell-sidebar { view-transition-name: none; }

.academy-shell-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--side-w);
  z-index: 95;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(to right, transparent 0, transparent 17px, rgba(120,63,243,0.35) 17px, rgba(120,63,243,0.35) 18.5px, transparent 18.5px),
    var(--paper, #FBFAF4);
  border-right: 1.5px solid var(--ink);
  box-shadow: 3px 0 0 rgba(0,0,0,0.05);
  padding: 1.5rem 1rem 1.2rem 1.9rem;
  overflow-y: auto;
}
.academy-shell-sidebar .ash-brand {
  margin: 0 0 1.9rem 0.2rem;
}
.academy-shell-sidebar .ash-brand .academy { font-size: 34px; }

/* Becsukó gomb (sidebar jobb felső sarka) + kinyitó fül (becsukott állapotban) */
.ash-side-collapse {
  position: absolute;
  top: 0.85rem;
  right: 0.6rem;
  width: 28px;
  height: 28px;
  border: 1px dashed var(--hair-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.12s, border-color 0.12s, transform 0.12s;
}
.ash-side-collapse:hover { color: var(--ink); border-color: var(--ink); transform: translateX(-1px); }

.ash-side-reopen {
  display: none;
  position: fixed;
  top: 10px;
  left: 1rem;
  z-index: 96;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hair-strong);
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.12s;
}
.ash-side-reopen:hover { border-color: var(--ink); }
.ash-side-reopen span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.ash-side-reopen span::before,
.ash-side-reopen span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}
.ash-side-reopen span::before { top: -5px; }
.ash-side-reopen span::after  { top: 5px; }
.ash-side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ash-side-item {
  display: flex;
  align-items: stretch;
  gap: 0.15rem;
  border-radius: 4px;
}
.ash-side-item .ash-side-link { flex: 1 1 auto; min-width: 0; }
.ash-side-link {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  padding: 0.5rem 0.65rem 0.55rem;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.12s;
}
.ash-side-link .lbl {
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
  transition: color 0.12s;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.ash-side-link .hand {
  font-family: var(--font-hand);
  font-size: 1.16rem;
  line-height: 1.1;
  color: var(--ink-muted);
  transition: color 0.12s;
}
.ash-side-link:hover { transform: translateX(2px); }
.ash-side-link:hover .hand { color: var(--accent-strong); }
/* Aktív: kézi marker-húzás a label mögött, mint a .hd-highlight */
.ash-side-item.is-active .ash-side-link .lbl {
  font-weight: 700;
}
.ash-side-item.is-active .ash-side-link .lbl::before {
  content: '';
  position: absolute;
  inset: -0.12em -0.35em -0.16em -0.3em;
  background: linear-gradient(104deg,
    rgba(240,188,78,0) 0.9%,
    rgba(240,188,78,0.55) 2.4%,
    rgba(240,188,78,0.45) 58%,
    rgba(240,188,78,0.55) 93%,
    rgba(240,188,78,0) 96%);
  transform: skewX(-4deg) rotate(-0.6deg);
  border-radius: 2px;
  z-index: -1;
}
.ash-side-item.is-active .ash-side-link .hand { color: var(--accent-strong); }

/* Tananyag-fa lenyitó gomb */
.ash-side-expand {
  flex: 0 0 30px;
  align-self: center;
  height: 30px;
  border: 1px dashed var(--hair-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.72rem;
  cursor: pointer;
  transition: transform 0.15s, color 0.12s, border-color 0.12s;
}
.ash-side-expand:hover { color: var(--ink); border-color: var(--ink); }
.ash-side-expand.is-open { transform: rotate(180deg); }

/* Tananyag-fa: modulok + leckék */
.ash-side-tree {
  margin: 0.15rem 0 0.5rem 0.4rem;
  padding-left: 0.55rem;
  border-left: 1.5px dashed var(--hair-strong);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ash-tree-module summary {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.32rem 0.4rem;
  border-radius: 4px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.ash-tree-module summary::-webkit-details-marker { display: none; }
.ash-tree-module summary:hover { background: rgba(255,255,255,0.9); }
.ash-tree-module .tm-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
  white-space: nowrap;
}
.ash-tree-module .tm-title {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}
.ash-tree-module .tm-caret {
  font-size: 0.6rem;
  color: var(--ink-faint);
  transition: transform 0.15s;
}
.ash-tree-module[open] .tm-caret { transform: rotate(180deg); }
.ash-tree-lessons {
  display: flex;
  flex-direction: column;
  padding: 0.05rem 0 0.3rem 0.5rem;
}
.ash-tree-lesson {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.24rem 0.4rem;
  border-radius: 3px;
  text-decoration: none;
}
.ash-tree-lesson .tl-id {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-faint);
  white-space: nowrap;
}
.ash-tree-lesson .tl-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-soft, #3a372f);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}
a.ash-tree-lesson:hover { background: rgba(255,255,255,0.95); }
a.ash-tree-lesson:hover .tl-title { color: var(--accent-strong); }
.ash-tree-lesson .tl-check {
  font-size: 0.7rem;
  color: var(--academy-green, #4A9B3D);
}
.ash-tree-lesson.is-current {
  background: rgba(240,188,78,0.35);
  border-radius: 3px;
}
.ash-tree-lesson.is-current .tl-title {
  font-weight: 700;
  color: var(--ink);
  white-space: normal;
}
.ash-tree-lesson .tl-here {
  font-family: var(--font-hand);
  font-size: 0.95rem;
  color: var(--accent-strong);
  transform: rotate(-2deg);
  white-space: nowrap;
}
.ash-tree-lesson.is-todo { opacity: 0.5; cursor: default; }
.ash-tree-lesson .tl-soon {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.ash-side-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--hair-dashed);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.ash-side-user {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.12s;
}
.ash-side-user:hover { background: rgba(255,255,255,0.75); }
.ash-side-user .nm {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ash-side-signout {
  align-self: flex-start;
  margin-left: 0.5rem;
  padding: 0;
  background: none;
  border: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  cursor: pointer;
  border-bottom: 1px dashed transparent;
  transition: color 0.12s, border-color 0.12s;
}
.ash-side-signout:hover { color: var(--ink); border-bottom-color: currentColor; }

@media (min-width: 861px) {
  body.has-sidebar:not(.sidebar-collapsed) { padding-left: var(--side-w); }
  body.has-sidebar:not(.sidebar-collapsed) .academy-shell-header { display: none; }
  /* Fixed pozíciójú oldal-elemek (pl. 00-intro .course-label) a sidebar mellé csússzanak */
  body.has-sidebar:not(.sidebar-collapsed) .course-label { left: calc(var(--side-w) + 1.75rem); }

  /* Kint lévő sidebar mellett a lecke-topbar felesleges második navigáció —
     a fa + az "itt" jelzés tájol, a lecke maga deep-work marad. */
  body.has-sidebar:not(.sidebar-collapsed) #lesson-nav .nav-topbar { display: none; }
  body.has-sidebar:not(.sidebar-collapsed):has(#lesson-nav) .lesson-hero { padding-top: 4.5rem; }

  /* Becsukott sidebar: a felső header / lecke-topbar visszaveszi a navigációt,
     a bal felső kinyitó fülnek hely kell. */
  body.sidebar-collapsed .academy-shell-sidebar { display: none; }
  body.has-sidebar.sidebar-collapsed .ash-side-reopen { display: inline-flex; }
  body.sidebar-collapsed .academy-shell-header .ash-row { padding-left: 4.2rem; }
  body.sidebar-collapsed #lesson-nav .nav-topbar { padding-left: 4.2rem; }
  body.sidebar-collapsed .course-label { left: 4.2rem; }

  /* Tartalom-fit: a margó-jegyzetek ±240px-t lógnak ki a hasábból; a sidebar
     264px-e mellett ez csak ~1560px felett fér el. Alatta a jegyzet a szöveg
     alá áll be (ugyanaz a minta, mint a leckék saját szűk-viewport szabálya). */
  @media (max-width: 1560px) {
    body.has-sidebar:not(.sidebar-collapsed) .margin-note,
    body.has-sidebar:not(.sidebar-collapsed) .margin-note.right,
    body.has-sidebar:not(.sidebar-collapsed) .margin-note.left,
    body.has-sidebar:not(.sidebar-collapsed) .margin-note.right.with-bracket,
    body.has-sidebar:not(.sidebar-collapsed) .margin-note.left.with-bracket {
      position: static;
      right: auto; left: auto; top: auto;
      display: block;
      max-width: none;
      margin: 0.5rem 0 1.4rem;
      padding-left: 1rem;
      border-left: 2px solid rgba(0,0,0,0.1);
      text-align: left;
      transform: rotate(-1deg);
    }
    body.has-sidebar:not(.sidebar-collapsed) .hd-bracket-left,
    body.has-sidebar:not(.sidebar-collapsed) .hd-bracket-right { display: none; }

    /* Az .article-wide 220px-es margó-oszlopai ugyanezen a küszöbön csukódnak
       össze (a 900px-es szabály sidebar-tudatos tükörképe) — különben a
       középső hasábot préselnék össze. */
    body.has-sidebar:not(.sidebar-collapsed) .article-wide {
      grid-template-columns: minmax(0, 1fr);
    }
    body.has-sidebar:not(.sidebar-collapsed) .article-wide .margin-col-left,
    body.has-sidebar:not(.sidebar-collapsed) .article-wide .margin-col-right { display: none; }
    body.has-sidebar:not(.sidebar-collapsed) .article-wide .article-body {
      grid-column: 1 / -1;
      min-width: 0;
      max-width: 720px;
      width: 100%;
      margin: 0 auto;
    }
  }
}
@media (max-width: 860px) {
  .academy-shell-sidebar { display: none; }
  .ash-side-reopen { display: none !important; }
}

/* ─────────── FOOTER ─────────── */
.academy-shell-footer {
  margin-top: 5rem;
  background: var(--paper-bg-dark);
  border-top: 1px solid var(--hair-strong);
  padding: 3.5rem 0 2.5rem;
}
.asf-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.75rem;
}
.asf-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 860px) {
  .asf-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .asf-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

.asf-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.asf-brand .asf-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18em;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
}
.asf-brand .asf-logo .aibp {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.asf-brand .asf-logo .academy {
  font-family: var(--font-hand);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  transform: rotate(-2.5deg);
  letter-spacing: 0.005em;
  margin-left: -2px;
}
.asf-brand .asf-tagline {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--ink-muted);
  max-width: 24ch;
  line-height: 1.3;
  margin: 0;
}

.asf-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 1rem;
}
.asf-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.asf-col li { margin: 0.5rem 0; }
.asf-col a {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}
.asf-col a:hover { color: var(--accent-strong); }
.asf-col a em { font-style: italic; }

.asf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--hair-dashed);
  flex-wrap: wrap;
  gap: 1rem;
}
.asf-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--ink-faint);
}
.asf-family-link {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--accent-strong);
  text-decoration: none;
}
.asf-family-link em { font-style: italic; }
