/* ==========================================================================
   TAXIC — Design System v2
   Warm paper ground, deep-rounded ink islands, one gold accent.
   Structural language adapted for Taxic; brand, colour and content are ours.
   Load once per page: <link rel="stylesheet" href="/assets/css/taxic-v2.css">
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* Brand ------------------------------------------------------------------ */
  --gold:        #E5B93C;
  --gold-lift:   #EFC75A;
  --gold-drop:   #D9A92E;
  --gold-ink:    #7E5C0B;   /* gold that clears 4.5:1 as text on paper */
  --green:       #0F7A46;
  --red:         #B4302F;

  /* Ground: warm paper ----------------------------------------------------- */
  --paper:       #F1EFE9;
  --paper-2:     #FFFFFF;
  --paper-3:     #E8E5DC;
  --rule:        rgba(20, 18, 13, 0.12);
  --rule-soft:   rgba(20, 18, 13, 0.06);

  /* Islands: ink ----------------------------------------------------------- */
  --ink:         #0B0A08;
  --ink-2:       #17140E;
  --ink-3:       #221E15;
  --ink-rule:    rgba(247, 232, 195, 0.13);
  --ink-rule-2:  rgba(247, 232, 195, 0.07);

  /* Text ------------------------------------------------------------------- */
  --on-paper:    #14120D;
  --on-paper-2:  #55524A;
  --on-paper-3:  #66635A;
  --on-ink:      #F7F3E9;
  --on-ink-2:    #BEB5A2;
  --on-ink-3:    #948B79;
  --on-gold:     #15130C;

  /* Contextual aliases — components read these, sections re-point them ----- */
  --bg:          var(--paper);
  --surface:     var(--paper-2);
  --surface-2:   var(--paper-3);
  --line:        var(--rule);
  --line-soft:   var(--rule-soft);
  --text:        var(--on-paper);
  --text-2:      var(--on-paper-2);
  --text-3:      var(--on-paper-3);
  --accent-text: var(--gold-ink);

  /* Geometry --------------------------------------------------------------- */
  --shell:       1280px;
  --shell-tight: 900px;
  --gutter:      clamp(1.1rem, 3.5vw, 2.75rem);
  --island-inset: clamp(0.5rem, 1.2vw, 1rem);
  /* Deliberately larger than --island-inset by a fixed 14px, so the nav bar
     sits visibly inside the card rather than flush with its edges - a strip
     of the card's own surface and rounded corner shows on both sides, at
     every viewport width, matching the reveal already used on top. Edit the
     "+ 14px" to change just that reveal margin without touching the card. */
  --nav-inset:    calc(var(--island-inset) + 14px);
  --r-island:    clamp(20px, 2.4vw, 34px);
  --r-card:      18px;
  --r-sm:        12px;
  --r-pill:      999px;
  --nav-h:       92px;   /* pill height + its top offset, for scroll-padding */

  /* Type ------------------------------------------------------------------- */
  --font-display: 'Archivo', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --t--1: clamp(0.78rem, 0.76rem + 0.1vw, 0.84rem);
  --t-0:  clamp(0.95rem, 0.92rem + 0.15vw, 1.03rem);
  --t-1:  clamp(1.08rem, 1.02rem + 0.3vw, 1.26rem);
  --t-2:  clamp(1.3rem, 1.16rem + 0.62vw, 1.72rem);
  --t-3:  clamp(1.65rem, 1.36rem + 1.3vw, 2.5rem);
  --t-4:  clamp(2.1rem, 1.55rem + 2.5vw, 3.6rem);
  --t-5:  clamp(2.7rem, 1.6rem + 4.9vw, 5.6rem);
  --t-6:  clamp(3.1rem, 1.2rem + 8vw, 8rem);

  /* Effects ---------------------------------------------------------------- */
  --gold-ghost: rgba(229, 185, 60, 0.12);
  --gold-edge:  rgba(229, 185, 60, 0.42);
  --lift-1: 0 1px 2px rgba(24, 22, 12, 0.05), 0 10px 26px -20px rgba(24, 22, 12, 0.4);
  --lift-2: 0 2px 6px rgba(24, 22, 12, 0.06), 0 30px 60px -38px rgba(24, 22, 12, 0.5);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light;
}

