/* ---------------------------------------------------------------------------
   Eagle Line Fit — stylesheet
   Palette: deep indigo field, coral signal, cool paper ground.
   Type: Cambria for display, Segoe UI for running text. System stacks only.
   Skeleton idea: a ticker strip over a compact masthead, then stacked
   full-bleed "plates" that alternate ground colour, a matrix table as the
   opening element instead of a hero, and a coral-edged closing band.
   Hand-authored, single file, no framework, no preprocessor.
   --------------------------------------------------------------------------- */

:root {
  --elf-ink:        #16143a;
  --elf-indigo:     #241d5c;
  --elf-indigo-mid: #342c78;
  --elf-indigo-lt:  #4c44a0;
  --elf-coral:      #ef5f3c;
  --elf-coral-hot:  #ff7a5a;
  --elf-coral-deep: #c8451f;
  --elf-coral-wash: rgba(239, 95, 60, 0.10);
  --elf-ground:     #f5f4f9;
  --elf-ground-alt: #ebeaf3;
  --elf-sheet:      #ffffff;
  --elf-body:       #4a4869;
  --elf-body-soft:  #6f6d8c;
  --elf-hair:       #d9d7e6;
  --elf-hair-hard:  #bab7d0;

  --elf-display: Cambria, 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --elf-text: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --elf-mono: 'Consolas', 'SFMono-Regular', 'Liberation Mono', Menlo, monospace;

  --elf-shell: 1220px;
  --elf-gap: clamp(2.75rem, 6vw, 5.5rem);
  --elf-corner: 3px;
  --elf-lift-1: 0 1px 0 rgba(22, 20, 58, 0.06), 0 2px 6px rgba(22, 20, 58, 0.05);
  --elf-lift-2: 0 18px 46px -22px rgba(22, 20, 58, 0.42);
  --elf-swift: 180ms cubic-bezier(0.32, 0.72, 0.35, 1);
}

