/* Katchi — Noir. Design direction 1b from the design canvas.
   Every colour, font and measure is a token; nothing below invents a raw value. */

:root {
  /* Palette — direction 1b */
  --ink:          #0e0d0c;
  --ink-raised:   #151311;
  --ink-hover:    #1c1917;
  --paper:        #f5efe6;
  --accent:       #ff4d74;

  --paper-70:     rgba(245, 239, 230, .7);
  --paper-55:     rgba(245, 239, 230, .55);
  --paper-45:     rgba(245, 239, 230, .45);
  --rule:         rgba(245, 239, 230, .12);
  --rule-strong:  rgba(245, 239, 230, .22);

  --font-display: 'Noto Serif Display', Georgia, 'Times New Roman', serif;
  --font-ui:      'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;

  /* Fluid type. Every step interpolates between 390px and 1600px, then holds —
     1600px is where --measure caps the text column, so growing past it would only
     make lines longer, not more readable. Nothing in this file is a fixed size. */
  --fs-xs:        clamp(.75rem,   .69rem  + .25vw, .9375rem);   /* kickers, flags, labels  12→15 */
  --fs-sm:        clamp(.8125rem, .752rem + .25vw, 1rem);       /* nav, buttons, tabs      13→16 */
  --fs-base:      clamp(.9375rem, .897rem + .17vw, 1.0625rem);  /* descriptions            15→17 */
  --fs-body:      clamp(1rem,     .96rem  + .17vw, 1.125rem);   /* running text            16→18 */
  --fs-dish:      clamp(1.125rem, 1.085rem + .17vw, 1.25rem);   /* dish + cocktail names   18→20 */
  --fs-price:     clamp(.9375rem, .877rem + .25vw, 1.125rem);   /* prices, paired to dish  15→18 */
  --fs-xl:        clamp(1.5rem,   1.26rem + .99vw, 2.25rem);    /* sub-headings            24→36 */
  --fs-display:   clamp(2.1rem,   1.65rem + 1.85vw, 3.5rem);    /* section titles       33.6→56 */
  --fs-hero:      clamp(1.125rem, 1.06rem + .27vw, 1.75rem);
  --fs-mono:      clamp(.875rem,  .835rem + .17vw, 1rem);       /* chips, small mono       14→16 */

  /* Layout. --pad-x is a gutter until the viewport passes --measure, then it becomes
     the margin that centres the content — so backgrounds stay full-bleed while text
     never sprawls across a 4K display. */
  /* Row rhythm for the flowed drink/wine lists. Sized to always clear the natural
     line height so every row is exactly one unit — that is what lets the two flowed
     columns land on the same lines instead of drifting half a row apart. */
  --row:          clamp(3rem, 2.85rem + .35vw, 3.5rem);

  --measure:      1600px;
  --gutter:       clamp(1.25rem, .4rem + 3.4vw, 3rem);
  --pad-x:        max(var(--gutter), calc((100% - var(--measure)) / 2));
  --pad-y:        clamp(2.25rem, 1.1rem + 4.4vw, 6rem);
  --gap:          clamp(1rem, .6rem + 1.6vw, 2rem);

  --header-h:     64px;
  --bottombar-h:  0px;
  --ease:         cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font: 300 var(--fs-body)/1.75 var(--font-ui);
  overflow-x: hidden;
  padding-bottom: var(--bottombar-h);
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { margin: 0; font-weight: 600; font-family: var(--font-display); line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

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

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--ink); padding: 1rem 1.25rem;
  font: 500 var(--fs-sm)/1 var(--font-ui); letter-spacing: .14em; text-transform: uppercase;
}
.skip:focus { left: 0; }

/* ── Shared primitives ──────────────────────────────────────────────────────── */

.kicker {
  margin: 0;
  font: 400 var(--fs-xs)/1 var(--font-ui);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--paper-45);
}
.kicker--accent { color: var(--accent); }

.section { padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--rule); }
.section--raised { background: var(--ink-raised); }
.section__head { margin-bottom: clamp(1.5rem, 1rem + 2vw, 2rem); }
.section__title { font-size: var(--fs-display); margin-top: .75rem; }
.section__sub { color: var(--paper-55); margin-top: .5rem; }