/* Dark: paper darkens, islands lift. Same structure, inverted ground. ------- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --paper:     #0B0A08;
    --paper-2:   #16130D;
    --paper-3:   #1E1A12;
    --rule:      rgba(247, 232, 195, 0.13);
    --rule-soft: rgba(247, 232, 195, 0.06);
    --ink:       #16130D;
    --ink-2:     #1E1A12;
    --ink-3:     #282318;
    --on-paper:   #F7F3E9;
    --on-paper-2: #BEB5A2;
    --on-paper-3: #968D7B;
    --accent-text: var(--gold);
    --gold-ink:  var(--gold);
    --green:     #45D18B;
    --red:       #FF8B87;
    --lift-1: 0 1px 2px rgba(0, 0, 0, 0.5), 0 10px 26px -20px rgba(0, 0, 0, 0.9);
    --lift-2: 0 2px 6px rgba(0, 0, 0, 0.5), 0 30px 60px -38px rgba(0, 0, 0, 0.95);
    color-scheme: dark;
  }
}
:root[data-theme='dark'] {
  --paper:     #0B0A08;
  --paper-2:   #16130D;
  --paper-3:   #1E1A12;
  --rule:      rgba(247, 232, 195, 0.13);
  --rule-soft: rgba(247, 232, 195, 0.06);
  --ink:       #16130D;
  --ink-2:     #1E1A12;
  --ink-3:     #282318;
  --on-paper:   #F7F3E9;
  --on-paper-2: #BEB5A2;
  --on-paper-3: #968D7B;
  --accent-text: var(--gold);
  --gold-ink:  var(--gold);
  --green:     #45D18B;
  --red:       #FF8B87;
  --lift-1: 0 1px 2px rgba(0, 0, 0, 0.5), 0 10px 26px -20px rgba(0, 0, 0, 0.9);
  --lift-2: 0 2px 6px rgba(0, 0, 0, 0.5), 0 30px 60px -38px rgba(0, 0, 0, 0.95);
  color-scheme: dark;
}

/* Any block that should carry the ink palette regardless of theme. */
.on-ink {
  --bg:        var(--ink);
  --surface:   var(--ink-2);
  --surface-2: var(--ink-3);
  --line:      var(--ink-rule);
  --line-soft: var(--ink-rule-2);
  --text:      var(--on-ink);
  --text-2:    var(--on-ink-2);
  --text-3:    var(--on-ink-3);
  --accent-text: var(--gold);
  color: var(--text);
  color-scheme: dark;
}

/* --------------------------------------------------------------------------
   2. RESET + BASE
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 2rem);
}

body {
  font-family: var(--font-sans);
  font-size: var(--t-0);
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
picture { display: contents; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--gold); color: var(--on-gold); }
hr { border: 0; border-top: 1px solid var(--line); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  background: var(--gold); color: var(--on-gold);
  padding: 0.7rem 1.1rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: 0.85rem; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   3. LAYOUT — shell, sections, ink islands
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--tight { max-width: var(--shell-tight); }

.band { padding-block: clamp(3.5rem, 7.5vw, 7.5rem); }
.band--sm { padding-block: clamp(2.25rem, 4.5vw, 4rem); }

/* The signature: a deep-rounded dark island floating on the paper ground. */
.island {
  background: var(--ink);
  border-radius: var(--r-island);
  margin-inline: var(--island-inset);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.island--paper { background: var(--paper-2); }

/* Every g-* class is a grid in its own right, so it works standalone as well
   as alongside .grid. Declaring only grid-template-columns silently does
   nothing on a block element. */
.grid, .g-2, .g-3, .g-4, .g-split, .g-aside { display: grid; gap: clamp(0.85rem, 1.6vw, 1.35rem); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g-split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(1.75rem, 4vw, 4rem); align-items: center; }
.g-aside { grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr); gap: clamp(1.5rem, 4vw, 3.5rem); }

.stack { display: flex; flex-direction: column; }
.s-xs { gap: 0.4rem; } .s-sm { gap: 0.7rem; } .s-md { gap: 1.1rem; }
.s-lg { gap: 1.75rem; } .s-xl { gap: 2.75rem; }

