/* ================================================================
   ΙΣΟΖΥΓΙΟ / ISOZYGIO — infomobananeosi.world
   Warm-paper handbook / almanac
   palette: #41562c laurel · #d9a039 saffron · #faf8f1 chalk
   fonts: Alegreya (display) · Source Sans 3 (body + Greek labels)
          IBM Plex Mono (numerals and Latin codes only — no Greek subset)

   Layer 1  tokens + reset + shared system (used by every page)
   Layer 2  .hb-*  chrome (utility bar, masthead, burger nav)
   Layer 3  .hb-*  handbook homepage sections
   ================================================================ */

/* ================================================================
   LAYER 1 — TOKENS
   ================================================================ */
:root {
  --laurel:       #41562c;
  --laurel-deep:  #2c3b1d;
  --laurel-mid:   #5b7440;
  --laurel-wash:  #eef1e5;
  --saffron:      #d9a039;
  --saffron-ink:  #8f6018;  /* AA on chalk AND on --laurel-wash (4.76:1) */
  --saffron-lift: #e8bd66;  /* saffron tint for micro-labels on --laurel (4.6:1) */
  --saffron-wash: #fdf3e0;
  --chalk:        #faf8f1;
  --chalk-2:      #ffffff;
  --ink:          #23261f;
  --ink-soft:     #4e5348;
  --ink-mute:     #838a79;
  --line:         #e3e0d3;
  --line-2:       #d3cfbe;
  --grid:         rgba(65,86,44,0.10);

  --on-dark:      rgba(255,255,255,0.74);
  --on-dark-soft: rgba(255,255,255,0.56);
  --on-dark-line: rgba(255,255,255,0.14);

  --ff-display: "Alegreya", "Palatino Linotype", Georgia, serif;
  --ff-body:    "Source Sans 3", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --ff-mono:    "IBM Plex Mono", "Source Sans 3", ui-monospace, monospace;
  /* IBM Plex Mono ships no Greek subset on Google Fonts, so --ff-mono is
     reserved for numerals and Latin codes; Greek labels use --ff-label. */
  --ff-label:   "Source Sans 3", system-ui, -apple-system, sans-serif;

  --pad:    clamp(1rem, 4vw, 2.75rem);
  --max-w:  1180px;
  --r-sm:   6px;
  --r:      10px;
  --r-lg:   10px;
  --r-pill: 999px;

  --sh:    0 1px 2px rgba(44,59,29,0.05), 0 3px 10px rgba(44,59,29,0.05);
  --sh-lg: 0 2px 6px rgba(44,59,29,0.07), 0 14px 34px rgba(44,59,29,0.10);

  --util-h: 2.3rem;
  --mast-h: 3.6rem;

  /* focus ring colour, re-pointed on dark surfaces further down */
  --focus-ring: var(--saffron-ink);
}

/* ================================================================
   LAYER 1 — RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ink);
  background: var(--chalk);
  overflow-x: hidden;
  font-variant-ligatures: none;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.18;
  letter-spacing: -0.008em;
  font-weight: 700;
  color: var(--laurel-deep);
  text-wrap: balance;
}

a { color: var(--saffron-ink); text-decoration: none; }
a:hover { color: var(--laurel); }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }
table { border-collapse: collapse; }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 2px;
}
/* --saffron-ink is only 1.6:1 on laurel and 2.4:1 on laurel-deep, so every
   dark surface re-points the ring at the brighter saffron (5.2:1). */
.hb-util,
.hb-sec-dark,
.hb-promise,
.hb-band,
.cookie-bar,
.footer {
  --focus-ring: var(--saffron);
}

