/* ==========================================================================
   Oober Physio — house styles
   Direction: editorial / tactile. Bone paper, hard ink rules, offset shadows,
   one signal colour that only ever means "act here". No soft blurry cards.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,WONK@0,9..144,400..800,0..100,0..1;1,9..144,400..700,0..100,0..1&family=Familjen+Grotesk:ital,wght@0,400..700;1,400..600&display=swap');

:root {
  --paper:      #F1ECE2;
  --paper-2:    #FBF8F2;
  --paper-3:    #E7DFD1;
  --ink:        #16130F;
  --ink-soft:   #514738;
  --ink-faint:  #8A7E6C;
  --signal:     #DC4A26;
  --signal-dk:  #A9351A;
  --sage:       #3D6151;
  --sand:       #EBD7B4;
  --line:       #16130F;

  --display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --ui:      'Familjen Grotesk', 'Helvetica Neue', Arial, sans-serif;

  --r-sm: 4px;
  --r:    10px;
  --r-lg: 20px;
  --shadow:     3px 3px 0 var(--ink);
  --shadow-lg:  6px 6px 0 var(--ink);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* Paper grain. Sits above the background, below everything else. */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .38; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

img, svg { max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ------------------------------------------------------------- typography */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: 'SOFT' 40, 'WONK' 1, 'opsz' 100;
  line-height: 1.02;
  letter-spacing: -.022em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 7.4vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-variation-settings: 'SOFT' 30, 'WONK' 0, 'opsz' 30; }
h4 { font-size: 1.08rem; font-family: var(--ui); font-weight: 700; letter-spacing: -.01em; }
p  { margin: 0 0 1em; max-width: 62ch; }

.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .19em;
  text-transform: uppercase; color: var(--signal); margin: 0 0 1.1rem;
}
.lede { font-size: 1.18rem; color: var(--ink-soft); }
.mono { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .86em; letter-spacing: -.02em; }
.serif-it { font-family: var(--display); font-style: italic; font-weight: 500; }

/* ---------------------------------------------------------------- shell */

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.6rem); }
.rule { border: 0; border-top: 2px solid var(--ink); margin: 0; opacity: .16; }
section { padding: clamp(3.4rem, 8vw, 6.5rem) 0; }

/* ------------------------------------------------------------------- nav */