.row { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.row--between { justify-content: space-between; }
.row--end { justify-content: flex-end; }
.row--mid { justify-content: center; }
.center { text-align: center; margin-inline: auto; }

@media (max-width: 960px) {
  .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g-split, .g-aside { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */

.display {
  font-family: var(--font-display);
  font-size: var(--t-6);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 0.92;
  text-transform: lowercase;
}
.display sup {
  font-size: 0.26em; vertical-align: super; letter-spacing: 0;
  font-weight: 600; top: -0.1em; position: relative;
}

/* Homepage title typewriter (assets/js/typewriter.js). The cursor is a
   plain inline block, not a pseudo-element, so JS can fade it out once
   typing finishes without touching the text node beside it. */
.tw-cursor {
  display: inline-block;
  width: 0.05em; height: 0.82em;
  margin-left: 0.04em;
  background: currentColor;
  vertical-align: -0.05em;
  animation: tw-blink 1s step-end infinite;
  transition: opacity 0.6s var(--ease);
}
.tw-cursor--fade { opacity: 0; animation: none; }
@keyframes tw-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .tw-cursor { display: none; }
}

/* --------------------------------------------------------------------------
   PWA install banner (assets/js/taxic.js buildInstallBanner). Absent from
   this stylesheet entirely until now, so on every v2 page it rendered as
   bare, unpositioned text at the bottom of the document instead of a
   floating card - this is the v1 component ported onto v2's own tokens.
   -------------------------------------------------------------------------- */
.install-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 2200;
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem 1.1rem;
  max-width: 460px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--lift-2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.install-banner.is-visible { opacity: 1; transform: translateY(0); }
.install-banner__icon {
  flex: none;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--gold-ghost);
  border: 1px solid var(--gold-edge);
  color: var(--accent-text);
}
.install-banner__body { flex: 1; min-width: 0; }
.install-banner__title { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin: 0 0 0.2rem; letter-spacing: -0.01em; }
.install-banner__desc { font-size: 0.8rem; color: var(--text-2); margin: 0; line-height: 1.45; }
.install-banner__actions { flex: none; display: flex; align-items: center; gap: 0.4rem; }
.install-banner__close {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; color: var(--text-3);
  background: transparent; border: 0; cursor: pointer;
}
.install-banner__close:hover { color: var(--text); background: var(--surface-2); }
.install-banner__close .icon { width: 18px; height: 18px; }
/* Dedicated so taxic.js (shared with the old template) never has to pick
   between .btn--gold (here) and .btn--primary (v1). */
.install-banner__action {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.5rem 0.9rem; border-radius: var(--r-pill);
  background: linear-gradient(180deg, var(--gold-lift) 0%, var(--gold) 55%, var(--gold-drop) 100%);
  color: var(--on-gold);
  font-weight: 700; font-size: 0.8rem; border: 0; cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 246, 214, 0.45) inset, 0 10px 26px -16px rgba(229, 185, 60, 0.85);
}
.install-banner__action:hover { filter: brightness(1.05); }
@media (max-width: 480px) {
  .install-banner { flex-wrap: wrap; }
  .install-banner__actions { width: 100%; justify-content: flex-end; }
}
.t-xl { font-size: var(--t-5); letter-spacing: -0.042em; line-height: 0.98; }
.t-lg { font-size: var(--t-4); letter-spacing: -0.035em; line-height: 1.04; }
.t-md { font-size: var(--t-3); letter-spacing: -0.028em; line-height: 1.1; }
.t-sm { font-size: var(--t-2); letter-spacing: -0.02em; }
.t-xs { font-size: var(--t-1); letter-spacing: -0.01em; line-height: 1.3; }

/* Two-tone statement: lead clause solid, remainder stepped back. */
.say {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-3);
  line-height: 1.22;
  letter-spacing: -0.026em;
  color: var(--text-3);
  text-wrap: balance;
  max-width: 24ch;
}
.say b, .say strong { font-weight: 700; color: var(--text); }
.say--wide { max-width: 34ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-3);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex: none;
}