/* --- Shell ------------------------------------------------------ */
.shell {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.shell-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* --- Skip link -------------------------------------------------- */
.skip {
  position: absolute; top: -120px; left: 1rem; z-index: 9999;
  padding: 0.55rem 1rem;
  background: var(--saffron); color: var(--laurel-deep);
  font-weight: 700; border-radius: var(--r-sm);
  transition: top 0.15s;
}
.skip:focus { top: 0.5rem; color: var(--laurel-deep); }
/* the skip link landed under the sticky utility bar + masthead */
main[id] { scroll-margin-top: calc(var(--util-h) + var(--mast-h)); }

/* --- Bilingual toggle ---------------------------------------------
   The two "hide the other language" rules are prefixed with `html` on
   purpose. As a bare class, `.lang-en` scored (0,1,0) — exactly the same
   as a component rule like `.info-label { display: block }`, which then
   won on source order and printed BOTH languages side by side (it did:
   contact.html read "Τηλέφωνο Telephone" in Greek mode). The `html`
   prefix lifts these to (0,1,1)/(0,2,1) so no single-class component
   rule can outrank them, while every `html[lang="en"]` rule below still
   outranks these. Never lower this specificity. ------------------- */
html .lang-en { display: none; }
html[lang="en"] .lang-en { display: inline; }
html[lang="en"] .lang-el { display: none; }
html .lang-en.block { display: none; }
html[lang="en"] .lang-en.block { display: block; }
html .lang-el.block { display: block; }
html[lang="en"] .lang-el.block { display: none; }

/* ================================================================
   LAYER 2 — UTILITY BAR
   ================================================================ */
.hb-util {
  background: var(--laurel-deep);
  position: sticky; top: 0; z-index: 300;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hb-util-in {
  display: flex; align-items: center; gap: 0.7rem;
  min-height: var(--util-h);
}
.hb-util-brand {
  display: inline-flex; align-items: center; gap: 0.42rem;
  color: #fff; text-decoration: none;
  font-family: var(--ff-display);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.01em;
  flex-shrink: 0;
}
.hb-util-brand:hover { color: var(--saffron); }
.hb-mark { width: 17px; height: 17px; flex-shrink: 0; }

.hb-util-sep {
  width: 1px; height: 1.1rem;
  background: rgba(255,255,255,0.16);
  flex-shrink: 0;
}
.hb-util-note {
  font-size: 0.72rem;
  color: var(--on-dark-soft);
  letter-spacing: 0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hb-util-spacer { flex: 1 1 auto; min-width: 0; }

.hb-langbtn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  min-height: 1.9rem;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.86);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap; flex-shrink: 0;
}
.hb-langbtn svg { width: 12px; height: 12px; flex-shrink: 0; }
.hb-langbtn:hover { border-color: var(--saffron); background: rgba(217,160,57,0.16); color: #fff; }

/* ================================================================
   LAYER 2 — MASTHEAD + BURGER NAV
   ================================================================ */
.hb-mast {
  background: var(--chalk-2);
  border-bottom: 1px solid var(--line-2);
  position: sticky; top: var(--util-h); z-index: 290;
  box-shadow: 0 1px 0 rgba(44,59,29,0.03);
}
.hb-mast-in {
  display: flex; align-items: center; gap: 0.75rem;
  min-height: var(--mast-h);
}

.hb-wordmark {
  display: flex; flex-direction: column; gap: 0.05rem;
  text-decoration: none; flex-shrink: 0; margin-right: auto;
  padding: 0.3rem 0;
}
.hb-wordmark-name {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  font-weight: 700; color: var(--laurel-deep);
  line-height: 1.1; letter-spacing: -0.01em;
}
.hb-wordmark-sub {
  font-family: var(--ff-mono);
  font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--laurel-mid);
}

.hb-nav-list {
  display: flex; align-items: center; gap: 0.1rem;
}
.hb-nav-link {
  display: inline-flex; align-items: center;
  padding: 0.6rem 0.7rem;
  min-height: 2.6rem;
  font-size: 0.905rem; font-weight: 600;
  color: var(--ink-soft); text-decoration: none;
  border-radius: var(--r-sm);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.hb-nav-link:hover { color: var(--laurel-deep); background: var(--laurel-wash); }
.hb-nav-link.is-active {
  color: var(--laurel-deep);
  border-bottom-color: var(--saffron);
}

.hb-nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1rem;
  min-height: 2.6rem;
  background: var(--laurel); color: #fff;
  font-size: 0.88rem; font-weight: 700;
  border-radius: var(--r-pill); text-decoration: none;
  transition: background 0.16s;
  white-space: nowrap; flex-shrink: 0;
}
.hb-nav-cta:hover { background: var(--laurel-deep); color: #fff; }

.hb-burger {
  display: none;
  width: 2.85rem; height: 2.85rem;
  flex-shrink: 0;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--chalk);
  color: var(--laurel-deep);
}
.hb-burger-bars { display: block; width: 20px; height: 14px; position: relative; }
.hb-burger-bars::before,
.hb-burger-bars::after,
.hb-burger-bars i {
  content: ""; position: absolute; left: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.hb-burger-bars::before { top: 0; }
.hb-burger-bars i { top: 6px; }
.hb-burger-bars::after { bottom: 0; }
.hb-mast.is-open .hb-burger-bars::before { transform: translateY(6px) rotate(45deg); }
.hb-mast.is-open .hb-burger-bars i { opacity: 0; }
.hb-mast.is-open .hb-burger-bars::after { transform: translateY(-6px) rotate(-45deg); }

/* --- Mobile drawer --------------------------------------------- */
@media (max-width: 900px) {
  .hb-burger { display: inline-flex; }
  .hb-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--chalk-2);
    border-bottom: 1px solid var(--line-2);
    box-shadow: var(--sh-lg);
    max-height: calc(100vh - var(--util-h) - var(--mast-h));
    overflow-y: auto;
  }
  .hb-mast { position: sticky; }
  .hb-mast-in { position: relative; }
  .hb-mast.is-open .hb-nav { display: block; }
  .hb-nav-list {
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.5rem var(--pad) 1rem;
  }
  .hb-nav-link {
    min-height: 3rem;
    padding: 0.7rem 0.4rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .hb-nav-link:hover { background: transparent; }
  .hb-nav-link.is-active { border-bottom-color: var(--line); color: var(--laurel); }
  .hb-nav-cta {
    margin: 0.85rem 0 0.2rem;
    justify-content: center; min-height: 3rem;
  }
}

/* ================================================================
   LAYER 1 — DISCLAIMER STRIP (every page)
   ================================================================ */
.hb-strip {
  background: var(--saffron-wash);
  border-top: 2px solid var(--saffron);
  border-bottom: 1px solid var(--line-2);
  padding: 1.15rem 0;
}
.hb-strip-in {
  display: flex; align-items: flex-start; gap: 0.9rem;
}
.hb-strip-badge {
  flex-shrink: 0;
  font-family: var(--ff-label);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--saffron-ink);
  border: 1.5px solid var(--saffron);
  border-radius: var(--r-sm);
  padding: 0.2rem 0.42rem;
  margin-top: 0.15rem;
}
.hb-strip-text {
  font-size: 0.845rem; line-height: 1.6; color: var(--ink-soft);
  max-width: 84ch;
}
.hb-strip-text strong { color: var(--ink); }

