@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  color-scheme: dark;
  --bg: #090807;
  --surface: #141210;
  --surface-2: #1d1a17;
  --line: rgba(244, 237, 225, 0.14);
  --text: #f4ede1;
  --muted: rgba(244, 237, 225, 0.72);
  --ember: #d84a22;
  --flame: #f07a28;
  --paper: #d8c6a4;
  --brass: #b28b54;
}

* {
  box-sizing: border-box;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(216, 198, 164, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(216, 198, 164, 0.02) 1px, transparent 1px),
    #090a0a;
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--text);
  font-family: var(--font-montserrat), sans-serif;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

body > main {
  flex: 1 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #f07a28;
  outline-offset: 3px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: #f07a28;
}

.site-container {
  width: min(1200px, calc(100% - 32px));
  min-width: 0;
  margin: 0 auto;
}

.site-container > * {
  min-width: 0;
}

.site-logo {
  display: block;
  position: relative;
  z-index: 1;
  width: auto;
  height: 64px;
  max-height: none;
  transform: translateY(8px);
}

.footer-logo {
  display: block;
  width: 126px;
  height: auto;
}

.footer-contacts {
  justify-self: start;
}

.footer-subfooter a {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-contacts {
    justify-self: end;
  }
}

@media (max-width: 767px) {
  .footer-subfooter .site-container {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
}

.section {
  padding: clamp(56px, 7vw, 104px) 0;
}

.eyebrow {
  color: var(--flame);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(19, 19, 18, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.button {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-weight: 400;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 180ms ease, background-position 320ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  border: 1px solid rgba(240, 122, 40, 0.5);
  background: linear-gradient(110deg, #d94b1e 0%, #f47a28 48%, #d94b1e 100%);
  background-size: 220% 100%;
  background-position: 0 50%;
  color: #fffaf4;
  box-shadow: 0 12px 36px rgba(216, 74, 34, 0.24);
}

.button-primary:hover {
  background-position: 100% 50%;
  border-color: rgba(255, 177, 112, 0.78);
  box-shadow: 0 0 0 1px rgba(240, 122, 40, 0.18), 0 14px 38px rgba(216, 74, 34, 0.34);
}

.button-secondary {
  border: 1px solid rgba(244, 237, 225, 0.2);
  background: rgba(244, 237, 225, 0.07);
}

.button-secondary:hover {
  border-color: rgba(244, 237, 225, 0.38);
  background: rgba(244, 237, 225, 0.11);
  box-shadow: inset 0 0 0 1px rgba(244, 237, 225, 0.04), 0 0 24px rgba(244, 237, 225, 0.06);
}

.menu-cta {
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease, color 180ms ease, transform 180ms ease;
}

.menu-cta:hover,
.menu-cta:focus-visible {
  border-color: rgba(240, 122, 40, 0.55);
  box-shadow: 0 0 0 1px rgba(240, 122, 40, 0.12), 0 8px 24px rgba(216, 74, 34, 0.18);
  transform: translateY(-1px);
}

.menu-cta-arrow {
  transition: transform 180ms ease;
}

.menu-cta:hover .menu-cta-arrow,
.menu-cta:focus-visible .menu-cta-arrow {
  transform: translateX(3px);
}

.cursor-tooltip {
  position: fixed;
  z-index: 100;
  pointer-events: none;
  max-width: 220px;
  border: 1px solid rgba(240, 122, 40, 0.42);
  border-radius: 4px;
  background: rgba(20, 18, 16, 0.96);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  color: var(--text);
  padding: 7px 9px;
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
}

.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.button-ghost {
  border: 1px solid transparent;
  background: transparent;
}

.button-ghost:hover {
  background: rgba(244, 237, 225, 0.06);
  color: var(--flame);
}

.input {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(244, 237, 225, 0.18);
  border-radius: 6px;
  background: rgba(9, 8, 7, 0.7);
  color: var(--text);
  padding: 0.75rem 0.85rem;
}

.search-input {
  padding-left: 2.6rem;
}

.menu-toolbar {
  isolation: isolate;
  background: rgba(9, 10, 10, 0.86);
  box-shadow: 0 16px 28px rgba(5, 5, 5, 0.52);
  -webkit-backdrop-filter: blur(20px) saturate(0.72);
  backdrop-filter: blur(20px) saturate(0.72);
}

.hero-welcome {
  color: #fff;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.hero-copy {
  margin-bottom: clamp(0.75rem, 8svh, 3.5rem);
}

.history-heading {
  text-align: center;
  font-size: 1.35rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .history-heading {
    font-size: 2.15rem;
    line-height: 1.2;
  }
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brass);
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.7;
}

.divider span {
  color: var(--flame);
  font-size: 0.58rem;
  line-height: 1;
}

.order-label {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
}

.order-badge {
  position: relative;
  top: -0.7rem;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(240, 122, 40, 0.62);
  border-radius: 999px;
  background: rgba(240, 122, 40, 0.14);
  color: #fff;
  padding: 7px 13px;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .order-label {
    font-size: 1.45rem;
  }
}

.menu-tabs-next {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  width: 48px;
  height: calc(100% - 4px);
  align-items: center;
  justify-content: flex-end;
  border: 0;
  background: linear-gradient(90deg, rgba(9, 10, 10, 0), rgba(9, 10, 10, 0.96) 42%);
  color: var(--flame);
  cursor: pointer;
  transition: color 160ms ease;
}

.header-social {
  display: none;
  border-color: rgba(244, 237, 225, 0.35);
  background: rgba(15, 15, 14, 0.78);
  color: var(--text);
}

.header-social:hover {
  border-color: rgba(240, 122, 40, 0.62);
  background: rgba(240, 122, 40, 0.14);
  color: var(--flame);
}

.social-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.social-icon-telegram {
  width: 21px;
  height: 21px;
}

.header-desktop-nav {
  display: none;
}

.header-mobile-menu {
  display: block;
  background: #090807;
}

.header-mobile-backdrop {
  position: fixed;
  inset: 56px 0 0;
  z-index: 45;
  pointer-events: auto;
  background: rgba(9, 8, 7, 0.42);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

body:has(.header-mobile-backdrop) main,
body:has(.header-mobile-backdrop) footer {
  filter: blur(7px);
  transition: filter 180ms ease;
  pointer-events: none;
}

.header-menu-toggle {
  display: inline-flex;
}

@media (min-width: 920px) {
  .header-desktop-nav {
    display: flex;
  }

  .header-mobile-menu {
    display: none;
  }

  .header-menu-toggle {
    display: none;
  }
}

@media (min-width: 1040px) {
  .header-social {
    display: inline-flex;
  }
}

.menu-tabs-next:hover {
  color: #ffb170;
}

.gallery-close {
  position: absolute !important;
  z-index: 30 !important;
  top: calc(16px + env(safe-area-inset-top));
  right: calc(16px + env(safe-area-inset-right));
  left: auto;
}

@media (min-width: 768px) {
  .gallery-close {
    top: calc(24px + env(safe-area-inset-top));
    right: calc(32px + env(safe-area-inset-right));
  }
}

.muted {
  color: var(--muted);
}

.display-title {
  font-family: var(--font-montserrat), sans-serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.display-title.history-heading {
  line-height: 1.2;
}

@media (min-width: 768px) {
  .display-title.history-heading {
    line-height: 1.2;
  }
}

.icon-button {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 237, 225, 0.18);
  border-radius: 6px;
  background: rgba(15, 15, 14, 0.78);
  color: var(--text);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.icon-button:hover,
.icon-button.is-active {
  border-color: rgba(240, 122, 40, 0.62);
  background: rgba(240, 122, 40, 0.14);
  color: var(--flame);
  box-shadow: inset 0 0 0 1px rgba(240, 122, 40, 0.08), 0 0 22px rgba(240, 122, 40, 0.12);
}

/* Header controls must override the base .icon-button display rule. */
.header-menu-toggle {
  display: inline-flex;
}

.header-social {
  display: none;
}

@media (min-width: 920px) {
  .header-menu-toggle {
    display: none;
  }
}

@media (min-width: 1040px) {
  .header-social {
    display: inline-flex;
  }
}

.icon-button-primary {
  border-color: #e95e24;
  background: #e95e24;
  color: white;
}

.icon-button-primary:hover {
  background: #f06b2d;
  color: white;
  border-color: rgba(255, 197, 148, 0.8);
  box-shadow: 0 0 0 1px rgba(240, 122, 40, 0.18), 0 0 24px rgba(240, 122, 40, 0.3);
}

.booking-button {
  width: auto;
  flex-basis: auto;
  gap: 8px;
  padding: 0 13px;
}

@media (max-width: 1039px) {
  .booking-button {
    width: 44px;
    flex-basis: 44px;
    gap: 0;
    padding: 0;
  }

  .booking-label {
    display: none;
  }
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 90;
  right: 0;
  bottom: calc(100% + 8px);
  width: max-content;
  max-width: 180px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #242321;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1;
}

.dish-modal-close[data-tooltip]::after,
.booking-modal-heading [data-tooltip]::after {
  top: calc(100% + 8px);
  right: 0;
  bottom: auto;
}

.dish-modal-close[data-tooltip]:hover::after,
.dish-modal-close[data-tooltip]:focus-visible::after,
.booking-modal-heading [data-tooltip]:hover::after,
.booking-modal-heading [data-tooltip]:focus-visible::after {
}

header [data-tooltip]::after {
  top: calc(100% + 8px);
  right: 0;
  bottom: auto;
}

header [data-tooltip]:hover::after,
header [data-tooltip]:focus-visible::after {
}

.dish-card {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #121211;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.dish-card:hover {
  border-color: rgba(240, 122, 40, 0.32);
  background: #151412;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(240, 122, 40, 0.04);
}

.dish-card-image {
  filter: saturate(0.94) brightness(0.96);
  transition: filter 260ms ease;
}

.dish-card:hover .dish-card-image {
  filter: saturate(1.08) brightness(1.04);
}

.dish-card-compact {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  grid-template-rows: minmax(44px, auto) auto;
  gap: 8px 12px;
  align-items: start;
  padding: 10px;
}

.dish-compact-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  grid-row: 1 / span 2;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(244, 237, 225, 0.12);
  border-radius: 5px;
  background: var(--surface-2);
}

.dish-card-compact > strong {
  align-self: start;
  padding-top: 1px;
  line-height: 1.25rem;
}

.dish-compact-thumb:hover {
  border-color: rgba(240, 122, 40, 0.52);
  box-shadow: 0 0 20px rgba(240, 122, 40, 0.12);
}

.dish-compact-hit {
  position: absolute;
  left: 4px;
  bottom: 4px;
  border-radius: 3px;
  background: rgba(233, 94, 36, 0.94);
  padding: 2px 5px;
  color: white;
  font-size: 0.55rem;
  font-weight: 400;
  text-transform: uppercase;
}

.dish-compact-actions {
  display: flex;
  grid-column: 2 / span 2;
  justify-content: flex-end;
  gap: 6px;
  padding-top: 7px;
  border-top: 1px solid rgba(244, 237, 225, 0.08);
}

.dish-compact-actions .icon-button {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.dish-card > div:last-child {
  flex: 1;
}

.dish-badge {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  border-radius: 4px;
  padding: 0 9px;
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
}

.dish-badge-hot { background: #e95e24; color: white; }
.dish-badge-new { background: #b7c9aa; color: #111410; }

.dish-meta {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(244, 237, 225, 0.12);
  border-radius: 4px;
  padding: 3px 8px;
}

.dish-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 20px;
  background: rgba(4, 5, 5, 0.84);
  backdrop-filter: blur(12px);
  animation: modal-fade 160ms ease both;
}

.dish-modal-panel {
  position: relative;
  display: grid;
  width: min(900px, 100%);
  max-height: min(720px, calc(100dvh - 40px));
  overflow: hidden;
  border: 1px solid rgba(244, 237, 225, 0.18);
  border-radius: 8px;
  background: #121211;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58);
  animation: modal-rise 200ms ease both;
}

.dish-modal-media { position: relative; min-height: 300px; background: var(--surface-2); }
.dish-modal-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9, 8, 7, 0.5), transparent 45%); }
.dish-modal-close { position: absolute; z-index: 2; top: 12px; right: 12px; background: rgba(9, 8, 7, 0.82); }
.dish-modal-content { min-width: 0; overflow-y: auto; padding: 24px; }

.dish-modal-price {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(240, 122, 40, 0.36);
  border-radius: 6px;
  background: rgba(240, 122, 40, 0.1);
  padding: 7px 10px;
  color: var(--flame);
  font-size: 1.05rem;
  font-weight: 400;
  white-space: nowrap;
}

.quantity-control {
  display: grid;
  height: 48px;
  grid-template-columns: 40px 34px 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0d0d0c;
  text-align: center;
}
.quantity-control button { display: grid; height: 100%; place-items: center; color: var(--muted); }
.quantity-control button:hover { color: var(--flame); }
.quantity-control span { font-weight: 400; }

.font-semibold,
.font-bold,
.font-extrabold,
.font-black {
  font-weight: 400 !important;
}

.booking-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 20px;
  background: rgba(4, 5, 5, 0.86);
  backdrop-filter: blur(12px);
  animation: modal-fade 160ms ease both;
}

.booking-modal-panel {
  width: min(760px, 100%);
  max-height: calc(100dvh - 40px);
  overflow: hidden;
  border: 1px solid rgba(244, 237, 225, 0.18);
  border-radius: 8px;
  background: #121211;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58);
  animation: modal-rise 200ms ease both;
}

.booking-modal-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid rgba(244, 237, 225, 0.12);
  padding: 20px;
}

.booking-modal-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 6px;
  background: rgba(240, 122, 40, 0.14);
  color: var(--flame);
}