.lede { font-size: var(--t-1); line-height: 1.62; color: var(--text-2); max-width: 56ch; }
.muted { color: var(--text-2); }
.dim   { color: var(--text-3); }
.gold  { color: var(--accent-text); }
.mono  { font-family: var(--font-mono); }
.num   { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.small { font-size: var(--t--1); }
.tiny  { font-size: 0.72rem; }

.prose { max-width: 68ch; }
.prose p + p { margin-top: 1rem; }
.prose h2 { font-size: var(--t-2); margin: 2.5rem 0 0.8rem; }
.prose h3 { font-size: var(--t-1); margin: 2rem 0 0.55rem; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.15rem; color: var(--text-2); list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: 0.4rem; }
.prose a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }

.head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: clamp(1.75rem, 3.5vw, 3rem);
}
.head__text { display: flex; flex-direction: column; gap: 0.85rem; }
@media (max-width: 720px) { .head { flex-direction: column; align-items: flex-start; gap: 1.1rem; } }

/* --------------------------------------------------------------------------
   5. ICONS
   -------------------------------------------------------------------------- */

/* fill/stroke are load-bearing, not decoration: taxic.js draws every icon as
   an unfilled Lucide-style path meant to be outlined in the current text
   colour. Without this, the browser's SVG default (solid black fill, no
   stroke) takes over and every icon on the site - not just the nav - renders
   as a black silhouette instead of a coloured line icon. */
.icon {
  width: 1.15rem; height: 1.15rem; flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.icon--sm { width: 0.95rem; height: 0.95rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }

.tile {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--gold-ghost);
  border: 1px solid var(--gold-edge);
  color: var(--accent-text);
  flex: none;
}
.tile .icon { width: 1.25rem; height: 1.25rem; }
.tile--solid { background: var(--gold); border-color: var(--gold); color: var(--on-gold); }

/* --------------------------------------------------------------------------
   6. BUTTONS — pill, with an optional circular badge
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-weight: 700; font-size: 0.88rem; line-height: 1.2;
  white-space: nowrap; cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1rem; height: 1rem; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-lift) 0%, var(--gold) 55%, var(--gold-drop) 100%);
  color: var(--on-gold);
  padding-right: 0.4rem;
  box-shadow: 0 1px 0 rgba(255, 246, 214, 0.5) inset, 0 10px 24px -16px rgba(229, 185, 60, 0.9);
}
.btn--gold:hover { filter: brightness(1.05) saturate(1.04); box-shadow: 0 1px 0 rgba(255,246,214,.6) inset, 0 16px 32px -14px rgba(229,185,60,.95); }
.btn__badge {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--on-gold); color: var(--gold);
  flex: none;
}
.btn__badge .icon { width: 0.85rem; height: 0.85rem; }

.btn--ink { background: var(--ink); color: var(--on-ink); padding-right: 0.4rem; }
.btn--ink .btn__badge { background: var(--on-ink); color: var(--ink); }
.btn--ink:hover { background: var(--ink-3); }

.btn--line { border-color: var(--line); color: var(--text); background: transparent; }
.btn--line:hover { border-color: var(--text-3); background: var(--surface); }

.btn--ghost { color: var(--text); background: transparent; }
.btn--ghost:hover { background: var(--surface); }

.btn--lg { padding: 0.92rem 1.6rem; font-size: 0.95rem; }
.btn--lg.btn--gold, .btn--lg.btn--ink { padding-right: 0.45rem; }
.btn--sm { padding: 0.5rem 0.95rem; font-size: 0.8rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   7. NAV — floating pill
   -------------------------------------------------------------------------- */

