/* Mobile-first PTM class lookup */

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

:root {
  /* Soft palette from IHSB logo: forest green, crimson, terracotta */
  --ihsb-green: #3a6b52;
  --ihsb-green-deep: #2d5842;
  --ihsb-green-soft: #e8f2ec;
  --ihsb-red: #a84a52;
  --ihsb-red-soft: #faf0f1;
  --ihsb-gold: #c4895a;
  --ihsb-gold-soft: #faf4eb;
  --ihsb-gold-border: #e5d0b8;

  --bg: #f6f4f1;
  --bg-warm: #fdf9f4;
  --card: #fffcfa;
  --text: #2a2e2c;
  --muted: #5c6560;
  --border: #e5ddd4;
  --accent: var(--ihsb-green);
  --accent-soft: var(--ihsb-green-soft);
  --accent-event: var(--ihsb-red);
  --accent-desk: var(--ihsb-red);
  --ct-bg: var(--ihsb-gold-soft);
  --ct-border: var(--ihsb-gold);
  --shadow: 0 2px 10px rgba(58, 107, 82, 0.07);
  --radius: 12px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  /* Type scale ~1.2 ratio from 0.6875rem base labels */
  --text-2xs: 0.6875rem;
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.875rem;
  --text-md: 0.9375rem;
  --text-lg: 1rem;
  --text-xl: 1.125rem;
  --touch: 44px;
  --touch-compact: 40px;
  --page-pad: max(0.875rem, env(safe-area-inset-left, 0px));
  --page-pad-r: max(1rem, env(safe-area-inset-right, 0px));
  --page-pad-b: max(1.5rem, env(safe-area-inset-bottom, 0px));
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(
    165deg,
    var(--ihsb-gold-soft) 0%,
    var(--bg) 42%,
    var(--ihsb-green-soft) 100%
  );
  background-attachment: fixed;
  line-height: 1.45;
}

.page {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: max(0.75rem, env(safe-area-inset-top, 0px)) var(--page-pad)
    var(--page-pad-b) var(--page-pad-r);
}