/* ================================================================
   LAYER 1 — INNER PAGE HEADERS + PROSE
   ================================================================ */
.inner-hero {
  background: var(--laurel);
  padding: clamp(2.2rem, 6vw, 4.2rem) 0;
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.inner-hero > * { position: relative; z-index: 1; }

.inner-label {
  font-family: var(--ff-label);
  font-size: 0.63rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.6rem;
}
.inner-hero h1 {
  font-size: clamp(1.7rem, 4.4vw, 2.85rem);
  color: #fff; max-width: 26ch;
}
.inner-hero p {
  font-size: 1rem; color: var(--on-dark);
  max-width: 58ch; margin-top: 0.75rem;
}
.inner-hero .inner-updated {
  font-family: var(--ff-label);
  font-size: 0.68rem; color: rgba(255,255,255,0.5);
  margin-top: 0.9rem; letter-spacing: 0.04em;
}

.inner-body { padding: clamp(2.2rem, 6vw, 4.2rem) 0; }

/* --- Prose ------------------------------------------------------ */
.prose { max-width: 70ch; }
.prose > h2 {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  margin-top: 2.6rem; margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}
.prose > h2:first-child { margin-top: 0; }
.prose > h3 {
  font-size: 1.1rem; margin-top: 1.9rem; margin-bottom: 0.45rem;
  color: var(--laurel);
}
.prose p { margin-bottom: 1.15rem; color: var(--ink-soft); }
.prose ul { list-style: disc; padding-left: 1.35rem; margin-bottom: 1.2rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose li { margin-bottom: 0.42rem; color: var(--ink-soft); }
.prose a { color: var(--saffron-ink); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--laurel); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose dt { font-weight: 700; color: var(--ink); margin-top: 0.9rem; }
.prose dd { color: var(--ink-soft); margin-bottom: 0.5rem; }

/* --- Callout / remember box ------------------------------------ */
.callout {
  background: var(--laurel-wash);
  border-left: 3px solid var(--laurel);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.1rem 1.2rem;
  margin: 1.7rem 0;
}
.callout-title {
  font-family: var(--ff-label);
  font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--laurel); margin-bottom: 0.45rem;
}
.callout p { font-size: 0.9rem; margin-bottom: 0.6rem; color: var(--ink-soft); }
.callout p:last-child { margin-bottom: 0; }

.remember {
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--saffron);
  border-radius: var(--r);
  padding: 1.2rem 1.3rem;
  margin: 2rem 0;
}
.remember-title {
  font-family: var(--ff-display);
  font-size: 1.12rem; font-weight: 700;
  color: var(--laurel-deep); margin-bottom: 0.6rem;
}
.remember ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.remember li {
  position: relative; padding-left: 1.35rem;
  font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--ink-soft);
}
.remember li::before {
  content: "";
  position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--saffron);
}

.source-note {
  border-top: 1px solid var(--line);
  margin-top: 2.4rem; padding-top: 1.1rem;
  font-size: 0.83rem; color: var(--ink-soft);
}

/* --- Table + scroll wrapper ------------------------------------ */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--chalk-2);
  margin: 1.5rem 0;
}
.table-hint {
  font-family: var(--ff-label);
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.4rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.table-hint svg { width: 13px; height: 13px; flex-shrink: 0; }

.data-table {
  width: 100%;
  min-width: 34rem;
  font-size: 0.875rem;
}
/* 5-column tables need more room per column before wrapping gets cramped */
.data-table.is-wide { min-width: 48rem; }
.data-table th {
  background: var(--laurel);
  color: rgba(255,255,255,0.9);
  font-family: var(--ff-label);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.68rem 0.9rem; text-align: left;
  vertical-align: bottom;
}
.data-table td {
  padding: 0.72rem 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}
/* row headers align with their cells, not with the column-header baseline */
.data-table tbody th {
  vertical-align: top;
  background: var(--laurel);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(even) td { background: var(--chalk); }
.data-table td:first-child { color: var(--ink); font-weight: 600; }
.data-table code {
  font-family: var(--ff-mono);
  font-size: 0.8em;
  background: var(--laurel-wash);
  padding: 0.1rem 0.3rem; border-radius: 3px;
  color: var(--laurel-deep);
}

/* ================================================================
   LAYER 1 — CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: start;
}
.form-card {
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: clamp(1.1rem, 3vw, 1.8rem);
}
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-family: var(--ff-label);
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--laurel); margin-bottom: 0.35rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.68rem 0.85rem;
  min-height: 2.75rem;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  font: inherit; font-size: 0.94rem;
  color: var(--ink); background: var(--chalk);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--laurel-mid);
  box-shadow: 0 0 0 3px rgba(65,86,44,0.13);
}
/* keep a real ring: border-colour alone is not a visible focus indicator */
.form-input:focus-visible, .form-textarea:focus-visible, .form-select:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.form-textarea { min-height: 9.5rem; resize: vertical; }
.form-hint { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.3rem; }
.form-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-height: 2.9rem;
  background: var(--laurel); color: #fff;
  font-weight: 700; font-size: 0.92rem;
  border-radius: var(--r-pill);
  transition: background 0.16s;
  font-family: var(--ff-body);
}
.form-btn:hover { background: var(--laurel-deep); }

.contact-info { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.95rem 1rem;
  background: var(--laurel-wash);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
}
.info-icon {
  width: 2rem; height: 2rem; flex-shrink: 0;
  background: var(--laurel); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron);
}
.info-icon svg { width: 14px; height: 14px; }
.info-label {
  display: block;
  font-family: var(--ff-label); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--laurel); margin-bottom: 0.15rem;
}
.info-value { font-size: 0.9rem; font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }

/* ================================================================
   LAYER 1 — ARTICLE PAGE
   ================================================================ */
.article-hero {
  background: var(--laurel-deep);
  padding: clamp(2.2rem, 6vw, 4.4rem) 0 clamp(1.8rem, 4vw, 3rem);
  position: relative; overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(217,160,57,0.16) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}
.article-hero > * { position: relative; z-index: 1; }

.article-crumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.45rem;
  font-family: var(--ff-label);
  font-size: 0.66rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}
.article-crumb a { color: var(--saffron); text-decoration: none; }
.article-crumb a:hover { color: #fff; }
.article-crumb-sep { color: rgba(255,255,255,0.28); }

.article-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-label);
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 0.85rem;
}
.article-kicker::before {
  content: ""; display: inline-block;
  width: 18px; height: 2px; background: var(--saffron); flex-shrink: 0;
}

.article-h1 {
  font-size: clamp(1.7rem, 4.6vw, 2.95rem);
  color: #fff; max-width: 27ch; margin-bottom: 0.9rem;
}
.article-lead {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  max-width: 60ch; margin-bottom: 1.3rem; line-height: 1.55;
}
.article-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 0.85rem;
  font-family: var(--ff-label);
  font-size: 0.66rem; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}
.article-meta-sep { color: rgba(255,255,255,0.25); }

.article-body { padding: clamp(2.2rem, 6vw, 4.2rem) 0; }

/* Related feed on article pages */
.related {
  border-top: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3.2rem) 0;
  background: var(--laurel-wash);
}
.related-title {
  font-family: var(--ff-label);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--laurel); margin-bottom: 1.1rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 0.9rem;
}
.related-card {
  display: flex; flex-direction: column;
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 1rem 1.05rem;
  text-decoration: none;
  transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.related-card:hover {
  border-color: var(--laurel-mid);
  box-shadow: var(--sh);
  transform: translateY(-2px);
}
.related-num {
  font-family: var(--ff-mono);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--saffron-ink); margin-bottom: 0.35rem;
}
.related-head {
  font-family: var(--ff-display);
  font-size: 1.02rem; font-weight: 700; line-height: 1.28;
  color: var(--laurel-deep);
}

/* ================================================================
   LAYER 1 — FOOTER
   ================================================================ */
.footer {
  background: var(--laurel-deep);
  padding: clamp(2.2rem, 6vw, 3.6rem) 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin-bottom: 2.2rem;
}
.footer-brand-row {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem;
}
.footer-mark { width: 26px; height: 26px; flex-shrink: 0; }
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.22rem; font-weight: 700; color: #fff;
}
.footer-desc {
  font-size: 0.85rem; color: var(--on-dark-soft);
  max-width: 40ch; margin-bottom: 1rem;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-label);
  font-size: 0.72rem; color: rgba(255,255,255,0.62);
  margin-bottom: 0.35rem;
  overflow-wrap: anywhere;
}
.footer-contact-item svg { width: 12px; height: 12px; color: var(--saffron); flex-shrink: 0; }

.footer-col-title {
  font-family: var(--ff-label);
  font-size: 0.61rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 0.8rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.1rem; }