.nav {
  display: flex; align-items: center; gap: 1.4rem;
  padding: 1.05rem clamp(1.1rem, 4vw, 2.6rem);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  position: sticky; top: 0; z-index: 60;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 34px; height: 34px; border: 2px solid var(--ink); border-radius: 50%;
  background: var(--signal); display: grid; place-items: center; flex: none;
  box-shadow: 2px 2px 0 var(--ink);
}
.brand-mark svg { width: 19px; height: 19px; display: block; }
.brand-name {
  font-family: var(--display); font-weight: 800; font-size: 1.32rem;
  letter-spacing: -.03em; font-variation-settings: 'SOFT' 20, 'WONK' 1;
}
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: .95rem; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--signal); }
@media (max-width: 860px) { .nav-links .hide-sm { display: none; } }

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.35rem; border: 2px solid var(--ink); border-radius: var(--r);
  background: var(--paper-2); font-weight: 700; font-size: .97rem; letter-spacing: -.01em;
  cursor: pointer; text-decoration: none; box-shadow: var(--shadow);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .15s;
}
.btn:hover  { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: var(--shadow); }
.btn-primary { background: var(--signal); color: #FFF6EF; }
.btn-primary:hover { background: var(--signal-dk); }
.btn-ink { background: var(--ink); color: var(--paper-2); }
.btn-lg { padding: 1.02rem 1.9rem; font-size: 1.06rem; }
.btn-sm { padding: .5rem .85rem; font-size: .87rem; box-shadow: 2px 2px 0 var(--ink); }
.btn-flat { box-shadow: none; background: transparent; }
.btn-flat:hover { background: var(--paper-3); box-shadow: none; transform: none; }

/* ----------------------------------------------------------------- cards */

.card {
  background: var(--paper-2); border: 2px solid var(--ink);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.pill {
  display: inline-flex; align-items: center; gap: .34rem;
  padding: .22rem .62rem; border: 1.5px solid var(--ink); border-radius: 100px;
  font-size: .78rem; font-weight: 600; background: var(--paper-2); white-space: nowrap;
}
.pill-sage   { background: var(--sage); color: #F2F6F3; border-color: var(--sage); }
.pill-sand   { background: var(--sand); }
.pill-signal { background: var(--signal); color: #FFF6EF; border-color: var(--signal-dk); }

/* ------------------------------------------------------------------ hero */

.hero { padding: clamp(2.6rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 4vw, 3.4rem); align-items: start;
}
.hero h1 span.ital { font-style: italic; font-weight: 500; color: var(--signal); }
.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; margin-top: 2rem; }
.stat-n {
  font-family: var(--display); font-size: 2.1rem; font-weight: 700; line-height: 1;
  font-variation-settings: 'SOFT' 20, 'WONK' 1;
}
.stat-l { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------- the body map picker */

.bodymap {
  border: 2px solid var(--ink); border-radius: var(--r-lg); background: var(--paper-2);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.1rem 1.3rem; position: relative;
}
.bodymap-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: .8rem; margin-bottom: .3rem;
}
.bodymap-head h4 { margin: 0; }
.bodymap-hint { font-size: .8rem; color: var(--ink-faint); }
.bodymap svg { display: block; width: 100%; height: auto; max-height: 58vh; margin: 0 auto; }
.bm-bone { stroke: var(--ink); stroke-width: 13; stroke-linecap: round; opacity: .13; }
.bm-part {
  fill: var(--paper); stroke: var(--ink); stroke-width: 2.4; cursor: pointer;
  transition: fill .16s var(--ease), transform .16s var(--ease);
  transform-box: fill-box; transform-origin: center;
}
.bm-part:hover { fill: var(--sand); transform: scale(1.07); }
.bm-part:focus-visible { outline: none; fill: var(--sand); stroke-width: 3.4; }
.bm-part.on { fill: var(--signal); stroke-width: 3; }
.bm-readout {
  margin-top: .5rem; text-align: center; font-weight: 700; min-height: 1.5em;
  font-size: .97rem; letter-spacing: -.01em;
}
.bm-readout em { font-family: var(--display); font-style: italic; color: var(--signal); }

/* ------------------------------------------------------- search console */

.console {
  border: 2px solid var(--ink); border-radius: var(--r-lg); background: var(--paper-2);
  box-shadow: var(--shadow-lg); padding: 1.15rem; margin-top: 1.9rem;
}
.console-row { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: .8rem; align-items: end; }
@media (max-width: 760px) { .console-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: .32rem; min-width: 0; position: relative; }
.field > label {
  font-size: .72rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-faint);
}
.input, select.input, textarea.input {
  width: 100%; padding: .72rem .85rem; border: 2px solid var(--ink);
  border-radius: var(--r); background: var(--paper); font-weight: 500;
  transition: box-shadow .14s, background .14s;
}
.input:focus { outline: none; background: var(--paper-2); box-shadow: 0 0 0 3px var(--sand); }
textarea.input { min-height: 92px; resize: vertical; }
.input-group { display: flex; }
.input-group .input { border-radius: var(--r) 0 0 var(--r); border-right-width: 1px; }
.input-group .btn { border-radius: 0 var(--r) var(--r) 0; box-shadow: none; }

.ac {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 40;
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--shadow); max-height: 250px; overflow: auto;
}
.ac:empty { display: none; }
.ac button {
  display: block; width: 100%; text-align: left; padding: .55rem .8rem;
  background: none; border: 0; border-bottom: 1px solid var(--paper-3);
  cursor: pointer; font-size: .93rem;
}
.ac button:last-child { border-bottom: 0; }
.ac button:hover, .ac button.sel { background: var(--sand); }

/* --------------------------------------------------------- how it works */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 1.5rem 1.4rem; position: relative; }
.step-n {
  font-family: var(--display); font-size: 3.4rem; font-weight: 800; line-height: .8;
  color: var(--signal); font-variation-settings: 'WONK' 1; margin-bottom: .5rem; display: block;
}
.step p { margin: 0; font-size: .98rem; color: var(--ink-soft); }

/* ---------------------------------------------------------- result cards */

.results-layout { display: grid; grid-template-columns: 268px 1fr; gap: 1.9rem; align-items: start; }
@media (max-width: 1020px) { .results-layout { grid-template-columns: 1fr; } }

.filters { padding: 1.2rem; position: sticky; top: 88px; }
.filters h4 { margin: 0 0 .9rem; }
.filter-block { padding: .9rem 0; border-top: 1.5px solid var(--paper-3); }
.filter-block:first-of-type { border-top: 0; padding-top: 0; }
.check { display: flex; align-items: center; gap: .55rem; padding: .22rem 0; cursor: pointer; font-size: .93rem; }
.check input { width: 17px; height: 17px; accent-color: var(--signal); flex: none; }
.range-out { font-weight: 700; font-family: var(--display); }
input[type=range] { width: 100%; accent-color: var(--signal); }