.page--hall {
  max-width: 52rem;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tabs__btn {
  flex: 1;
  min-height: var(--touch-compact);
  padding: 0.45rem 0.65rem;
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: inherit;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.tabs__btn--active {
  color: #fff;
  background: var(--accent);
}

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

.view--hidden {
  display: none;
}

/* Site header — IHSB branding */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.85rem 0.75rem;
  background: linear-gradient(
    135deg,
    var(--bg-warm) 0%,
    var(--ihsb-green-soft) 55%,
    var(--ihsb-red-soft) 100%
  );
  border: 1px solid var(--border);
  border-top: 3px solid var(--ihsb-green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.site-header__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  background: transparent;
}

.site-header__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: transparent;
  /* Drop white JPEG box so logo sits on header gradient */
  mix-blend-mode: multiply;
}

.site-header__text {
  min-width: 0;
  width: 100%;
}

.site-header__school {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.site-header__event {
  margin: 0.3rem 0 0;
  font-size: clamp(0.875rem, 3.2vw, 1.05rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--accent-event);
}

.site-header__note {
  margin: 0.35rem 0 0;
  font-size: var(--text-2xs);
  font-weight: 600;
  color: var(--muted);
}

.site-header__subtitle {
  margin: 0.4rem 0 0;
  font-size: var(--text-sm);
  color: var(--muted);
}

@media (min-width: 480px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.85rem;
    padding: 1rem;
  }

  .site-header__logo {
    width: 72px;
    height: 72px;
  }
}

@supports not (mix-blend-mode: multiply) {
  .site-header__logo {
    mix-blend-mode: normal;
    border-radius: 50%;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.85rem;
}

.controls {
  margin-bottom: 0.65rem;
}

.controls__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-items: end;
}

.controls .field {
  gap: 0.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.field__label {
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* Chevron lives on the wrap so the select stays easy to tap */
.field__select-wrap {
  position: relative;
  display: block;
  min-width: 0;
}

.field__select-wrap::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 2rem;
  border-left: 1px solid var(--border);
  border-radius: 0 7px 7px 0;
  background: var(--ihsb-green-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%233a6b52' d='M1 .5l4 4 4-4'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 10px 6px;
  pointer-events: none;
}

.field__select {
  display: block;
  width: 100%;
  min-height: var(--touch-compact);
  padding: 0.5rem 2.35rem 0.5rem 0.65rem;
  font-size: var(--text-sm);
  font-family: inherit;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  background-color: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.field__select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field__select:disabled {
  opacity: 1;
  color: var(--muted);
  cursor: not-allowed;
  background-color: var(--bg);
}

.field__select-wrap:has(.field__select:disabled)::after {
  opacity: 0.5;
}

.field__select-wrap:has(.field__select:disabled) {
  opacity: 0.72;
}

.field__select-wrap:has(.field__select:focus)::after {
  border-left-color: var(--accent);
}

/* Mobile: roomier class/section pickers (16px avoids iOS focus zoom) */
@media (max-width: 639px) {
  .controls {
    padding: 0.75rem;
  }

  .controls .field__label {
    font-size: 0.625rem;
    letter-spacing: 0.055em;
    color: var(--ihsb-green-deep);
  }

  .controls .field__select-wrap {
    border-radius: 10px;
    box-shadow:
      0 1px 2px rgba(58, 107, 82, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .controls .field__select-wrap::after {
    width: 2.15rem;
    border-radius: 0 9px 9px 0;
    background-color: var(--accent-soft);
    border-left-color: var(--ihsb-gold-border);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%233a6b52' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' d='M2 2l4 4 4-4'/%3E%3C/svg%3E");
    background-size: 12px 8px;
  }

  .controls .field__select {
    min-height: 2.75rem;
    padding: 0.6rem 2.5rem 0.6rem 0.7rem;
    font-size: 1rem;
    font-weight: 600;
    border-width: 1.5px;
    border-color: var(--ihsb-gold-border);
    border-radius: 10px;
    background: linear-gradient(180deg, #fffefc 0%, var(--bg-warm) 100%);
    text-overflow: ellipsis;
  }

  .controls .field__select:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--accent-soft);
  }

  .controls .field__select-wrap:has(.field__select:focus) {
    box-shadow:
      0 0 0 3px var(--accent-soft),
      0 1px 3px rgba(58, 107, 82, 0.12);
  }

  .controls .field__select-wrap:has(.field__select:disabled) .field__select {
    background: var(--bg);
    border-color: var(--border);
  }
}

.field__input {
  width: 100%;
  min-height: var(--touch-compact);
  padding: 0.5rem 0.75rem;
  font-size: var(--text-sm);
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: 10px;
}

.field__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Hall map — compact, mobile-first */
.hall-panel {
  padding: 0.75rem;
}

.hall-panel__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hall-panel__hint {
  margin: 0;
  flex: 1 1 12rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

.hall-pdf-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  background: var(--accent-soft);
  border: 1px solid var(--ihsb-gold-border);
  border-radius: 8px;
}

.hall-pdf-btn:hover {
  background: var(--ihsb-gold-soft);
}

.hall-zoom {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.hall-zoom__btn {
  flex: 1;
  min-height: 2rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}

.hall-zoom__btn--active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.hall-search {
  margin-bottom: 0.5rem;
}

.hall-search .field__input {
  min-height: 2.5rem;
  font-size: 0.9rem;
}

.hall-scroll {
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-warm);
}

.hall-scroll--fit {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: min(72dvh, 520px);
  min-height: 12rem;
}

.hall-scroll--fit .hall-scroll__inner {
  transform-origin: top center;
  display: inline-block;
  width: max-content;
  max-width: none;
  margin: 0 auto;
  padding: 0.35rem 0.25rem;
}

.hall-scroll--large {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 70dvh;
  display: block;
}

.hall-scroll--large .hall-scroll__inner {
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0.35rem;
  transform: none !important;
}

.hall-scroll__inner {
  padding: 0.35rem 0.25rem;
}

.hall-zone-label {
  margin: 0 0 0.2rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: center;
}

.hall-zone-label--front {
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.hall-grid {
  display: grid;
  gap: 2px;
  margin: 0 auto;
}

.hall-grid--fit {
  grid-template-columns: repeat(11, 3.1rem);
  width: max-content;
}

.hall-grid--large {
  grid-template-columns: repeat(11, minmax(3.5rem, 1fr));
  width: max-content;
  gap: 0.35rem;
}

.hall-grid__spacer {
  min-height: 1.85rem;
  min-width: 0;
}

.hall-seat {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto;
  min-height: 1.85rem;
  padding: 2px 3px;
  text-align: left;
  font-family: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.12s, opacity 0.12s, box-shadow 0.12s, transform 0.12s;
}

.hall-seat__main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
  min-width: 0;
}

.hall-scroll--fit .hall-seat:active {
  transform: scale(0.97);
}

.hall-scroll--large .hall-seat:active {
  transform: scale(0.98);
}

.hall-seat:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.hall-seat--shared {
  background: var(--ihsb-green-soft);
  border-color: var(--ihsb-green);
}

.hall-seat--active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
  z-index: 1;
}

.hall-seat--dim {
  opacity: 0.25;
}

.hall-seat__desk {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 1.1rem;
  line-height: 1;
}

.hall-seat__desk-label {
  font-size: 0.34rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.hall-seat__desk-num {
  font-size: 0.55rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--accent-desk);
}

.hall-seat__names {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  word-break: break-word;
  hyphens: auto;
  text-align: left;
}

.hall-seat__names--short {
  font-size: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hall-seat__names--full {
  display: none;
  font-size: 0.45rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hall-seat__badge {
  align-self: flex-start;
  margin-top: 1px;
  padding: 0 0.15rem;
  font-size: 0.38rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ihsb-green-deep);
  line-height: 1.2;
}

.hall-seat__role {
  font-size: 0.36rem;
  color: var(--muted);
  text-transform: capitalize;
  line-height: 1.1;
  text-align: left;
}

/* Results */
.results__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.results__title {
  margin: 0;
  font-size: var(--text-lg);
  font-weight: 800;
}

.results__meta {
  margin: 0.35rem 0 0;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.4;
}

/* Mobile-first: card list (default) */
.teacher-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.teacher-list__item {
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-warm);
}

.teacher-list__item--ct {
  background: var(--ct-bg);
  border-color: var(--ct-border);
}

.teacher-list__subject {
  margin: 0 0 0.15rem;
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.teacher-list__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.teacher-list__teacher {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
}

.teacher-list__desk {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 2.5rem;
  text-align: right;
}

.teacher-list__desk-label {
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.2;
}

.teacher-list__desk-num {
  font-size: var(--text-md);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  color: var(--accent-desk);
}

.hall-legend {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

.badge-ct {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #7a5530;
  background: var(--ihsb-gold-soft);
  border: 1px solid var(--ihsb-gold-border);
  border-radius: 4px;
}

/* Table: hidden on mobile, shown on larger screens */
.table-wrap {
  display: none;
}

.badge-ct--inline {
  margin-top: 0;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.status {
  margin: 0.65rem 0 0;
  font-size: var(--text-sm);
  color: var(--muted);
  text-align: center;
}

.status--error {
  color: var(--ihsb-red);
}

.footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer__credit {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ihsb-green-deep);
}

.footer__credit-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.footer__credit-link:hover {
  color: var(--ihsb-green-deep);
  border-bottom-color: var(--ihsb-gold);
}

.footer__credit-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (min-width: 480px) {
  .controls__row {
    gap: 0.65rem;
  }

  .controls .field__select {
    min-height: var(--touch);
    padding: 0.55rem 2.4rem 0.55rem 0.75rem;
    font-size: var(--text-base);
  }

  .controls .field__select-wrap::after {
    width: 2.25rem;
  }

  .teacher-list__teacher {
    font-size: var(--text-base);
  }

  .teacher-list__desk-num {
    font-size: var(--text-lg);
  }

  .hall-seat__names--short {
    display: none;
  }

  .hall-seat__names--full {
    display: -webkit-box;
  }

  .hall-seat__desk-num {
    font-size: 0.65rem;
    min-width: 1.1rem;
  }

  .hall-seat__names--full {
    font-size: 0.48rem;
  }
}

@media (min-width: 640px) {
  .page--hall {
    max-width: 42rem;
  }

  .hall-panel {
    padding: 1rem;
  }

  .hall-grid {
    gap: 3px;
    max-width: 38rem;
  }

  .hall-seat {
    aspect-ratio: 1 / 1.2;
    padding: 3px 4px;
    border-radius: 6px;
  }

  .hall-seat__desk-num {
    font-size: 0.95rem;
  }

  .hall-seat__names--full {
    font-size: 0.55rem;
    -webkit-line-clamp: 3;
  }

  .hall-grid--fit {
    grid-template-columns: repeat(11, 3.25rem);
  }

  .hall-seat__desk-num {
    font-size: 0.7rem;
  }

  .hall-seat__names--full {
    font-size: 0.52rem;
  }

  .hall-scroll--large .hall-seat {
    min-width: 4.25rem;
    aspect-ratio: auto;
    min-height: 3.5rem;
  }
}

@media print {
  .tabs,
  .hall-search,
  .controls {
    display: none;
  }

  .hall-seat--dim {
    opacity: 1;
  }

  .hall-scroll {
    overflow: visible;
  }
}

/* Desktop: show table, hide list, denser layout */
@media (min-width: 640px) {
  .page:not(.page--hall) {
    max-width: 42rem;
    padding-top: 1rem;
  }

  .site-header {
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem;
  }

  .site-header__logo {
    width: 60px;
    height: 60px;
  }

  .site-header__event {
    font-size: 1.05rem;
  }

  .tabs {
    margin-bottom: 0.65rem;
  }

  .tabs__btn {
    min-height: var(--touch-compact);
    font-size: var(--text-sm);
  }

  .card {
    padding: 1rem;
  }

  .controls__row {
    gap: 0.75rem;
  }

  .controls .field__label {
    font-size: var(--text-xs);
  }

  .controls .field__select {
    font-size: var(--text-base);
  }

  .results__head {
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .results__title {
    font-size: var(--text-xl);
  }

  .teacher-list {
    display: none;
  }

  .table-wrap {
    display: block;
    overflow: auto;
    max-height: min(62vh, 480px);
    border: 1px solid var(--border);
    border-radius: 8px;
  }

  .table-wrap[hidden] {
    display: none;
  }

  .teacher-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
  }

  .teacher-table thead {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--ihsb-green-soft);
  }

  .teacher-table th {
    text-align: left;
    padding: 0.5rem 0.65rem;
    font-size: var(--text-2xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    border-bottom: 2px solid var(--border);
  }

  .teacher-table th.col-table {
    text-align: center;
    width: 4.5rem;
  }

  .teacher-table td {
    padding: 0.5rem 0.65rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }

  .teacher-table tbody tr:nth-child(even):not(.row--ct) {
    background: var(--bg-warm);
  }

  .teacher-table tbody tr.row--ct {
    background: var(--ct-bg);
  }

  .teacher-table .cell-table {
    text-align: center;
    font-size: var(--text-xl);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--accent-desk);
  }
}