.footer-link {
  font-size: 0.855rem; color: rgba(255,255,255,0.62);
  text-decoration: none; transition: color 0.14s;
  padding: 0.3rem 0; min-height: 1.9rem;
  display: flex; align-items: center;
}
.footer-link:hover { color: #fff; }

.footer-bottom {
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.6rem;
}
.footer-copy {
  font-family: var(--ff-label);
  font-size: 0.62rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

/* ================================================================
   LAYER 1 — COOKIE BANNER
   ================================================================ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--laurel-deep);
  border-top: 2px solid var(--saffron);
  padding: 0.9rem 0;
  display: none;
}
.cookie-bar.is-shown { display: block; }
.cookie-bar-inner {
  display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap;
}
.cookie-bar p {
  font-size: 0.83rem; color: var(--on-dark); flex: 1 1 15rem; min-width: 0;
}
.cookie-bar a { color: var(--saffron); text-decoration: underline; }
.cookie-accept {
  padding: 0.55rem 1.1rem; min-height: 2.6rem;
  background: var(--saffron); color: var(--laurel-deep);
  font-weight: 700; font-size: 0.85rem;
  border-radius: var(--r-pill); white-space: nowrap;
  font-family: var(--ff-body);
  display: inline-flex; align-items: center;
}
.cookie-accept:hover { background: #e8b356; }
.cookie-dismiss {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  padding: 0.55rem 1rem; min-height: 2.6rem;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--r-pill); white-space: nowrap;
  font-family: var(--ff-body);
  display: inline-flex; align-items: center;
}
.cookie-dismiss:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ================================================================
   LAYER 1 — REVEAL / RISE (readable without JS)
   ================================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.6s ease both; }

.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.5s ease;
}
html.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   LAYER 3 — HANDBOOK HOMEPAGE
   ================================================================ */

/* --- generic section frame ------------------------------------- */
.hb-sec {
  padding: clamp(2.4rem, 6vw, 4.6rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--util-h) + var(--mast-h) + 0.5rem);
}
.hb-sec-white { background: var(--chalk-2); }
.hb-sec-wash  { background: var(--laurel-wash); }
.hb-sec-dark  { background: var(--laurel-deep); border-bottom: none; }

.hb-sechead { margin-bottom: clamp(1.5rem, 3.5vw, 2.4rem); max-width: 74ch; }
.hb-chapter {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--ff-label);
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron-ink); margin-bottom: 0.6rem;
}
.hb-chapter-rule {
  display: block; width: 26px; height: 2px;
  background: var(--saffron); flex-shrink: 0;
}
.hb-sec-dark .hb-chapter { color: var(--saffron); }
.hb-h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  margin-bottom: 0.55rem;
}
.hb-sec-dark .hb-h2 { color: #fff; }
.hb-lead {
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  color: var(--ink-soft); max-width: 68ch;
}
.hb-sec-dark .hb-lead { color: var(--on-dark); }

/* --- 1. HERO ---------------------------------------------------- */
.hb-hero {
  background: var(--chalk);
  padding: clamp(2.2rem, 5.5vw, 4.4rem) 0 clamp(2.2rem, 5.5vw, 4rem);
  border-bottom: 1px solid var(--line-2);
  position: relative; overflow: hidden;
  scroll-margin-top: calc(var(--util-h) + var(--mast-h));
}
.hb-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 70%);
  pointer-events: none;
}
.hb-hero-in {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: start;
  position: relative; z-index: 1;
}
.hb-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-label);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--laurel);
  background: var(--laurel-wash);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.1rem;
}
.hb-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--saffron); flex-shrink: 0;
}
.hb-h1 {
  font-size: clamp(2.1rem, 6.2vw, 3.9rem);
  line-height: 1.08; letter-spacing: -0.015em;
  margin-bottom: 1rem;
  max-width: 22ch;
}
.hb-h1 em {
  font-style: italic; color: var(--saffron-ink);
}
.hb-standfirst {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch; margin-bottom: 1.1rem;
}
.hb-hero-note {
  font-size: 0.9rem; color: var(--ink-soft);
  max-width: 50ch; margin-bottom: 1.6rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--line-2);
}
.hb-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.hb-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.35rem; min-height: 2.9rem;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.16s, border-color 0.16s, color 0.16s, transform 0.14s;
}
.hb-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.hb-btn-primary { background: var(--laurel); color: #fff; }
.hb-btn-primary:hover { background: var(--laurel-deep); color: #fff; transform: translateY(-1px); }
.hb-btn-ghost {
  border: 1.5px solid var(--laurel-mid); color: var(--laurel);
  background: transparent;
}
.hb-btn-ghost:hover { background: var(--laurel-wash); color: var(--laurel-deep); }

/* contents card */
.hb-contents {
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: var(--sh);
  overflow: hidden;
}
.hb-contents-head {
  padding: 0.85rem 1.15rem;
  background: var(--laurel);
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem;
}
.hb-contents-title {
  font-family: var(--ff-display);
  font-size: 1.02rem; font-weight: 700; color: #fff;
}
.hb-contents-count {
  font-family: var(--ff-label);
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--saffron-lift); white-space: nowrap;
}
.hb-contents-list { list-style: none; padding: 0.35rem 0.5rem 0.6rem; margin: 0; }
.hb-contents-item + .hb-contents-item { border-top: 1px solid var(--line); }
.hb-contents-link {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding: 0.62rem 0.65rem; min-height: 2.8rem;
  text-decoration: none; border-radius: var(--r-sm);
  transition: background 0.15s;
}
.hb-contents-link:hover { background: var(--laurel-wash); }
.hb-contents-num {
  font-family: var(--ff-mono);
  font-size: 0.74rem; font-weight: 600;
  color: var(--saffron-ink); flex-shrink: 0;
  min-width: 2.1ch;
}
.hb-contents-text {
  font-size: 0.92rem; font-weight: 600; color: var(--laurel-deep);
  line-height: 1.35;
}
.hb-contents-foot {
  padding: 0.7rem 1.15rem 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem; color: var(--ink-soft);
  background: var(--chalk);
}

/* --- 2. PROMISE STRIP ------------------------------------------ */
.hb-promise {
  background: var(--laurel);
  padding: clamp(1.6rem, 4vw, 2.6rem) 0;
  scroll-margin-top: calc(var(--util-h) + var(--mast-h));
}
.hb-promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(1.1rem, 3vw, 2.2rem);
}
.hb-promise-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.hb-promise-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron);
}
.hb-promise-icon svg { width: 20px; height: 20px; }
.hb-promise-h {
  font-family: var(--ff-label);
  font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--saffron-lift); margin-bottom: 0.28rem;
}
.hb-promise-t { font-size: 0.885rem; color: rgba(255,255,255,0.82); line-height: 1.55; }