.site-header {
  /* Sits lower than the island's own 0.75rem top margin so the card's rounded
     top edge stays visible above the pill rather than being covered by it.
     z-index must stay above .drawer's (95): the toggle button that opens the
     drawer swaps to an X to close it, and that only works if the header is
     still reachable above the drawer's full-bleed overlay once it's open. */
  position: fixed; inset: 1.5rem 0 auto; z-index: 100;
  display: flex; justify-content: center;
  padding-inline: var(--nav-inset);
  pointer-events: none;
  /* Direction-aware hide, driven by taxic.js toggling .is-hidden: down hides
     it, up (or being back near the top) brings it straight back. -150% comfortably
     clears the bar plus its own top offset regardless of its rendered height. */
  transition: transform 0.35s var(--ease);
}
.site-header.is-hidden { transform: translateY(-150%); }
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
}
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 0.8rem;
  /* No max-width: the bar must track the island's own edges exactly, on
     every viewport, not just coincide with them below ~1350px. .island gets
     its width from margin-inline: var(--island-inset) with no cap of its
     own, so the nav matches it by using the same rule instead of a fixed
     max-width that stops growing past --shell. */
  width: 100%;
  padding: 0.4rem 0.4rem 0.4rem 1.1rem;
  /* Rounded-rect at the same radius as the card it sits above, not a full
     pill - it should read as a smaller card, not a capsule. */
  border-radius: var(--r-island);
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  border: 1px solid var(--ink-rule);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  color: var(--on-ink);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-stuck .nav { box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.9); background: color-mix(in srgb, var(--ink) 96%, transparent); }

.brand { display: flex; align-items: center; gap: 0.55rem; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; font-size: 1.02rem; }
/* In the nav the mark stands alone - repeating the name beside the logo is
   redundant and, on a phone, it crowds out the controls. */
.brand--mark { gap: 0; }
.brand--mark .brand__mark { width: 38px; height: 32px; }
/* The real Taxic mark. Drawn as an alpha mask rather than an <img> so it
   inherits currentColor - light on the dark nav pill, dark on paper - from a
   single transparent file, with no second asset and no filter hacks. */