/* ---- ground rules ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.elf-doc {
  margin: 0;
  background: var(--elf-ground);
  color: var(--elf-body);
  font-family: var(--elf-text);
  font-size: 17px;
  line-height: 1.68;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--elf-indigo-mid); text-decoration: none; }
a:hover { color: var(--elf-coral-deep); }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; color: inherit; }
address { font-style: normal; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--elf-display);
  color: var(--elf-ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin: 0 0 0.55em;
}
h1 { font-size: clamp(2.05rem, 4.4vw, 3.05rem); }
h2 { font-size: clamp(1.55rem, 2.9vw, 2.15rem); }
h3 { font-size: 1.16rem; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--elf-ink); font-weight: 600; }

::selection { background: var(--elf-coral); color: #fff; }

:focus-visible {
  outline: 3px solid var(--elf-coral);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

.elf-jump {
  position: fixed;
  top: -120px;
  left: 12px;
  z-index: 200;
  background: var(--elf-coral);
  color: #fff;
  font-weight: 600;
  padding: 0.7em 1.2em;
  border-radius: var(--elf-corner);
  transition: top var(--elf-swift);
}
.elf-jump:focus { top: 12px; color: #fff; }

.elf-shell {
  width: 100%;
  max-width: var(--elf-shell);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.4rem);
}

/* ---- ticker strip ---- */
.elf-ticker {
  background: var(--elf-ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.elf-ticker__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  align-items: center;
  min-height: 38px;
}
.elf-ticker__item--fade { color: rgba(255, 255, 255, 0.46); }
.elf-ticker__link { color: var(--elf-coral-hot); margin-left: auto; font-weight: 600; }
.elf-ticker__link:hover { color: #fff; }

/* ---- masthead ---- */
.elf-mast {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(245, 244, 249, 0.94);
  backdrop-filter: saturate(150%) blur(9px);
  border-bottom: 1px solid var(--elf-hair);
}
.elf-mast__row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 74px;
}

.elf-sig { display: flex; align-items: center; gap: 0.75rem; color: var(--elf-ink); flex: none; }
.elf-sig__glyph {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 34px;
  height: 34px;
  padding: 6px 5px;
  background: var(--elf-indigo);
  border-radius: var(--elf-corner);
}
.elf-sig__bar { display: block; height: 3px; background: #fff; border-radius: 2px; }
.elf-sig__bar:nth-child(1) { width: 100%; }
.elf-sig__bar:nth-child(2) { width: 68%; background: var(--elf-coral); }
.elf-sig__bar:nth-child(3) { width: 40%; }
.elf-sig__type { display: flex; flex-direction: column; line-height: 1.2; }
.elf-sig__name {
  font-family: var(--elf-display);
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.elf-sig__sub {
  font-size: 0.7rem;
  color: var(--elf-body-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.elf-menu { margin-left: auto; display: flex; align-items: center; gap: 1rem; }
.elf-menu__list { display: flex; flex-wrap: nowrap; gap: 0.1rem; }
.elf-menu__cell a {
  display: block;
  white-space: nowrap;
  padding: 0.45em 0.45em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--elf-body);
  border-radius: var(--elf-corner);
  transition: background var(--elf-swift), color var(--elf-swift);
}
.elf-menu__cell a:hover { background: var(--elf-ground-alt); color: var(--elf-ink); }
.elf-menu__cell.is-here a {
  color: var(--elf-coral-deep);
  box-shadow: inset 0 -2px 0 var(--elf-coral);
}

.elf-burger {
  display: none;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  padding: 0.5em 0.85em;
  background: var(--elf-indigo);
  color: #fff;
  border: 0;
  border-radius: var(--elf-corner);
  cursor: pointer;
}
.elf-burger__label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.elf-burger__box { display: flex; flex-direction: column; gap: 4px; width: 18px; }
.elf-burger__box i { height: 2px; background: #fff; border-radius: 2px; transition: transform var(--elf-swift); }
.elf-burger.is-lit .elf-burger__box i:first-child { transform: translateY(3px) rotate(45deg); }
.elf-burger.is-lit .elf-burger__box i:last-child { transform: translateY(-3px) rotate(-45deg); }

/* ---- pills ---- */
.elf-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62em 1.25em;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.012em;
  border: 1.5px solid transparent;
  transition: transform var(--elf-swift), background var(--elf-swift), color var(--elf-swift);
  white-space: nowrap;
}
.elf-pill:hover { transform: translateY(-1px); }
.elf-pill--coral { background: var(--elf-coral); color: #fff; }
.elf-pill--coral:hover { background: var(--elf-coral-deep); color: #fff; }
.elf-pill--ink { background: var(--elf-indigo); color: #fff; }
.elf-pill--ink:hover { background: var(--elf-ink); color: #fff; }
.elf-pill--outline { border-color: currentColor; color: #fff; }
.elf-pill--outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.elf-pill--quiet { border-color: var(--elf-hair-hard); color: var(--elf-indigo-mid); background: var(--elf-sheet); }
.elf-pill--quiet:hover { border-color: var(--elf-coral); color: var(--elf-coral-deep); }
.elf-pill--lg { padding: 0.8em 1.7em; font-size: 0.95rem; }

/* ---- plates (section wrappers) ---- */
.elf-plate { padding-block: var(--elf-gap); }
.elf-plate--tight { padding-block: clamp(1.9rem, 4vw, 3.2rem); }
.elf-plate--alt { background: var(--elf-ground-alt); }
.elf-plate--sheet { background: var(--elf-sheet); }
.elf-plate--deep { background: var(--elf-indigo); color: rgba(255, 255, 255, 0.82); }
.elf-plate--deep h2, .elf-plate--deep h3, .elf-plate--deep h4 { color: #fff; }
.elf-plate--deep a { color: var(--elf-coral-hot); }

.elf-rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.9rem;
  font-family: var(--elf-mono);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--elf-coral-deep);
}
.elf-rule__tick { width: 22px; height: 3px; background: var(--elf-coral); flex: none; }
.elf-plate--deep .elf-rule { color: var(--elf-coral-hot); }

.elf-lede {
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  color: var(--elf-body);
  max-width: 60ch;
}
.elf-plate--deep .elf-lede { color: rgba(255, 255, 255, 0.8); }

.elf-heading { max-width: 74ch; margin-bottom: 2rem; }
.elf-heading--mid { margin-inline: auto; text-align: center; }

/* ---- opening intro slab (replaces a hero image) ---- */
.elf-open {
  background:
    linear-gradient(112deg, var(--elf-indigo) 0%, var(--elf-ink) 62%, #100e2c 100%);
  color: rgba(255, 255, 255, 0.8);
  padding-block: clamp(2.2rem, 5vw, 3.6rem);
  border-bottom: 4px solid var(--elf-coral);
}
.elf-open__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: end;
}
.elf-open h1 { color: #fff; margin-bottom: 0.5em; }
.elf-open p { color: rgba(255, 255, 255, 0.78); }
.elf-open__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.elf-open__stat { background: rgba(9, 8, 30, 0.55); padding: 1.05rem 1.15rem; }
.elf-open__fig {
  display: block;
  font-family: var(--elf-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--elf-coral-hot);
  line-height: 1;
}
.elf-open__cap {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- the session matrix ---- */
.elf-matrix { border: 1px solid var(--elf-hair-hard); background: var(--elf-sheet); }
.elf-matrix__cap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  align-items: baseline;
  padding: 1rem 1.3rem;
  background: var(--elf-ink);
  color: #fff;
}
.elf-matrix__cap strong { color: #fff; font-family: var(--elf-display); font-size: 1.12rem; }
.elf-matrix__cap span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.elf-matrix__cap span:last-child { margin-left: auto; }

.elf-matrix__rows { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.elf-matrix__cell {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.35rem 1.5rem;
  border-right: 1px solid var(--elf-hair);
  border-bottom: 1px solid var(--elf-hair);
  transition: background var(--elf-swift);
}
.elf-matrix__cell:hover { background: var(--elf-coral-wash); }
.elf-matrix__cell:nth-child(3n) { border-right: 0; }
.elf-matrix__cell:nth-last-child(-n+3) { border-bottom: 0; }
.elf-matrix__club {
  font-family: var(--elf-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--elf-ink);
  margin-bottom: 0.15rem;
}
.elf-matrix__meta {
  font-family: var(--elf-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--elf-coral-deep);
  margin-bottom: 0.7rem;
}
.elf-matrix__logged { font-size: 0.9rem; color: var(--elf-body); margin-bottom: 0.55rem; }
.elf-matrix__note { font-size: 0.87rem; color: var(--elf-body-soft); margin-bottom: 1rem; }
.elf-matrix__go {
  margin-top: auto;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--elf-indigo-mid);
}
.elf-matrix__cell:hover .elf-matrix__go { color: var(--elf-coral-deep); }

/* ---- generic column layouts ---- */
.elf-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}
.elf-split--lean { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
.elf-split--flip { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }

.elf-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.elf-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}
.elf-quad {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

/* ---- panels ---- */
.elf-panel {
  background: var(--elf-sheet);
  border: 1px solid var(--elf-hair);
  border-top: 3px solid var(--elf-indigo);
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--elf-corner);
  box-shadow: var(--elf-lift-1);
}
.elf-panel--coral { border-top-color: var(--elf-coral); }
.elf-panel--plain { border-top-width: 1px; border-top-color: var(--elf-hair); }
.elf-panel h3 { margin-bottom: 0.4em; }
.elf-panel p { font-size: 0.94rem; }
.elf-panel__num {
  display: inline-block;
  font-family: var(--elf-mono);
  font-size: 0.8rem;
  color: var(--elf-coral-deep);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

/* ---- ledger table look ---- */
.elf-ledger {
  background: var(--elf-sheet);
  border: 1px solid var(--elf-hair-hard);
  border-radius: var(--elf-corner);
  overflow: hidden;
}
.elf-ledger__head {
  padding: 0.85rem 1.2rem;
  background: var(--elf-ground-alt);
  border-bottom: 1px solid var(--elf-hair-hard);
  font-family: var(--elf-mono);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--elf-ink);
}
.elf-ledger__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.68rem 1.2rem;
  border-bottom: 1px dotted var(--elf-hair-hard);
  font-size: 0.92rem;
}
.elf-ledger__line:last-child { border-bottom: 0; }
.elf-ledger__line span:last-child { color: var(--elf-ink); font-weight: 600; text-align: right; }
.elf-ledger__foot {
  padding: 0.9rem 1.2rem;
  background: var(--elf-coral-wash);
  font-size: 0.86rem;
  color: var(--elf-body);
}

/* ---- step rail ---- */
.elf-rail { counter-reset: elfstep; display: grid; gap: 1.1rem; }
.elf-rail__item {
  position: relative;
  counter-increment: elfstep;
  padding: 1.3rem 1.4rem 1.4rem 4.2rem;
  background: var(--elf-sheet);
  border: 1px solid var(--elf-hair);
  border-radius: var(--elf-corner);
}
.elf-rail__item::before {
  content: counter(elfstep, decimal-leading-zero);
  position: absolute;
  left: 1.3rem;
  top: 1.25rem;
  font-family: var(--elf-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--elf-coral);
}
.elf-rail__item::after {
  content: "";
  position: absolute;
  left: 2.05rem;
  top: 3.1rem;
  bottom: 0.6rem;
  width: 1px;
  background: var(--elf-hair);
}
.elf-rail__item:last-child::after { display: none; }
.elf-rail__item h3 { margin-bottom: 0.3em; }
.elf-rail__item p { font-size: 0.94rem; }
.elf-rail__clock {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--elf-mono);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--elf-body-soft);
}

/* ---- checklists ---- */
.elf-marks { display: grid; gap: 0.55rem; }
.elf-marks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.94rem;
}
.elf-marks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--elf-coral);
  transform: rotate(45deg);
}
.elf-marks--pale li::before { background: var(--elf-coral-hot); }

/* ---- price cards ---- */
.elf-tier {
  display: flex;
  flex-direction: column;
  background: var(--elf-sheet);
  border: 1px solid var(--elf-hair);
  border-radius: var(--elf-corner);
  padding: 1.6rem 1.5rem 1.7rem;
}
.elf-tier--lead { border: 2px solid var(--elf-coral); box-shadow: var(--elf-lift-2); }
.elf-tier__flag {
  align-self: flex-start;
  margin-bottom: 0.8rem;
  padding: 0.28em 0.75em;
  background: var(--elf-coral);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
}
.elf-tier__cost {
  font-family: var(--elf-display);
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--elf-ink);
  line-height: 1;
}
.elf-tier__unit { font-size: 0.82rem; color: var(--elf-body-soft); margin: 0.35rem 0 1.05rem; }
.elf-tier .elf-marks { margin-bottom: 1.3rem; }
.elf-tier .elf-pill { margin-top: auto; }

/* ---- Q & A ---- */
.elf-qa { border-top: 1px solid var(--elf-hair); }
.elf-qa__item { border-bottom: 1px solid var(--elf-hair); padding: 1.35rem 0; }
.elf-qa__q {
  font-family: var(--elf-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--elf-ink);
  margin-bottom: 0.45em;
  display: flex;
  gap: 0.7rem;
}
.elf-qa__q::before {
  content: "?";
  flex: none;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  background: var(--elf-indigo);
  color: #fff;
  font-family: var(--elf-mono);
  font-size: 0.85rem;
  border-radius: 50%;
}
.elf-qa__a { font-size: 0.96rem; padding-left: 2.25rem; }

/* ---- quotes ---- */
.elf-quote {
  background: var(--elf-sheet);
  border: 1px solid var(--elf-hair);
  border-left: 4px solid var(--elf-coral);
  border-radius: var(--elf-corner);
  padding: 1.5rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.elf-quote__text { font-size: 0.97rem; }
.elf-quote__by { margin-top: auto; font-size: 0.85rem; color: var(--elf-body-soft); }
.elf-quote__by strong { display: block; font-family: var(--elf-display); font-size: 1rem; color: var(--elf-ink); }

/* ---- staff ---- */
.elf-face {
  background: var(--elf-sheet);
  border: 1px solid var(--elf-hair);
  border-radius: var(--elf-corner);
  padding: 1.5rem;
}
.elf-face__badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  background: var(--elf-indigo);
  color: #fff;
  font-family: var(--elf-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--elf-corner);
}
.elf-face__role {
  font-family: var(--elf-mono);
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--elf-coral-deep);
  margin-bottom: 0.6rem;
}
.elf-face p { font-size: 0.93rem; }

/* ---- forms ---- */
.elf-form { display: grid; gap: 1.05rem; }
.elf-form__pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.05rem; }
.elf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.elf-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--elf-ink);
}
.elf-field input,
.elf-field select,
.elf-field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--elf-ink);
  background: var(--elf-sheet);
  border: 1px solid var(--elf-hair-hard);
  border-radius: var(--elf-corner);
  padding: 0.7em 0.85em;
  width: 100%;
  transition: border-color var(--elf-swift), box-shadow var(--elf-swift);
}
.elf-field input:focus,
.elf-field select:focus,
.elf-field textarea:focus {
  outline: none;
  border-color: var(--elf-coral);
  box-shadow: 0 0 0 3px var(--elf-coral-wash);
}
.elf-field textarea { min-height: 130px; resize: vertical; }
.elf-form__fine { font-size: 0.83rem; color: var(--elf-body-soft); }