/* --- 3. STEPPER ------------------------------------------------ */
.hb-steps { display: grid; gap: 0; margin-top: 0.5rem; }
.hb-step {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: clamp(0.9rem, 2.5vw, 1.6rem);
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.hb-step:first-child { border-top: none; padding-top: 0.3rem; }
.hb-step-rail {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.hb-step-num {
  font-family: var(--ff-mono);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 500; line-height: 1;
  color: var(--saffron-ink);
  background: var(--chalk-2);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r);
  width: 100%; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hb-step-line {
  flex: 1 1 auto; width: 2px; min-height: 0.9rem;
  background: linear-gradient(var(--line-2), transparent);
  margin-top: 0.45rem;
}
.hb-step:last-child .hb-step-line { display: none; }
.hb-step-h {
  font-family: var(--ff-display);
  font-size: clamp(1.12rem, 2.3vw, 1.4rem);
  font-weight: 700; color: var(--laurel-deep);
  margin-bottom: 0.15rem;
}
.hb-step-tag {
  font-family: var(--ff-label);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--laurel-mid); margin-bottom: 0.45rem;
}
.hb-step-p { font-size: 0.945rem; color: var(--ink-soft); max-width: 66ch; }

/* SVG figure block */
.hb-figure {
  margin: clamp(1.6rem, 4vw, 2.4rem) 0 0;
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  overflow: hidden;
}
.hb-figure-head {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--chalk);
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.hb-figure-label {
  font-family: var(--ff-mono);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--saffron-ink);
}
.hb-figure-title { font-size: 0.87rem; font-weight: 600; color: var(--ink); }
.hb-figure-canvas {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
}
.hb-figure-canvas > svg {
  /* Render the diagram at or above its authored scale. The labels are authored
     at 10-11px in user units, so any min-width below the 640-660 unit viewBox
     scales them under 11px (30rem gave 7.3px at 390px). The wrapper scrolls
     instead of shrinking the drawing; a uniform scale cannot collide labels. */
  min-width: 46rem;
  height: auto;
  margin: 0 auto;
}

/* --- Edge cue for the two horizontally scrolling wrappers --------
   Covers ride with the content (background-attachment: local); shadows stay
   pinned to the box (scroll). So each edge cue is visible only while there is
   more to see in that direction, and disappears at the ends. Applies at every
   width, because the figures now also scroll on tablets. ---------- */
.hb-figure-canvas,
.table-wrap {
  --cue-cover:   #ffffff;
  --cue-cover-0: rgba(255,255,255,0);
  --cue-shade:   rgba(44,59,29,0.32);
  background-image:
    linear-gradient(to right, var(--cue-cover), var(--cue-cover-0)),
    linear-gradient(to left,  var(--cue-cover), var(--cue-cover-0)),
    radial-gradient(farthest-side at 0 50%,    var(--cue-shade), var(--cue-cover-0)),
    radial-gradient(farthest-side at 100% 50%, var(--cue-shade), var(--cue-cover-0));
  background-position: left center, right center, left center, right center;
  background-repeat: no-repeat;
  background-size: 2.2rem 100%, 2.2rem 100%, 1.05rem 100%, 1.05rem 100%;
  background-attachment: local, local, scroll, scroll;
}
.hb-sec-dark .hb-figure-canvas {
  /* matches rgba(255,255,255,0.04) over --laurel-deep */
  --cue-cover:   #344326;
  --cue-cover-0: rgba(52,67,38,0);
  --cue-shade:   rgba(0,0,0,0.42);
}
.hb-figure-cap {
  padding: 0.75rem 1rem 0.95rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem; color: var(--ink-soft);
  background: var(--chalk);
  max-width: 88ch;  /* ran ~165 characters at 1440 without this */
}
.hb-sec-dark .hb-figure { background: rgba(255,255,255,0.04); border-color: var(--on-dark-line); }
.hb-sec-dark .hb-figure-head,
.hb-sec-dark .hb-figure-cap { background: rgba(0,0,0,0.14); border-color: var(--on-dark-line); }
.hb-sec-dark .hb-figure-title { color: #fff; }
.hb-sec-dark .hb-figure-label { color: var(--saffron); }
.hb-sec-dark .hb-figure-cap { color: var(--on-dark-soft); }

/* svg internals */
.svg-face   { fill: var(--chalk); }
.svg-card   { fill: var(--chalk-2); }
.svg-line   { stroke: var(--line-2); }
.svg-rule   { stroke: var(--laurel-mid); }
.svg-fill   { fill: var(--laurel); }
.svg-fill-2 { fill: var(--laurel-mid); }
.svg-acc    { fill: var(--saffron); }
.svg-acc-st { stroke: var(--saffron); }
.svg-txt    { fill: var(--ink); font-family: "Source Sans 3", system-ui, sans-serif; font-size: 11px; font-weight: 600; }
.svg-txt-s  { fill: var(--ink-soft); font-family: "Source Sans 3", system-ui, sans-serif; font-size: 10px; }
.svg-num    { fill: var(--saffron-ink); font-family: "Source Sans 3", system-ui, sans-serif; font-size: 10px; font-weight: 600; }
.svg-txt-inv   { fill: #ffffff; font-family: "Source Sans 3", system-ui, sans-serif; font-size: 11px; font-weight: 600; }
.svg-txt-inv-s { fill: rgba(255,255,255,0.72); font-family: "Source Sans 3", system-ui, sans-serif; font-size: 10px; }
.svg-line-inv  { stroke: rgba(255,255,255,0.40); }
.svg-face-inv  { fill: rgba(255,255,255,0.05); }

/* figure footnote under a table */
.table-note {
  font-size: 0.8rem; color: var(--ink-soft);
  margin-top: 0.55rem;
  max-width: 88ch;
}

/* --- 4. VOCAB TABLE (balance vs allowance) --------------------- */
.hb-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  margin-top: 1.4rem;
}
.hb-panel {
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--laurel);
  border-radius: var(--r);
  padding: 1.15rem 1.2rem;
}
.hb-panel-alt { border-top-color: var(--saffron); }
.hb-panel-h {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--laurel-deep); margin-bottom: 0.5rem;
}
.hb-panel-p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.8rem; }
.hb-terms { list-style: none; padding: 0; margin: 0; }
.hb-terms li {
  display: flex; gap: 0.55rem; align-items: baseline;
  padding: 0.42rem 0;
  border-top: 1px dashed var(--line);
  font-size: 0.865rem; color: var(--ink-soft);
}
.hb-terms li:first-child { border-top: none; }
.hb-terms-key {
  font-weight: 700; color: var(--ink); flex-shrink: 0;
}