.brand__mark {
  display: inline-block;
  width: 30px; height: 25px; flex: none;
  background-color: currentColor;
  -webkit-mask: url(/assets/images/logo.png) center / contain no-repeat;
  -webkit-mask-image: url(/assets/images/logo.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask: url(/assets/images/logo.png) center / contain no-repeat;
  mask-image: url(/assets/images/logo.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.brand sup { font-size: 0.5em; vertical-align: super; opacity: 0.7; }

.nav__links { display: flex; align-items: center; gap: 0.15rem; margin-inline: auto; }
.nav__links a {
  padding: 0.48rem 0.9rem; border-radius: var(--r-pill);
  font-size: 0.84rem; font-weight: 600; color: var(--on-ink-2);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--on-ink); background: rgba(247, 232, 195, 0.08); }
.nav__links a[aria-current='page'] { background: var(--on-ink); color: var(--ink); }

/* margin-left keeps the controls hard right even when .nav__links is
   display:none below 900px and its auto margins stop applying. */
.nav__end { display: flex; align-items: center; gap: 0.35rem; margin-left: auto; }
/* These read as controls only if they have a surface. A bare glyph at low
   contrast on near-black is effectively invisible on a phone. */
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--on-ink);
  background: rgba(247, 232, 195, 0.12);
  border: 1px solid rgba(247, 232, 195, 0.22);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.icon-btn .icon { width: 1.1rem; height: 1.1rem; }
.icon-btn:hover { color: var(--gold); background: rgba(247, 232, 195, 0.18); border-color: var(--gold-edge); }
.icon-btn:active { transform: scale(0.94); }
.nav .btn--gold { padding: 0.5rem 0.5rem 0.5rem 1rem; font-size: 0.82rem; }
.nav .btn__badge { width: 24px; height: 24px; }

.theme-toggle .icon--moon { display: none; }
:root[data-theme='dark'] .theme-toggle .icon--sun { display: none; }
:root[data-theme='dark'] .theme-toggle .icon--moon { display: block; }

.nav__burger { display: none; }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; }
}
@media (max-width: 560px) {
  .nav { padding-left: 0.6rem; padding-right: 0.6rem; gap: 0.4rem; }
  /* There is no good way to shrink a labelled pill into the space left after
     the logo and two icon buttons - it either crowds them or degrades into
     an unlabelled circle that reads as a stray dot, not a button. The drawer
     already opens on a full-width "Get started" button, so the top bar CTA
     steps aside here rather than limping on in a broken shape. */
  .nav .btn--gold { display: none; }
  .nav__end { gap: 0.55rem; }
  .icon-btn { width: 40px; height: 40px; }
  .icon-btn .icon { width: 1.2rem; height: 1.2rem; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 95;
  background: var(--ink); color: var(--on-ink);
  padding: 5.5rem var(--gutter) 2rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  transform: translateY(-100%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { transform: none; }
/* Stops the page scrolling behind the open drawer - which also keeps the
   scroll-hide header logic from ever needing to run while the drawer, and
   its own close (X) button, are the only thing on screen. */
body.drawer-open { overflow: hidden; }
.drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px solid var(--ink-rule);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em;
}
.drawer a .icon { color: var(--gold); }
.drawer .btn { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */

.hero { position: relative; padding: clamp(6.5rem, 12vw, 9.5rem) 0 clamp(1.4rem, 3vw, 2.2rem); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(102deg, rgba(11,10,8,0.96) 0%, rgba(11,10,8,0.88) 34%, rgba(11,10,8,0.5) 66%, rgba(11,10,8,0.3) 100%),
    linear-gradient(180deg, rgba(11,10,8,0.7) 0%, transparent 26%, rgba(11,10,8,0.9) 100%),
    radial-gradient(900px 420px at 78% 24%, rgba(229,185,60,0.13), transparent 66%);
}
.hero__inner { display: flex; flex-direction: column; gap: clamp(1.5rem, 3vw, 2.4rem); }
.hero__foot { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: end; }
@media (max-width: 900px) { .hero__foot { grid-template-columns: 1fr; } }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.proof { display: flex; flex-wrap: wrap; gap: clamp(1.25rem, 3vw, 2.5rem); }
.proof div { display: flex; flex-direction: column; gap: 0.15rem; }
.proof dt { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); }
.proof dd { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; margin: 0; }

/* --------------------------------------------------------------------------
   9. CARDS
   -------------------------------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card--hover:hover { border-color: var(--gold-edge); transform: translateY(-3px); box-shadow: var(--lift-2); }
.card--flat { background: transparent; }
.card--pad { padding: clamp(1.6rem, 3vw, 2.6rem); }
.card__title { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; letter-spacing: -0.018em; }
.card__body { color: var(--text-2); font-size: 0.92rem; }

/* Numbered step, big ghosted numeral bottom-right */
.step {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.step:hover { border-color: var(--gold-edge); transform: translateY(-3px); }
.step__k { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); }
.step::after {
  content: attr(data-n);
  position: absolute; right: -0.2rem; bottom: -1.5rem;
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 800;
  line-height: 1; color: var(--text); opacity: 0.06; pointer-events: none;
}

/* Accordion-style numbered row, for lists on ink */
.rows { display: flex; flex-direction: column; }
.rows__item {
  display: flex; align-items: center; gap: clamp(0.9rem, 2.5vw, 2rem);
  padding: clamp(1.1rem, 2.2vw, 1.6rem) 0;
  border-top: 1px solid var(--line);
}
.rows__item:last-child { border-bottom: 1px solid var(--line); }
.rows__n { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.04em; color: var(--text-3); opacity: 0.55; min-width: 2.4ch; }
.rows__main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.3rem; }
.rows__title { font-family: var(--font-display); font-size: var(--t-1); font-weight: 700; letter-spacing: -0.02em; }
.rows__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

.tag {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.6rem; border-radius: var(--r-pill);
  border: 1px solid var(--line); color: var(--text-3);
}
.tag--gold { border-color: var(--gold-edge); color: var(--accent-text); background: var(--gold-ghost); }

/* Media card with photo */
.shot { position: relative; border-radius: var(--r-card); overflow: hidden; background: var(--surface-2); }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.1rem 0.9rem;
  background: linear-gradient(transparent, rgba(11,10,8,0.88));
  color: #F7F3E9; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   10. STATS
   -------------------------------------------------------------------------- */

.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat__n { font-family: var(--font-display); font-size: var(--t-4); font-weight: 800; letter-spacing: -0.042em; line-height: 1; }
.stat__k { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); }
.stat__note { font-size: 0.85rem; color: var(--text-2); }

/* --------------------------------------------------------------------------
   11. FORMS
   -------------------------------------------------------------------------- */

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field__label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-3); }
.input, .select, .textarea {
  width: 100%; padding: 0.72rem 0.95rem;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--text-3); opacity: 0.75; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ghost);
}
.textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: 0.78rem; color: var(--text-3); }