.results-bar {
  display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.results-bar .count { font-weight: 700; margin-right: auto; }

.plist { display: flex; flex-direction: column; gap: 1.1rem; }
.pcard {
  display: grid; grid-template-columns: 74px 1fr auto; gap: 1.1rem;
  padding: 1.2rem; text-decoration: none;
  transition: transform .14s var(--ease), box-shadow .14s var(--ease);
}
.pcard:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }
.pcard.is-featured { background: linear-gradient(180deg, var(--sand) 0 62px, var(--paper-2) 62px); }
@media (max-width: 700px) {
  .pcard { grid-template-columns: 58px 1fr; }
  .pcard-side { grid-column: 1 / -1; text-align: left !important; border-top: 1.5px solid var(--paper-3); padding-top: .8rem; }
}
.avatar {
  width: 74px; height: 74px; border: 2px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700;
  font-size: 1.6rem; flex: none; box-shadow: 2px 2px 0 var(--ink);
}
@media (max-width: 700px) { .avatar { width: 58px; height: 58px; font-size: 1.25rem; } }
.pcard-main h3 { margin: 0 0 .12rem; font-size: 1.28rem; }
.pcard-practice { font-size: .95rem; color: var(--ink-soft); margin: 0 0 .55rem; font-weight: 600; }
.pcard-tags { display: flex; gap: .38rem; flex-wrap: wrap; margin-bottom: .6rem; }
.pcard-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .88rem; color: var(--ink-soft); }
.pcard-side { text-align: right; display: flex; flex-direction: column; gap: .35rem; align-items: flex-end; }
@media (max-width: 700px) { .pcard-side { align-items: flex-start; } }
.price-n { font-family: var(--display); font-size: 1.85rem; font-weight: 700; line-height: 1; }
.price-l { font-size: .74rem; text-transform: uppercase; letter-spacing: .11em; color: var(--ink-faint); }
.stars { color: var(--signal); letter-spacing: -.06em; font-size: .95rem; }
.dist {
  font-weight: 700; font-size: .88rem; padding: .18rem .5rem;
  background: var(--ink); color: var(--paper-2); border-radius: 100px;
}
.next-slot { font-size: .86rem; color: var(--sage); font-weight: 700; }

#map { height: 420px; border: 2px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.leaflet-container { font-family: var(--ui); background: var(--paper-3); }
.map-pin {
  background: var(--signal); color: #FFF6EF; border: 2px solid var(--ink);
  border-radius: 100px; padding: 1px 7px; font-weight: 700; font-size: .8rem;
  box-shadow: 2px 2px 0 var(--ink); white-space: nowrap;
}

.empty { padding: 3rem 1.5rem; text-align: center; }
.empty h3 { margin-bottom: .4rem; }

/* --------------------------------------------------------- profile page */

.profile-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
@media (max-width: 1000px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-head { display: flex; gap: 1.3rem; align-items: flex-start; margin-bottom: 1.6rem; }
.profile-head .avatar { width: 96px; height: 96px; font-size: 2.1rem; }
.rates-table { width: 100%; border-collapse: collapse; }
.rates-table th, .rates-table td { padding: .62rem .2rem; text-align: left; border-bottom: 1.5px solid var(--paper-3); }
.rates-table th { font-size: .76rem; text-transform: uppercase; letter-spacing: .11em; color: var(--ink-faint); font-weight: 700; }
.rates-table td:last-child, .rates-table th:last-child { text-align: right; font-weight: 700; }
.review { padding: 1rem 0; border-bottom: 1.5px solid var(--paper-3); }
.review:last-child { border-bottom: 0; }
.review-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .3rem; }
.review-head strong { font-size: .96rem; }
.review p { margin: 0; font-size: .96rem; color: var(--ink-soft); }

/* booking panel */
.booker { padding: 1.3rem; position: sticky; top: 88px; }
.mode-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; }
.mode-toggle button { padding: .6rem; background: var(--paper); border: 0; cursor: pointer; font-weight: 700; font-size: .9rem; }
.mode-toggle button + button { border-left: 2px solid var(--ink); }
.mode-toggle button.on { background: var(--ink); color: var(--paper-2); }
.mode-toggle button:disabled { opacity: .4; cursor: not-allowed; }