/* --- 5. DECISION CARDS ---------------------------------------- */
.hb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.4rem);
}
.hb-card {
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--sh);
  display: flex; flex-direction: column;
}
.hb-card-badge {
  align-self: flex-start;
  font-family: var(--ff-label);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--laurel);
  background: var(--laurel-wash);
  border-radius: var(--r-pill);
  padding: 0.22rem 0.62rem;
  margin-bottom: 0.75rem;
}
.hb-card-h {
  font-family: var(--ff-display);
  font-size: 1.14rem; font-weight: 700;
  color: var(--laurel-deep); margin-bottom: 0.45rem;
}
.hb-card-p { font-size: 0.885rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.hb-card-list { list-style: none; padding: 0; margin: auto 0 0; }
.hb-card-list li {
  position: relative; padding-left: 1.1rem;
  font-size: 0.83rem; color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.hb-card-list li::before {
  content: ""; position: absolute; left: 0; top: 0.58em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--saffron);
}

/* --- 7. DARK SIM BLOCK ---------------------------------------- */
.hb-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.1rem, 3vw, 2rem);
}
.hb-col-num {
  font-family: var(--ff-mono);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--saffron); margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--on-dark-line);
}
.hb-col-h {
  font-family: var(--ff-display);
  font-size: 1.16rem; font-weight: 700; color: #fff;
  margin-bottom: 0.45rem;
}
.hb-col-p { font-size: 0.89rem; color: rgba(255,255,255,0.76); }

/* --- 8. MYTHS -------------------------------------------------- */
.hb-myths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(0.9rem, 2.2vw, 1.3rem);
}
.hb-myth {
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  overflow: hidden;
}
.hb-myth-claim {
  display: flex; gap: 0.6rem; align-items: baseline;
  padding: 0.8rem 1rem;
  background: var(--saffron-wash);
  border-bottom: 1px solid var(--line-2);
}
.hb-myth-tag {
  font-family: var(--ff-label);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--saffron-ink); flex-shrink: 0;
}
.hb-myth-claim-t {
  font-size: 0.885rem; font-weight: 600;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--saffron-ink);
  text-decoration-thickness: 1.5px;
}
.hb-myth-fact { padding: 0.85rem 1rem 1rem; display: flex; gap: 0.6rem; align-items: baseline; }
.hb-myth-fact-tag {
  font-family: var(--ff-label);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--laurel); flex-shrink: 0;
}
.hb-myth-fact-t { font-size: 0.885rem; color: var(--ink-soft); }

/* --- 9. FAQ ---------------------------------------------------- */
.hb-faq { max-width: 78ch; }
.hb-q {
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--chalk-2);
  margin-bottom: 0.6rem;
}
.hb-q > summary {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1rem;
  min-height: 3rem;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: 1.03rem; font-weight: 700;
  color: var(--laurel-deep);
  list-style: none;
}
.hb-q > summary::-webkit-details-marker { display: none; }
.hb-q > summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--ff-mono);
  font-size: 1.15rem; font-weight: 500;
  color: var(--saffron-ink); flex-shrink: 0;
  line-height: 1;
}
.hb-q[open] > summary::after { content: "\2013"; }
.hb-q[open] > summary { border-bottom: 1px solid var(--line); }
.hb-q-body { padding: 0.85rem 1rem 1rem; }
.hb-q-body p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.7rem; }
.hb-q-body p:last-child { margin-bottom: 0; }