/* ---- blog list ---- */
.elf-post-list { display: grid; gap: 1.2rem; }
.elf-post {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 1.4rem;
  background: var(--elf-sheet);
  border: 1px solid var(--elf-hair);
  border-radius: var(--elf-corner);
  padding: 1.4rem 1.5rem;
  transition: border-color var(--elf-swift), transform var(--elf-swift);
}
.elf-post:hover { border-color: var(--elf-coral); transform: translateX(3px); }
.elf-post__when {
  font-family: var(--elf-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--elf-body-soft);
  border-right: 1px solid var(--elf-hair);
  padding-right: 1rem;
}
.elf-post__when b { display: block; color: var(--elf-coral-deep); font-size: 0.9rem; }
.elf-post h3 { margin-bottom: 0.35em; }
.elf-post p { font-size: 0.93rem; margin-bottom: 0.7em; }
.elf-post__more { font-size: 0.83rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--elf-indigo-mid); }

/* ---- article body ---- */
.elf-article { max-width: 74ch; }
.elf-article h2 { margin-top: 1.9em; font-size: clamp(1.35rem, 2.4vw, 1.72rem); }
.elf-article h3 { margin-top: 1.5em; }
.elf-article p { font-size: 1.02rem; }
.elf-article ul { margin: 0 0 1.15em; display: grid; gap: 0.5rem; }
.elf-article ul li { position: relative; padding-left: 1.35rem; }
.elf-article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  background: var(--elf-coral);
  border-radius: 50%;
}
.elf-article__stamp {
  font-family: var(--elf-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--elf-body-soft);
  margin-bottom: 1.2rem;
}
.elf-callout {
  margin: 1.7em 0;
  padding: 1.2rem 1.35rem;
  background: var(--elf-ground-alt);
  border-left: 4px solid var(--elf-indigo);
  border-radius: var(--elf-corner);
  font-size: 0.96rem;
}
.elf-callout strong { display: block; margin-bottom: 0.3em; font-family: var(--elf-display); }