.daystrip { display: flex; gap: .45rem; overflow-x: auto; padding: .2rem 0 .5rem; scrollbar-width: thin; }
.day {
  flex: none; width: 58px; padding: .45rem .2rem; border: 2px solid var(--ink);
  border-radius: var(--r); background: var(--paper); cursor: pointer; text-align: center; line-height: 1.2;
}
.day.on { background: var(--ink); color: var(--paper-2); }
.day .dw { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; opacity: .75; }
.day .dd { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.day .dn { font-size: .64rem; opacity: .7; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: .45rem; margin-top: .7rem; }
.slot {
  padding: .5rem .2rem; border: 2px solid var(--ink); border-radius: var(--r);
  background: var(--paper); cursor: pointer; font-weight: 700; font-size: .93rem;
  font-variant-numeric: tabular-nums;
}
.slot:hover { background: var(--sand); }
.slot.on { background: var(--signal); color: #FFF6EF; }

.total-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: .9rem 0; border-top: 2px solid var(--ink); margin-top: 1rem;
}
.total-row .price-n { font-size: 2.1rem; }

/* ----------------------------------------------------------------- modal */

.modal-back {
  position: fixed; inset: 0; z-index: 100; background: rgba(22, 19, 15, .55);
  display: grid; place-items: center; padding: 1.2rem;
  animation: fade .2s var(--ease);
}
.modal {
  width: min(520px, 100%); max-height: 92vh; overflow: auto;
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.6rem;
  animation: pop .28s var(--ease);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.modal-close { float: right; background: none; border: 0; cursor: pointer; font-size: 1.5rem; line-height: 1; }

/* stamped confirmation */
.stamp {
  border: 3px double var(--sage); color: var(--sage); border-radius: var(--r);
  padding: .5rem 1rem; display: inline-block; font-family: var(--display);
  font-weight: 700; font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase;
  transform: rotate(-2.4deg);
}

/* --------------------------------------------------------- join / wizard */

.wizard-steps { display: flex; gap: .5rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.wstep {
  display: flex; align-items: center; gap: .45rem; padding: .4rem .8rem;
  border: 2px solid var(--ink); border-radius: 100px; font-size: .86rem;
  font-weight: 700; background: var(--paper-2); opacity: .48;
}
.wstep.on   { opacity: 1; background: var(--ink); color: var(--paper-2); }
.wstep.done { opacity: 1; background: var(--sage); color: #F2F6F3; border-color: var(--sage); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .span2 { grid-column: 1 / -1; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }
.chipset { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  padding: .38rem .8rem; border: 2px solid var(--ink); border-radius: 100px;
  background: var(--paper-2); cursor: pointer; font-size: .88rem; font-weight: 600;
  transition: background .14s, transform .14s var(--ease);
}
.chip:hover { transform: translateY(-1px); }
.chip.on { background: var(--signal); color: #FFF6EF; border-color: var(--signal-dk); }
.hours-row { display: grid; grid-template-columns: 96px 1fr 1fr; gap: .5rem; align-items: center; margin-bottom: .45rem; }

/* ------------------------------------------------------------- pitch band */

.band { background: var(--ink); color: var(--paper); padding: clamp(3rem, 7vw, 5.5rem) 0; }
.band h2, .band h3 { color: var(--paper-2); }
.band .eyebrow { color: var(--sand); }
.band p { color: #CFC5B4; }
.band-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .band-grid { grid-template-columns: 1fr; } }
.tick-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.tick-list li { padding: .48rem 0 .48rem 2rem; position: relative; color: #DCD2C1; }
.tick-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--signal); font-weight: 700;
}

/* ----------------------------------------------------------- admin table */

.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.8rem; }
@media (max-width: 800px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
.kpi { padding: 1.1rem 1.2rem; }
.kpi .stat-n { font-size: 2.4rem; }
.table-wrap { overflow-x: auto; border: 2px solid var(--ink); border-radius: var(--r-lg); background: var(--paper-2); box-shadow: var(--shadow); }
table.data { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 640px; }
table.data th {
  text-align: left; padding: .7rem .9rem; background: var(--ink); color: var(--paper-2);
  font-size: .74rem; text-transform: uppercase; letter-spacing: .11em; white-space: nowrap;
}
table.data td { padding: .7rem .9rem; border-bottom: 1.5px solid var(--paper-3); }
table.data tr:last-child td { border-bottom: 0; }

/* ---------------------------------------------------------------- footer */

.foot { border-top: 2px solid var(--ink); padding: 2.4rem 0 3rem; font-size: .92rem; }
.foot-grid { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: space-between; }
.foot a { display: block; padding: .17rem 0; text-decoration: none; color: var(--ink-soft); }
.foot a:hover { color: var(--signal); }
.foot h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .13em; color: var(--ink-faint); }
.foot-note { margin-top: 2rem; color: var(--ink-faint); font-size: .84rem; }
.demo-flag {
  display: inline-block; padding: .2rem .6rem; border: 1.5px dashed var(--signal);
  border-radius: var(--r-sm); color: var(--signal); font-weight: 700; font-size: .76rem;
  letter-spacing: .08em; text-transform: uppercase;
}

/* ------------------------------------------------------------ animation */

.reveal { opacity: 0; transform: translateY(18px); animation: rise .7s var(--ease) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.d1 { animation-delay: .06s; } .d2 { animation-delay: .14s; }
.d3 { animation-delay: .22s; } .d4 { animation-delay: .3s; } .d5 { animation-delay: .38s; }
.skeleton { background: var(--paper-3); border-radius: var(--r); animation: pulse 1.1s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .45; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
}

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hidden { display: none !important; }
.err { color: var(--signal-dk); font-weight: 600; font-size: .9rem; }
