/* ==========================================================================
   BACKSPLASH — core stylesheet
   Monochrome. High contrast. Nothing decorative that isn't structural.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --ink: #050505;
  --ink-2: #0b0b0b;
  --ink-3: #121212;
  --paper: #ffffff;
  --paper-dim: rgba(255, 255, 255, 0.62);
  --paper-mute: rgba(255, 255, 255, 0.40);
  --paper-faint: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.24);

  --shell: min(1440px, 100% - 2 * var(--gutter));
  --gutter: 24px;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 76px;
}

@media (min-width: 900px) {
  :root { --gutter: 48px; --nav-h: 88px; }
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--paper); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Type scale ----------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-weight: 500;
  font-stretch: 112%;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
/* The vw factors are set by the longest single word that has to fit on one
   line inside .shell — REPRESENTATION for xl, CONVERSATION for l. Raising them
   makes those words break out of the container on narrow phones. */
.display--xl { font-size: clamp(1.6rem, 8.4vw, 8.5rem); }
.display--l  { font-size: clamp(1.75rem, 7vw, 5rem); }

/* A .display--l inside a .split column has far less room than the viewport
   suggests — BACKSPLASH and CONVERSATION both run past the column edge at
   7vw. Size those to the column instead. The media query is the fallback for
   browsers without container queries; it is deliberately conservative. */
@media (min-width: 900px) {
  .split > * .display--l { font-size: clamp(2rem, 3.9vw, 4rem); }
}
.split > * { container-type: inline-size; }
@supports (width: 1cqi) {
  .split > * .display--l { font-size: clamp(1.75rem, 10cqi, 5rem); }
}
/* Lower bound set by OPPORTUNITIES inside a padded card at a 320px viewport. */
.display--m  { font-size: clamp(1.45rem, 3.4vw, 2.75rem); }
.display--s  { font-size: clamp(1.25rem, 2vw, 1.6rem); font-stretch: 105%; }

.eyebrow {
  font-family: var(--display);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--paper-mute);
  margin: 0;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  color: var(--paper-dim);
  max-width: 46ch;
}

.body-copy { color: var(--paper-dim); max-width: 62ch; }
.body-copy + .body-copy { margin-top: 1.1em; }

.num {
  font-family: var(--display);
  font-weight: 500;
  font-stretch: 112%;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
}

.tag {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

/* --- Layout --------------------------------------------------------------- */
.shell { width: var(--shell); margin-inline: auto; }

.section { padding-block: clamp(72px, 11vw, 168px); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--rule { border-top: 1px solid var(--line); }

.stack > * + * { margin-top: var(--gap, 24px); }

.split {
  display: grid;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .split--even { grid-template-columns: 1fr 1fr; }
}

/* --- Wordmark ------------------------------------------------------------- */
/* The wordmark. Always uppercase. Always spaced. */
.wordmark {
  font-family: var(--display);
  font-weight: 400;
  font-stretch: 108%;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  /* trailing letter-spacing would push it off-centre */
  text-indent: 0.34em;
  padding-inline-start: 0;
}
.wordmark span { display: inline-block; }

/* Locks page scroll while the menu panel is open. */
body.menu-open { overflow: hidden; }

/* --- Page head ------------------------------------------------------------ */
/* Every inner page opens on the same centred axis as the homepage hero and
   the centred wordmark above it. */
.page-head .shell { text-align: center; }
.page-head .lede { margin-inline: auto; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  --btn-fg: var(--ink);
  --btn-bg: var(--paper);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 26px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}
.btn:hover { color: var(--paper); border-color: var(--line-strong); }
.btn:hover::before { transform: translateY(0); }
.btn__arrow { transition: transform 0.45s var(--ease); }
/* Long labels ("Reply to this proposal", "Request the roster") cannot fit on
   one line on the narrowest phones. */
@media (max-width: 400px) {
  .btn { white-space: normal; text-align: center; justify-content: center; }
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost {
  --btn-fg: var(--paper);
  --btn-bg: transparent;
  border-color: var(--line-strong);
}
.btn--ghost::before { background: var(--paper); }
.btn--ghost:hover { color: var(--ink); border-color: var(--paper); }

.btn--block { width: 100%; justify-content: center; }

/* Text link with animated rule */
.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.35s var(--ease), gap 0.35s var(--ease);
}
.link:hover { border-color: var(--paper); gap: 16px; }

/* --- Scroll reveal -------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }

[data-reveal="rule"] {
  opacity: 1;
  transform: none;
  transform-origin: left;
  scale: 0 1;
  transition: scale 1.1s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal="rule"].is-in { scale: 1 1; }

/* Headline mask reveal — lines slide up from behind a clip */
.mask-line { display: block; overflow: hidden; }
.mask-line > span {
  display: block;
  transform: translateY(102%);
  transition: transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.is-in .mask-line > span,
.mask-line.is-in > span { transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].is-in { opacity: 1; transform: none; scale: none; transition: none; }
  .mask-line > span { transform: none; transition: none; }
}

/* --- Marquee -------------------------------------------------------------- */
.marquee {
  --speed: 42s;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-right: clamp(32px, 5vw, 72px);
  animation: marquee var(--speed) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

.marquee__item {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 3rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--paper-faint);
  transition: color 0.4s var(--ease);
}
.marquee__item.is-lit { color: var(--paper); }

/* --- Cards / surfaces ----------------------------------------------------- */
.card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 40px);
  overflow: hidden;
  transition: border-color 0.45s var(--ease), background 0.45s var(--ease), transform 0.45s var(--ease);
}
.card:hover { border-color: var(--line-strong); background: var(--ink-3); }