.booking-modal-body {
  max-height: calc(100dvh - 210px);
  overflow-y: auto;
  padding: 20px;
}

.cart-line-shell {
  display: grid;
  min-height: 0;
  grid-template-rows: 1fr;
  opacity: 1;
  filter: blur(0);
  transition: grid-template-rows 240ms ease, opacity 180ms ease, filter 180ms ease;
}

.cart-line-shell > * {
  min-height: 0;
  overflow: hidden;
}

.cart-line-shell.is-removing {
  /* Keep the card in place until the undo placeholder replaces it. */
  opacity: 1;
  filter: none;
}

.undo-button {
  position: relative;
  overflow: hidden;
  border-color: rgba(240, 122, 40, 0.5);
  background: rgba(120, 45, 20, 0.42);
}

.undo-button:hover {
  background: rgba(120, 45, 20, 0.42);
}

.undo-button-fill {
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  background: linear-gradient(110deg, #d94b1e, #f47a28);
  transition: none;
}

.hero-facts {
  display: grid;
  border-right: 1px solid rgba(244, 237, 225, 0.18);
  border-left: 1px solid rgba(244, 237, 225, 0.18);
  border-top: 1px solid rgba(244, 237, 225, 0.18);
  border-bottom: 1px solid rgba(244, 237, 225, 0.18);
}
.hero-facts > * { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 10px; padding: 11px 12px; color: rgba(244, 237, 225, 0.7); font-size: 0.78rem; text-align: center; }
.hero-facts svg { flex: 0 0 auto; color: var(--flame); }

@keyframes modal-fade { from { opacity: 0; } }
@keyframes modal-rise { from { opacity: 0; transform: translateY(12px) scale(0.985); } }

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(216, 198, 164, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(216, 198, 164, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 68% 40%, black, transparent 68%);
  pointer-events: none;
}

.no-scrollbar {
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.mobile-safe-pad {
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
}

.button:has(.lucide-pencil) {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  font-size: 0;
  line-height: 1;
  padding: 0 !important;
}

.button:has(.lucide-pencil) > .lucide-pencil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 17px;
  margin: 0;
  transform: translate(-50%, -50%) !important;
}

@media (min-width: 768px) {
  .dish-modal-panel { grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); }
  .dish-modal-media { min-height: 560px; }
  .dish-modal-content { padding-top: 12px; padding-right: 64px; }
  .hero-facts { grid-template-columns: 0.8fr 1.45fr 1fr 1fr; }
  .hero-copy { margin-bottom: 0; }
  .hero-facts > * { padding: 13px 18px; border-right: 1px solid rgba(244, 237, 225, 0.12); }
  .hero-facts > *:last-child { border-right: 0; }
  .dish-card-featured { display: grid; }
  .mobile-safe-pad {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .dish-modal { align-items: end; padding: 0; }
  .dish-modal-panel { width: 100%; max-height: 92dvh; border-radius: 8px 8px 0 0; }
  .dish-modal-media { min-height: 34dvh; }
  .dish-modal-content { padding: 20px 16px calc(20px + env(safe-area-inset-bottom)); }
  .dish-modal-heading { display: block; }
  .dish-modal-heading .dish-modal-price { margin-top: 14px; border-top: 1px solid rgba(244, 237, 225, 0.12); padding-top: 12px; }
  .booking-modal { align-items: end; padding: 0; }
  .booking-modal-panel { width: 100%; max-height: 94dvh; border-radius: 8px 8px 0 0; }
  .booking-modal-heading { grid-template-columns: minmax(0, 1fr) 44px; gap: 12px; padding: 16px; }
  .booking-modal-icon { display: none; }
  .booking-modal-body { max-height: calc(94dvh - 142px); padding: 16px 16px calc(20px + env(safe-area-inset-bottom)); }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts > * { display: none; }
  .hero-facts > *:nth-child(3) { display: flex; padding: 13px 10px; }
}

@media (max-width: 420px) {
  header .site-container { gap: 8px; }
  header .site-container > a:first-child { gap: 7px; }
  header .site-container > a:first-child img { width: 34px; height: 34px; }
  header .site-container > a:first-child span { font-size: 1rem; }
  .header-actions { gap: 6px; }
  .header-actions .icon-button { width: 40px; height: 40px; flex-basis: 40px; }
  header [data-tooltip]::after { max-width: 128px; font-size: 0.68rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