/* ---- data table ---- */
.elf-table-wrap { overflow-x: auto; border: 1px solid var(--elf-hair-hard); border-radius: var(--elf-corner); background: var(--elf-sheet); }
.elf-table { min-width: 520px; font-size: 0.92rem; }
.elf-table th, .elf-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--elf-hair); }
.elf-table thead th {
  background: var(--elf-ink);
  color: #fff;
  font-family: var(--elf-mono);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}
.elf-table tbody tr:last-child th, .elf-table tbody tr:last-child td { border-bottom: 0; }
.elf-table tbody tr:nth-child(even) { background: rgba(235, 234, 243, 0.5); }
.elf-table th[scope="row"] { color: var(--elf-ink); font-weight: 600; }

/* ---- crumb ---- */
.elf-crumb {
  font-family: var(--elf-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--elf-body-soft);
  margin-bottom: 0.8rem;
}
.elf-crumb a { color: var(--elf-indigo-mid); }

/* ---- closing band ---- */
.elf-band {
  background: linear-gradient(96deg, var(--elf-indigo) 0%, var(--elf-ink) 78%);
  color: rgba(255, 255, 255, 0.82);
  border-top: 4px solid var(--elf-coral);
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
}
.elf-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: center;
}
.elf-band__head { color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.95rem); margin-bottom: 0.4em; }
.elf-band__sub { color: rgba(255, 255, 255, 0.72); font-size: 0.98rem; max-width: 56ch; }
.elf-band__acts { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: flex-end; }