/* Range slider, used by the earnings estimators */
.range { width: 100%; appearance: none; background: transparent; cursor: pointer; }
.range::-webkit-slider-runnable-track { height: 5px; border-radius: 99px; background: var(--surface-2); border: 1px solid var(--line); }
.range::-moz-range-track { height: 5px; border-radius: 99px; background: var(--surface-2); border: 1px solid var(--line); }
.range::-webkit-slider-thumb {
  appearance: none; width: 20px; height: 20px; margin-top: -8px;
  border-radius: 50%; background: var(--gold); border: 2px solid var(--on-gold);
}
.range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); border: 2px solid var(--on-gold); }

/* --------------------------------------------------------------------------
   12. TABLES
   -------------------------------------------------------------------------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-card); }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
th, td { text-align: left; padding: 0.75rem 1rem; border-bottom: 1px solid var(--line-soft); }
thead th {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--text-3); font-weight: 700; background: var(--surface-2);
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: 0; }
td.n, th.n { font-family: var(--font-mono); font-variant-numeric: tabular-nums; text-align: right; }

/* --------------------------------------------------------------------------
   13. MARQUEE
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden; padding-block: 0.85rem;
  border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: flex; gap: 2.75rem; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-3); white-space: nowrap;
}
.marquee__item .icon { color: var(--accent-text); width: 0.9rem; height: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   13b. CUSTODY CHAIN
   Three checkpoints on one trip, not three equal cards. The dashed rule is
   the route; the pins sit on it and mask it where they land.
   -------------------------------------------------------------------------- */

.chain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.25rem);
  counter-reset: chain;
}
.chain::before {
  content: '';
  position: absolute;
  left: 28px; right: 28px; top: 27px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 9px, transparent 9px 19px);
  opacity: 0.5;
}
.chain__node {
  position: relative;
  display: flex; flex-direction: column; gap: 0.55rem;
  align-items: flex-start;
  counter-increment: chain;
}
.chain__pin {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg);
  border: 2px solid var(--gold);
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.chain__pin .icon { width: 1.35rem; height: 1.35rem; }
.chain__pin::after {
  content: counter(chain, decimal-leading-zero);
  position: absolute; right: -6px; bottom: -4px;
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 700;
  background: var(--gold); color: var(--on-gold);
  border-radius: var(--r-pill); padding: 0.1rem 0.35rem;
}
.chain__where {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text);
}
.chain__title { font-family: var(--font-display); font-size: var(--t-1); font-weight: 700; letter-spacing: -0.02em; }
.chain__body { color: var(--text-2); font-size: 0.92rem; }

@media (max-width: 820px) {
  .chain { grid-template-columns: 1fr; gap: 1.75rem; }
  .chain::before { left: 27px; right: auto; top: 28px; bottom: 28px; height: auto; width: 2px;
    background: repeating-linear-gradient(180deg, var(--gold) 0 9px, transparent 9px 19px); }
  .chain__node { padding-left: 76px; min-height: 56px; }
  .chain__pin { position: absolute; left: 0; top: 0; margin: 0; }
}

/* --------------------------------------------------------------------------
   13c. COVERAGE PANEL
   A drawn loop rather than three fact boxes - the route is the product.
   -------------------------------------------------------------------------- */

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.4rem, 3vw, 2.5rem);
}
.coverage__map { position: relative; }
.coverage__map svg { width: 100%; height: auto; overflow: visible; }
.coverage__route { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 9 10; opacity: 0.75; }
.coverage__stop { fill: var(--surface); stroke: var(--text-3); stroke-width: 2; }
.coverage__stop--live { fill: var(--gold); stroke: var(--gold); }
.coverage__ring { fill: none; stroke: var(--gold); stroke-width: 1.5; opacity: 0.35; }
.coverage__label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; fill: var(--text-3);
}
.coverage__label--live { fill: var(--accent-text); }

.facts { display: flex; flex-direction: column; }
.fact {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 0.4rem 1rem;
  padding: 0.95rem 0; border-bottom: 1px solid var(--line-soft);
}
.fact:first-child { padding-top: 0; }
.fact:last-child { border-bottom: 0; padding-bottom: 0; }
.fact__k { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); grid-column: 1 / -1; }
.fact__v { font-family: var(--font-display); font-size: var(--t-2); font-weight: 800; letter-spacing: -0.03em; }
.fact__n { color: var(--text-2); font-size: 0.88rem; grid-column: 1 / -1; }