/* Cursor-following sheen, driven by --mx/--my set in JS */
.card--lit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.055), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.card--lit:hover::before { opacity: 1; }

/* --- Numbered / ruled lists ----------------------------------------------- */
.ruled { border-top: 1px solid var(--line); }
.ruled__row {
  display: grid;
  gap: 8px 32px;
  padding-block: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 800px) {
  .ruled__row { grid-template-columns: 72px minmax(0, 1fr) minmax(0, 1.15fr); }
}
.ruled__index {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--paper-mute);
  letter-spacing: 0.1em;
  padding-top: 0.35em;
}

/* --- Footer base (layout lives in .footer-min below) ---------------------- */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding-block: clamp(56px, 7vw, 96px) 40px;
}

/* --- Forms ---------------------------------------------------------------- */
.field { display: block; }
.field__label {
  display: block;
  font-family: var(--display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 10px;
}
.field__input,
.field__area,
.field__select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--paper);
  transition: border-color 0.35s var(--ease);
  appearance: none;
}
.field__area { min-height: 120px; resize: vertical; }
.field__select { background-image: linear-gradient(45deg, transparent 50%, var(--paper-mute) 50%), linear-gradient(135deg, var(--paper-mute) 50%, transparent 50%); background-position: right 6px center, right 1px center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 24px; }
.field__select option { background: var(--ink-2); color: var(--paper); }
.field__input::placeholder, .field__area::placeholder { color: var(--paper-mute); }
.field__input:focus, .field__area:focus, .field__select:focus { outline: none; border-bottom-color: var(--paper); }

/* --- Utility -------------------------------------------------------------- */
.hide { display: none !important; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: 8px; left: 8px; z-index: 200;
  padding: 10px 18px; background: var(--paper); color: var(--ink);
  border-radius: 999px; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 0.3s var(--ease);
}
.skip-link:focus { transform: none; }