/* ---- footer ---- */
.elf-base { background: #100e2c; color: rgba(255, 255, 255, 0.62); font-size: 0.92rem; }
.elf-base__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
}
.elf-base h3 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-family: var(--elf-text);
  margin-bottom: 1rem;
}
.elf-base__mark {
  display: block;
  font-family: var(--elf-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}
.elf-base a { color: rgba(255, 255, 255, 0.72); }
.elf-base a:hover { color: var(--elf-coral-hot); }
.elf-base__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.1rem; }
.elf-base__tags li {
  padding: 0.3em 0.7em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.66);
}
.elf-base__list { display: grid; gap: 0.5rem; }
.elf-base__contact { margin: 0.7rem 0 1rem; }
.elf-base__hours { font-size: 0.83rem; }
.elf-base__hours caption {
  text-align: left;
  padding-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.elf-base__hours th { font-weight: 400; text-align: left; padding: 0.2rem 0; color: rgba(255, 255, 255, 0.55); border: 0; }
.elf-base__hours td { text-align: right; padding: 0.2rem 0; color: rgba(255, 255, 255, 0.78); border: 0; }
.elf-base__strip { border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem; }
.elf-base__strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  justify-content: space-between;
  padding-block: 1.1rem;
}
.elf-base__strip p { margin: 0; color: rgba(255, 255, 255, 0.45); }