.section--split { display: grid; gap: var(--pad-y) clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 861px) {
  .section--split { grid-template-columns: 1fr 1fr; align-items: start; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: clamp(.95rem, 1.1vw, 1.25rem) clamp(1.6rem, 2vw, 2.25rem);
  border: 1px solid transparent;
  font: 500 var(--fs-sm)/1 var(--font-ui);
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { background: var(--accent); }
.btn--ghost { border-color: var(--rule-strong); color: var(--paper); background: none; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--block { width: 100%; }

/* ── Header ─────────────────────────────────────────────────────────────────── */

.header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .75rem var(--pad-x);
  min-height: var(--header-h);
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header__brand { display: block; flex: none; }
.header__brand img { height: 26px; width: auto; }
.header__nav { display: none; gap: 1.6rem; }
.header__nav a {
  font: 400 var(--fs-sm)/1 var(--font-ui); letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper-55); text-decoration: none; transition: color .2s var(--ease);
}
.header__nav a:hover { color: var(--accent); }
.header__actions { display: flex; align-items: center; gap: .625rem; flex: none; }
.header__cta { display: none; }

.lang {
  border: 1px solid var(--rule-strong); background: none; color: var(--paper);
  padding: .5rem .7rem; min-width: 44px; min-height: 36px;
  font: 500 var(--fs-xs)/1 var(--font-ui); letter-spacing: .1em; cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.lang:hover { border-color: var(--accent); color: var(--accent); }

.burger {
  width: 44px; height: 44px; flex: none;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--rule-strong); background: none; cursor: pointer;
}
.burger__bar { display: block; width: 18px; height: 1px; background: var(--paper); transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] .burger__bar:first-child { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:last-child { transform: translateY(-3px) rotate(-45deg); }

@media (min-width: 861px) {
  :root { --header-h: 76px; }
  .header__nav, .header__cta { display: flex; }
  .burger { display: none; }
  .header__brand img { height: 32px; }
}

.mobilenav {
  position: fixed; inset: var(--header-h) 0 0; z-index: 39;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
  padding: var(--pad-x);
}
.mobilenav[hidden] { display: none; }
body.is-locked { overflow: hidden; }
.mobilenav__links { display: flex; flex-direction: column; gap: 1.25rem; }
.mobilenav__links a {
  font: 600 clamp(1.5rem, 1.1rem + 2vw, 2.25rem)/1.1 var(--font-display); color: var(--paper); text-decoration: none;
}
.mobilenav__links a:hover { color: var(--accent); }

/* ── Hero ───────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  display: flex; align-items: flex-end;
  min-height: min(80svh, 680px);
  padding: var(--pad-y) var(--pad-x);
  background:
    linear-gradient(180deg, rgba(14,13,12,.45) 0%, rgba(14,13,12,.28) 30%, rgba(14,13,12,.78) 62%, rgba(14,13,12,.97) 100%),
    url('/assets/interior-hero-mobile.webp') 50% 38% / cover no-repeat,
    var(--ink-raised);
}
@media (min-width: 721px) {
  .hero {
    min-height: min(88svh, 940px);
    background:
      linear-gradient(180deg, rgba(14,13,12,.5) 0%, rgba(14,13,12,.28) 32%, rgba(14,13,12,.74) 62%, rgba(14,13,12,.96) 100%),
      url('/assets/interior-hero.webp') 50% 42% / cover no-repeat,
      var(--ink-raised);
  }
}
.hero__inner { animation: rise .8s var(--ease) both; }
.hero__logo {
  height: clamp(84px, 9.5vw, 200px); width: auto; max-width: 88%;
  object-fit: contain; margin: 1.1rem 0 0;
}
.hero__tagline { font-size: var(--fs-hero); color: var(--paper-70); margin-top: .9rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: clamp(1.4rem, 3vw, 2rem); }
.hero__actions .btn { flex: 1 1 auto; }
@media (min-width: 561px) { .hero__actions .btn { flex: 0 0 auto; } }

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ── Aktuální karta (1b) — sticky category tabs ─────────────────────────────── */
/* A sticky element cannot also be the horizontal scroll container, so the sticky
   wrapper and the scrolling strip are two separate elements. */

.tabs {
  position: sticky; top: calc(var(--header-h) - 1px); z-index: 30;
  isolation: isolate;
  margin-bottom: clamp(1.25rem, 2vw, 1.625rem);
}
/* Labels stay on the content column; the bar behind them spans the whole viewport. */
.tabs::before {
  content: ''; position: absolute; z-index: -1;
  top: 0; bottom: 0; left: 50%;
  width: 100vw; transform: translateX(-50%);
  background: var(--ink);
  border-bottom: 1px solid var(--rule-strong);
}
.tabs__strip {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tabs__strip::-webkit-scrollbar { display: none; }

/* Fade the trailing edge so the strip reads as scrollable rather than truncated. */
@media (max-width: 860px) {
  .tabs::after {
    content: ''; position: absolute; inset: 0 0 0 auto; width: 2.5rem;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--ink));
  }
  .tabs { position: sticky; }
}

.tab {
  flex: none;
  padding: .8rem 1.25rem;
  border: 0; background: none; cursor: pointer;
  font: 500 var(--fs-sm)/1 var(--font-ui);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--paper-55);
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.tab:hover { color: var(--accent); }
.tab[aria-selected="true"] { background: var(--accent); color: var(--ink); }

.panel[hidden] { display: none; }

.dishes { display: grid; gap: 0 clamp(2rem, 3vw, 4.5rem); }
@media (min-width: 861px) { .dishes { grid-template-columns: 1fr 1fr; } }

.dish { padding: clamp(1rem, 1.4vw, 1.5rem) 0; border-bottom: 1px solid var(--rule); transition: padding-left .25s var(--ease); }
.dish:hover { padding-left: .5rem; }
.dish__row { display: flex; align-items: baseline; gap: .875rem; }
.dish__title { font: 600 var(--fs-dish)/1.3 var(--font-display); color: var(--paper); }
.dish__leader { flex: 1; height: 1px; background: var(--rule-strong); }
.dish__price { font: 400 var(--fs-price)/1 var(--font-mono); color: var(--accent); white-space: nowrap; }
.dish__desc { color: var(--paper-55); margin-top: .4rem; max-width: 58ch; font-size: var(--fs-base); line-height: 1.65; }
.dish__note { font: 400 var(--fs-xs)/1 var(--font-mono); color: var(--paper-45); margin-top: .5rem; }

.group { margin-bottom: var(--row); }
.group__label {
  break-after: avoid;
  display: flex; align-items: flex-end; height: var(--row);
  font: 400 var(--fs-xs)/1 var(--font-ui); letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); padding-bottom: .625rem; border-bottom: 1px solid var(--rule-strong);
}
.line { display: flex; align-items: baseline; gap: .75rem; min-height: var(--row); padding: .625rem 0; border-bottom: 1px solid var(--rule); }
.line__name { color: var(--paper); font-size: var(--fs-base); }
.line__desc { color: var(--paper-45); font-size: var(--fs-base); }
.line__price { margin-left: auto; font: 400 var(--fs-mono)/1 var(--font-mono); color: var(--accent); white-space: nowrap; }
@media (min-width: 861px) { .panel--groups { columns: 2; column-gap: clamp(2rem, 3vw, 4.5rem); } }

.category-note { color: var(--paper-45); font-size: var(--fs-base); margin-bottom: 1.25rem; }

.degustation {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem; margin-top: clamp(1.875rem, 2.5vw, 2.75rem);
  border: 1px solid var(--rule-strong); padding: clamp(1.375rem, 1.8vw, 2rem) clamp(1.625rem, 2vw, 2.25rem);
}
.degustation__title { font: 600 var(--fs-xl)/1.15 var(--font-display); }
.degustation__note { color: var(--paper-55); margin-top: .5rem; font-size: var(--fs-base); max-width: 56ch; }
.degustation__price { font: 400 var(--fs-price)/1.6 var(--font-mono); color: var(--accent); }

/* ── Denní menu (1a layout, Noir palette) ───────────────────────────────────── */

.lunch__head { display: grid; gap: .875rem; }

.lunch__days { display: flex; gap: .375rem; margin-bottom: 1rem; }
.lunch__day-btn {
  flex: 1; padding: .7rem .25rem;
  border: 1px solid var(--rule-strong); background: none; color: var(--paper-70);
  cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.lunch__day-btn[aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.lunch__day-btn span { display: block; font: 500 var(--fs-sm)/1 var(--font-ui); }
.lunch__day-btn time { display: block; font: 400 var(--fs-xs)/1 var(--font-mono); opacity: .7; margin-top: .4rem; }

.lunch__grid { display: grid; gap: 1px; background: var(--rule); }
.lunch__day { background: var(--ink-raised); padding: clamp(1.375rem, 1.7vw, 2rem) clamp(1.125rem, 1.4vw, 1.75rem) clamp(1.625rem, 2vw, 2.25rem); }
.lunch__day-name { font: 500 var(--fs-xs)/1 var(--font-ui); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.lunch__day-date { font: 400 var(--fs-xs)/1 var(--font-mono); color: var(--paper-45); margin-top: .5rem; }
.lunch__rule { height: 1px; background: var(--rule-strong); margin: 1rem 0; }
.lunch__item { margin-bottom: .875rem; }
.lunch__item-name { font: 600 var(--fs-body)/1.35 var(--font-display); color: var(--paper); }
/* Reserve two lines only where five day columns must line up. On mobile a single day
   is shown, so the reserved line is just a gap between the name and its price. */
@media (min-width: 861px) { .lunch__item-name { min-height: 2.7em; } }
.lunch__item-price { font: 400 var(--fs-xs)/1 var(--font-mono); color: var(--paper-45); margin-top: .375rem; }
.lunch__day.is-today { background: var(--ink-hover); box-shadow: inset 2px 0 0 var(--accent); }
.lunch__today-flag { font: 400 var(--fs-xs)/1 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }

@media (max-width: 860px) {
  .lunch__day:not(.is-active) { display: none; }
  .lunch__day { background: var(--ink-hover); }
  .lunch__day.is-today { box-shadow: inset 2px 0 0 var(--accent); }
}
@media (min-width: 861px) {
  .lunch__days { display: none; }
  .lunch__grid { grid-template-columns: repeat(5, 1fr); }
}

/* ── Bar ────────────────────────────────────────────────────────────────────── */

.bar__grid { display: grid; gap: 1px; background: var(--rule); }
@media (min-width: 641px) { .bar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 981px) { .bar__grid { grid-template-columns: repeat(3, 1fr); } }
.cocktail { background: var(--ink); padding: clamp(1.375rem, 1.8vw, 2rem) clamp(1.25rem, 1.6vw, 1.875rem); transition: background .3s var(--ease); }
.cocktail:hover { background: var(--ink-hover); }
.cocktail__row { display: flex; justify-content: space-between; align-items: baseline; gap: .625rem; }
.cocktail__name { font: 600 var(--fs-dish)/1.25 var(--font-display); }
.cocktail__price { font: 400 var(--fs-price)/1 var(--font-mono); color: var(--accent); white-space: nowrap; }
.cocktail__desc { color: var(--paper-55); font-size: var(--fs-base); line-height: 1.65; margin-top: .625rem; }
.cocktail__flag {
  display: block; min-height: 1em; margin-bottom: .5rem;
  font: 400 var(--fs-xs)/1 var(--font-mono); letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
}
.bar__note { color: var(--paper-45); margin-top: 1.5rem; font-size: var(--fs-base); }

/* One column: drop the side padding so cocktails start on the same line as the karta
   list. The 1px grid gaps stay as full-width rules. */
@media (max-width: 640px) {
  .cocktail { padding-inline: 0; }
  /* The blank flag reserves a line so names align across columns; in one column it is
     just a gap above every non-signature cocktail. */
  .cocktail__flag:empty { display: none; }
}

/* ── Chef ───────────────────────────────────────────────────────────────────── */

@media (min-width: 861px) { .chef { align-items: center; } }

.chef__quote { margin: 1rem 0 .75rem; font: 600 var(--fs-xl)/1.4 var(--font-display); text-wrap: pretty; }
.chef__by { font: 500 var(--fs-xs)/1 var(--font-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.chef__body { color: var(--paper-55); margin-top: 1.25rem; }
/* Decorative, and hidden on phones at the client's request. Declaring it as a background
   inside the desktop media query means a phone never downloads it at all — an <img> in a
   display:none container is still fetched. */
.chef__media { display: none; }
@media (min-width: 861px) {
  .chef__media {
    display: block;
    aspect-ratio: 4 / 3;
    background: url('/assets/interior-tables.webp') center / cover no-repeat, var(--ink-raised);
  }
}

.elements { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--rule); margin-top: 1.75rem; }
.elements li { background: var(--ink); padding: clamp(.875rem, 1.2vw, 1.5rem) .25rem; text-align: center; }
.elements b { display: block; font: 600 var(--fs-dish)/1 var(--font-display); color: var(--accent); }
.elements span { display: block; font: 400 var(--fs-xs)/1.2 var(--font-ui); letter-spacing: .1em; text-transform: uppercase; color: var(--paper-70); margin-top: .5rem; }

/* ── Rezervace (1a layout, Noir palette) ────────────────────────────────────── */

.reserve__panel { border: 1px solid var(--rule-strong); padding: clamp(1.25rem, 3vw, 1.75rem); display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.reserve__row { display: grid; gap: 1.5rem; }
@media (min-width: 481px) { .reserve__row { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.reserve__panel[hidden] { display: none; }

.field { border: 0; padding: 0; margin: 0; display: grid; gap: .75rem; min-width: 0; align-content: start; }
.field__label { font: 400 var(--fs-xs)/1 var(--font-ui); letter-spacing: .2em; text-transform: uppercase; color: var(--paper-45); padding: 0; }
.field__input {
  width: 100%; background: none; color: var(--paper);
  border: 0; border-bottom: 1px solid var(--rule-strong);
  padding: .625rem 0; min-height: 44px;
  font: 300 var(--fs-body)/1 var(--font-ui);
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field__input:focus { border-bottom-color: var(--accent); }
select.field__input option { background: var(--ink-raised); color: var(--paper); }

.chips { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .375rem; }
.chip {
  min-width: 0; min-height: 46px; padding: 0 .25rem;
  border: 1px solid var(--rule-strong); background: none;
  color: var(--paper-70); cursor: pointer;
  font: 400 var(--fs-mono)/1 var(--font-mono);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* Five slots in one row cannot carry 14px mono below ~360px. Must come after .chip's own
   font declaration — same specificity, so source order decides. */
@media (max-width: 359px) {
  .chips { gap: .25rem; }
  .chip { font-size: var(--fs-xs); padding-inline: 0; }
}

.reserve__error { color: var(--accent); font-size: var(--fs-base); }
.reserve__error[hidden] { display: none; }

.reserve__done { gap: .75rem; }
.reserve__done-title { font: 600 var(--fs-xl)/1.15 var(--font-display); }
.reserve__done-lead { color: var(--paper-55); font-size: var(--fs-base); }
.reserve__done-slot { font: 400 var(--fs-dish)/1.5 var(--font-mono); color: var(--accent); }
.reserve__demo { border-top: 1px solid var(--rule); padding-top: 1rem; color: var(--paper-45); font-size: var(--fs-base); line-height: 1.7; }
.reserve__done-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.reserve__done-actions .btn { flex: 1 1 10rem; }

.contact__body { font-style: normal; color: var(--paper-70); line-height: 1.9; margin-top: 1rem; }
.contact__body a { color: var(--paper); text-decoration: none; }
.contact__body a:hover { color: var(--accent); }
.contact__rule { height: 1px; background: var(--rule); margin: 1.25rem 0; }

/* ── Footer and mobile bottom bar ───────────────────────────────────────────── */

.footer {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem; justify-content: space-between;
  padding: 1.75rem var(--pad-x);
  border-top: 1px solid var(--rule);
  color: var(--paper-45); font-size: var(--fs-base);
}
.footer__credit { font-family: var(--font-mono); letter-spacing: .08em; font-size: var(--fs-xs); }
.footer__credit a {
  color: var(--paper-70); text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.footer__credit a:hover { color: var(--accent); border-color: var(--accent); }

.bottombar {
  position: fixed; inset: auto 0 0; z-index: 38;
  display: flex; gap: 1px; background: var(--rule);
  border-top: 1px solid var(--rule);
}
.bottombar__item {
  flex: 1; text-align: center; text-decoration: none;
  background: var(--ink); color: var(--paper);
  padding: 1.125rem 0;
  font: 500 var(--fs-sm)/1 var(--font-ui); letter-spacing: .12em; text-transform: uppercase;
}
.bottombar__item--accent { flex: 1.2; background: var(--accent); color: var(--ink); }

@media (max-width: 860px) { :root { --bottombar-h: 52px; } }
@media (min-width: 861px) { .bottombar { display: none; } }