.mono-note {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--paper-mute);
  line-height: 1.7;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ==========================================================================
   Header + menu panel  —  <header data-nav>
   Logo in the middle, a menu trigger on the left that opens a panel, and a
   single action on the right. Used on every page.
   ========================================================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease);
}
.topbar.is-stuck {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.topbar__inner {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  /* minmax(0, 1fr), not 1fr: a plain 1fr column grows to fit its widest
     content, so the wider Inquire button pushed the logo off centre. */
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
.topbar__menu {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-dim);
  transition: color 0.3s var(--ease);
}
.topbar__menu:hover { color: var(--paper); }
.topbar__icon { position: relative; display: block; width: 24px; height: 11px; }
.topbar__icon i {
  position: absolute; left: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.45s var(--ease);
}
.topbar__icon i:first-child { top: 0; width: 24px; }
.topbar__icon i:last-child { bottom: 0; width: 15px; }
.topbar__menu:hover .topbar__icon i:last-child { width: 24px; }
.topbar__logo { justify-self: center; }
.topbar__cta {
  justify-self: end;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.topbar__cta:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
@media (max-width: 599px) {
  .topbar__label { display: none; }
  /* A bordered pill does not fit beside a centred wordmark on a phone. */
  .topbar__cta { padding: 8px 0; border-color: transparent; letter-spacing: 0.16em; }
  .topbar__cta:hover { background: transparent; color: var(--paper); border-color: transparent; }
}
/* Below 360px there is no room for Inquire beside the wordmark without the
   two touching. The same action sits in the menu panel and on the page. */
@media (max-width: 359px) {
  .topbar__cta { visibility: hidden; }
}

/* --- panel --------------------------------------------------------------- */
.panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.7s;
}
.panel.is-open { visibility: visible; pointer-events: auto; transition-delay: 0s; }
.panel__scrim {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.panel.is-open .panel__scrim { opacity: 1; }
.panel__sheet {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  padding: 0 clamp(24px, 3vw, 40px) clamp(22px, 3vh, 34px);
  background: var(--ink-2);
  border-right: 1px solid var(--line);
  overflow-y: auto;
  transform: translateX(-102%);
  transition: transform 0.7s var(--ease);
}
.panel__sheet:focus { outline: none; }
.panel.is-open .panel__sheet { transform: none; }

.panel__head {
  flex: none;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.panel__close {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: border-color 0.3s var(--ease), transform 0.5s var(--ease);
}
.panel__close::before, .panel__close::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 14px; height: 1px;
  background: var(--paper);
}
.panel__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.panel__close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.panel__close:hover { border-color: var(--paper); transform: rotate(90deg); }

.panel__nav { flex: 1; padding-block: clamp(10px, 2.4vh, 28px); }
.panel__item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 6px;
  align-items: baseline;
  padding: clamp(14px, 2.3vh, 22px) 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: 0s;
}
.panel.is-open .panel__item {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.14s + var(--i, 0) * 0.055s);
}
.panel__n {
  grid-row: 1;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--paper-mute);
}
.panel__title {
  font-family: var(--display);
  font-stretch: 112%;
  font-weight: 500;
  text-transform: uppercase;
  /* The vw cap only binds on phones, where the sheet is the full viewport
     width; it keeps OPPORTUNITIES inside its column at 320px. */
  font-size: clamp(1.3rem, min(1.1rem + 1.6vh, 6.8vw), 2.05rem);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 0.45s var(--ease);
}
.panel__desc { grid-column: 2; font-size: 0.8125rem; color: var(--paper-mute); }
.panel__arrow {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--paper);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}
.panel__item:hover .panel__title,
.panel__item:focus-visible .panel__title { transform: translateX(6px); }
.panel__item:hover .panel__arrow,
.panel__item:focus-visible .panel__arrow { opacity: 1; transform: none; }
.panel__item[aria-current="page"] .panel__n { color: var(--paper); }
/* Keyboard focus stays clearly visible, but as a quiet frame, not a slab. */
.panel__item:focus-visible { outline: 1px solid var(--line-strong); outline-offset: 4px; border-radius: 3px; }

.panel__actions {
  flex: none;
  display: grid;
  gap: 10px;
  padding-top: clamp(16px, 2.6vh, 26px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.panel.is-open .panel__actions { opacity: 1; transform: none; transition-delay: 0.38s; }
.panel__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.panel__action .tag { font-size: 0.625rem; letter-spacing: 0.1em; }
.panel__action:hover { border-color: var(--paper); }
.panel__action--primary { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.panel__action--primary .tag { color: rgba(5, 5, 5, 0.55); }
.panel__action--primary:hover { background: transparent; color: var(--paper); }
.panel__action--primary:hover .tag { color: var(--paper-mute); }
.panel__foot {
  flex: none;
  margin-top: clamp(14px, 2.2vh, 22px);
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
}

@media (prefers-reduced-motion: reduce) {
  .panel, .panel__scrim, .panel__sheet, .panel__item, .panel__actions { transition: none; }
  .panel__item, .panel__actions { transform: none; }
}

/* --- Footer  —  <footer data-footer> ---------------------------------------- */
.footer--min { padding-block: clamp(28px, 4vw, 40px); }
.footer-min {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
}
.footer-min__links { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.footer-min__links a {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-dim);
  transition: color 0.3s var(--ease);
}
.footer-min__links a:hover { color: var(--paper); }
.footer-min__legal { font-family: var(--mono); font-size: 0.6875rem; color: var(--paper-mute); }
/* Homepage only: the way into the private admin (see mountAdminCorner). Sits
   under the header and menu panel, and under the intro while it plays. */
.admin-corner {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper-dim);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.admin-corner:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }
body.menu-open .admin-corner { opacity: 0; pointer-events: none; }