/* ---- reveal ---- */
.elf-rise { opacity: 0; transform: translateY(16px); transition: opacity 520ms ease, transform 520ms ease; }
.elf-rise.is-shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .elf-rise { opacity: 1; transform: none; }
}

/* ---- utility ---- */
.elf-mid { text-align: center; }
.elf-stack > * + * { margin-top: 1.1rem; }
.elf-note { font-size: 0.86rem; color: var(--elf-body-soft); }
.elf-spacer { height: 1.4rem; }

/* =========================== responsive =========================== */
@media (max-width: 1280px) {
  .elf-sig__sub { display: none; }
  .elf-menu__cell a { font-size: 0.78rem; padding-inline: 0.4em; }
  .elf-menu__tail .elf-pill { padding: 0.55em 1rem; font-size: 0.8rem; }
}

@media (max-width: 1080px) {
  .elf-base__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1160px) {
  .elf-burger { display: inline-flex; }
  .elf-menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: rgba(16, 14, 44, 0.97);
    padding: 2rem 2rem 3rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--elf-swift), transform var(--elf-swift), visibility var(--elf-swift);
  }
  .elf-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .elf-menu__list { flex-direction: column; align-items: center; gap: 0.35rem; }
  .elf-menu__cell a { color: rgba(255, 255, 255, 0.86); font-size: 1.12rem; padding: 0.5em 1em; }
  .elf-menu__cell a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
  .elf-menu__cell.is-here a { color: var(--elf-coral-hot); box-shadow: none; }

  .elf-open__grid { grid-template-columns: minmax(0, 1fr); }
  .elf-matrix__rows { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elf-matrix__cell:nth-child(3n) { border-right: 1px solid var(--elf-hair); }
  .elf-matrix__cell:nth-child(2n) { border-right: 0; }
  .elf-matrix__cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--elf-hair); }
  .elf-matrix__cell:nth-last-child(-n+2) { border-bottom: 0; }

  .elf-split, .elf-split--lean, .elf-split--flip { grid-template-columns: minmax(0, 1fr); }
  .elf-trio { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elf-quad { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elf-band__grid { grid-template-columns: minmax(0, 1fr); }
  .elf-band__acts { justify-content: flex-start; }
}

@media (max-width: 680px) {
  body.elf-doc { font-size: 16px; }
  .elf-ticker__row { font-size: 0.7rem; }
  .elf-ticker__item--fade { display: none; }
  .elf-sig__sub { display: none; }
  .elf-matrix__rows { grid-template-columns: minmax(0, 1fr); }
  .elf-matrix__cell { border-right: 0 !important; border-bottom: 1px solid var(--elf-hair) !important; }
  .elf-matrix__cell:last-child { border-bottom: 0 !important; }
  .elf-matrix__cap span:last-child { margin-left: 0; }
  .elf-open__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elf-trio, .elf-duo, .elf-quad { grid-template-columns: minmax(0, 1fr); }
  .elf-form__pair { grid-template-columns: minmax(0, 1fr); }
  .elf-post { grid-template-columns: minmax(0, 1fr); gap: 0.7rem; }
  .elf-post__when { border-right: 0; border-bottom: 1px solid var(--elf-hair); padding: 0 0 0.6rem; display: flex; gap: 0.5rem; }
  .elf-post__when b { display: inline; }
  .elf-base__cols { grid-template-columns: minmax(0, 1fr); }
  .elf-rail__item { padding-left: 3.6rem; }
  .elf-qa__a { padding-left: 0; }
}

@media print {
  .elf-ticker, .elf-mast, .elf-band, .elf-base__strip, .elf-jump { display: none; }
  body.elf-doc { background: #fff; font-size: 12pt; }
}