/* --- 10. GLOSSARY --------------------------------------------- */
.hb-gloss {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr));
  gap: 0.9rem;
}
.hb-gloss-item {
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--laurel-mid);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 0.85rem 1rem;
}
.hb-gloss-term {
  font-family: var(--ff-display);
  font-size: 1.02rem; font-weight: 700;
  color: var(--laurel-deep); margin-bottom: 0.2rem;
  display: flex; align-items: baseline; gap: 0.45rem; flex-wrap: wrap;
}
.hb-gloss-idx {
  font-family: var(--ff-mono);
  font-size: 0.62rem; font-weight: 500;
  color: var(--saffron-ink); flex-shrink: 0;
}
.hb-gloss-def { font-size: 0.845rem; color: var(--ink-soft); }

/* --- 11. ARTICLE FEED ----------------------------------------- */
.hb-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.4rem);
}
.hb-feed-card {
  display: flex; flex-direction: column;
  background: var(--chalk-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 1.2rem 1.25rem;
  text-decoration: none;
  transition: border-color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.hb-feed-card:hover {
  border-color: var(--laurel-mid);
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.hb-feed-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.6rem; margin-bottom: 0.7rem;
}
.hb-feed-num {
  font-family: var(--ff-mono);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--saffron-ink);
}
.hb-feed-read {
  font-family: var(--ff-label);
  font-size: 0.6rem; letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.hb-feed-h {
  font-family: var(--ff-display);
  font-size: clamp(1.06rem, 2vw, 1.2rem);
  font-weight: 700; line-height: 1.28;
  color: var(--laurel-deep); margin-bottom: 0.5rem;
}
.hb-feed-p { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.hb-feed-more {
  margin: auto 0 0;
  font-family: var(--ff-label);
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--laurel);
  display: flex; align-items: center; gap: 0.35rem;
}

/* --- 12. CONTACT BAND ----------------------------------------- */
.hb-band {
  background: var(--laurel);
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
  scroll-margin-top: calc(var(--util-h) + var(--mast-h));
}
.hb-band-in {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.hb-band-h {
  font-size: clamp(1.4rem, 3.2vw, 2.05rem);
  color: #fff; margin-bottom: 0.6rem;
}
.hb-band-p { font-size: 0.95rem; color: rgba(255,255,255,0.8); max-width: 58ch; }
.hb-band-list { list-style: none; padding: 0; margin: 0; }
.hb-band-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 0.6rem 0;
  border-top: 1px solid var(--on-dark-line);
  font-family: var(--ff-label);
  font-size: 0.8rem; color: rgba(255,255,255,0.86);
  overflow-wrap: anywhere;
}
.hb-band-list li:first-child { border-top: none; }
.hb-band-list svg { width: 13px; height: 13px; color: var(--saffron); flex-shrink: 0; margin-top: 0.3rem; }
.hb-band-actions { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.hb-btn-saffron { background: var(--saffron); color: var(--laurel-deep); }
.hb-btn-saffron:hover { background: #e8b356; color: var(--laurel-deep); transform: translateY(-1px); }
.hb-btn-onward {
  border: 1.5px solid rgba(255,255,255,0.4); color: #fff; background: transparent;
}
.hb-btn-onward:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* --- 404 ------------------------------------------------------- */
.hb-404 {
  padding: clamp(3rem, 9vw, 6rem) 0;
  text-align: center;
}
.hb-404-code {
  font-family: var(--ff-mono);
  font-size: clamp(3.4rem, 13vw, 6.5rem);
  font-weight: 500; line-height: 1;
  color: var(--saffron); letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.hb-404-h { font-size: clamp(1.4rem, 4vw, 2.2rem); margin-bottom: 0.7rem; }
.hb-404-p {
  font-size: 1rem; color: var(--ink-soft);
  max-width: 52ch; margin: 0 auto 1.6rem;
}
.hb-404 .hb-actions { justify-content: center; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hb-hero-in { grid-template-columns: minmax(0, 1fr); }
  .hb-band-in { grid-template-columns: minmax(0, 1fr); }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  :root { --mast-h: 3.3rem; }
  /* !important is load-bearing: `html[lang="en"] .lang-en` (0,2,1) outranks a
     bare class hide (0,1,0), so without it the English note stayed visible on
     mobile while the Greek one was hidden. */
  .hb-util-note { display: none !important; }
  .hb-util-sep { display: none !important; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 1.6rem; }
  .hb-step { grid-template-columns: 2.8rem minmax(0, 1fr); }
  .hb-figure-canvas { padding: 0.6rem; }
  .hb-strip-in { flex-direction: column; gap: 0.55rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  :root { --pad: 0.9rem; }
  .hb-step { grid-template-columns: 2.4rem minmax(0, 1fr); gap: 0.7rem; }
  .hb-actions .hb-btn { width: 100%; justify-content: center; }
  .hb-eyebrow { font-size: 0.6rem; letter-spacing: 0.1em; }
}

/* ================================================================
   MOTION PREFERENCE
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  .hb-util, .hb-mast, .cookie-bar, .footer { display: none; }
  body { background: #fff; }
}