@media (max-width: 860px) { .coverage { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   13d. PAGE HEAD — compact ink island for interior pages (no photograph)
   -------------------------------------------------------------------------- */

.phead {
  position: relative; isolation: isolate; overflow: hidden;
  margin: 0.75rem var(--island-inset) 0;
  border-radius: var(--r-island);
  background:
    radial-gradient(900px 380px at 12% -20%, rgba(229, 185, 60, 0.16), transparent 68%),
    var(--ink);
  padding: clamp(6.5rem, 11vw, 8.5rem) 0 clamp(1.75rem, 3.5vw, 2.75rem);
}
.phead__inner { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.phead h1 { font-size: var(--t-4); letter-spacing: -0.038em; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.08em; color: var(--text-3);
}
.breadcrumb a:hover { color: var(--accent-text); }

.badge-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* Carried over from the v1 pages so their content converts without edits. */
.pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: var(--r-pill);
  border: 1px solid var(--line); color: var(--text-3);
}
.pill--gold, .pill--amber { border-color: var(--gold-edge); color: var(--accent-text); background: var(--gold-ghost); }

.check-list { display: flex; flex-direction: column; gap: 0.7rem; }
.check-list li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--text-2); font-size: 0.92rem; }
.check-list .icon { color: var(--accent-text); margin-top: 0.2rem; }

.k { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); }
.v { font-family: var(--font-display); font-size: var(--t-1); font-weight: 700; letter-spacing: -0.02em; }

.toc { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.toc ul { display: flex; flex-direction: column; gap: 0.5rem; }
.toc a { color: var(--text-2); font-size: 0.86rem; }
.toc a:hover { color: var(--accent-text); }

.print-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; }
@media print { .no-print { display: none !important; } }

/* --------------------------------------------------------------------------
   13e. WHO — four audiences, side by side instead of four tall rows
   -------------------------------------------------------------------------- */

.who { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; }
.who__cell { background: var(--bg); padding: clamp(1.1rem, 2vw, 1.5rem); display: flex; flex-direction: column; gap: 0.55rem; transition: background 0.25s var(--ease); }
.who__cell:hover { background: var(--surface); }
.who__k { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-text); }
.who__t { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; letter-spacing: -0.02em; }
.who__b { color: var(--text-2); font-size: 0.86rem; line-height: 1.5; }
.who__cell a { margin-top: auto; padding-top: 0.4rem; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; font-weight: 700; color: var(--accent-text); }
.who__cell a:hover { gap: 0.55rem; }

@media (max-width: 900px) { .who { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .who { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   14. CALLOUT / NOTE
   -------------------------------------------------------------------------- */

.note {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 1rem 1.15rem; border-radius: var(--r-card);
  background: var(--gold-ghost); border: 1px solid var(--gold-edge);
  font-size: 0.9rem; color: var(--text);
}
.note .icon { color: var(--accent-text); margin-top: 0.15rem; }
.note--plain { background: var(--surface); border-color: var(--line); }
.note--plain .icon { color: var(--text-3); }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */

.foot { padding-block: clamp(2.5rem, 5vw, 4.5rem) 2rem; }
.foot__top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: clamp(1.75rem, 4vw, 3rem); }
.foot__col { display: flex; flex-direction: column; gap: 0.6rem; }
.foot__k { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.3rem; }
.foot__col a { color: var(--text-2); font-size: 0.9rem; }
.foot__col a:hover { color: var(--accent-text); }
.foot__base {
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--text-3);
}
@media (max-width: 860px) { .foot__top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .foot__top { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   16. MOTION
   -------------------------------------------------------------------------- */

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal='left']  { transform: translateX(-22px); }
[data-reveal='right'] { transform: translateX(22px); }
[data-reveal='fade']  { transform: none; }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal]:not(.is-in) { will-change: opacity, transform; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@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; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   17. PRINT
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .drawer, .marquee, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .island { background: #fff; border: 1px solid #ccc; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
