  :root {
    --stage: #14151b;
    --screen: #eef1f5;
    --ink: #1a1c22;
    --paper: #e7e9ee;
    --marquee: #c8912f;
    --marquee-strong: #a97620;
    --sage: #3f6b53;

    --bg: var(--screen);
    --fg: var(--ink);
    --surface: #ffffff;
    --surface-2: #e3e6ec;
    --border: #d1d5dd;
    --muted: #5b6270;
    --accent: var(--marquee);
    --accent-strong: var(--marquee-strong);
    --accent-ink: #3c2a0c;
    --accent-soft: rgba(200, 145, 47, 0.16);
    --good: var(--sage);
    --good-soft: rgba(63, 107, 83, 0.14);
    --shadow: 0 1px 2px rgba(20, 21, 27, 0.06), 0 8px 24px rgba(20, 21, 27, 0.06);
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --bg: var(--stage);
      --fg: var(--paper);
      --surface: #1b1d25;
      --surface-2: #23252f;
      --border: #34363f;
      --muted: #9aa0af;
      --accent: #dba53c;
      --accent-strong: #e8b955;
      --accent-ink: #2c2005;
      --accent-soft: rgba(219, 165, 60, 0.16);
      --good: #86c2a0;
      --good-soft: rgba(134, 194, 160, 0.14);
      --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.35);
    }
  }
  :root[data-theme="dark"] {
    --bg: var(--stage);
    --fg: var(--paper);
    --surface: #1b1d25;
    --surface-2: #23252f;
    --border: #34363f;
    --muted: #9aa0af;
    --accent: #dba53c;
    --accent-strong: #e8b955;
    --accent-ink: #2c2005;
    --accent-soft: rgba(219, 165, 60, 0.16);
    --good: #86c2a0;
    --good-soft: rgba(134, 194, 160, 0.14);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.35);
  }
  :root[data-theme="light"] {
    --bg: var(--screen);
    --fg: var(--ink);
    --surface: #ffffff;
    --surface-2: #e3e6ec;
    --border: #d1d5dd;
    --muted: #5b6270;
    --accent: var(--marquee);
    --accent-strong: var(--marquee-strong);
    --accent-ink: #3c2a0c;
    --accent-soft: rgba(200, 145, 47, 0.16);
    --good: var(--sage);
    --good-soft: rgba(63, 107, 83, 0.14);
    --shadow: 0 1px 2px rgba(20, 21, 27, 0.06), 0 8px 24px rgba(20, 21, 27, 0.06);
  }

  * { box-sizing: border-box; }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  .page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  @media (max-width: 640px) {
    .page { padding-left: 12px; padding-right: 12px; }
  }

  a {
    color: var(--fg);
    text-decoration: underline;
    text-decoration-color: var(--border);
    text-underline-offset: 2px;
  }
  a:hover { color: var(--accent-strong); text-decoration-color: var(--accent); }
  a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

  .eyebrow {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-strong);
    margin: 0 0 10px;
  }
  .eyebrow a { color: inherit; text-decoration: none; }
  .eyebrow a:hover { text-decoration: underline; }

  h1 {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    text-wrap: balance;
    margin: 0 0 12px;
  }
  h1 .h1-location { color: var(--accent-strong); }
  h1 .h1-asterisk { font-size: 0.75em; font-weight: 900; vertical-align: text-top; color: var(--accent-strong); }

  .header-nav-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .breadcrumb {
    font-size: 0.82rem;
    color: var(--muted);
  }
  .breadcrumb a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--border); }
  .breadcrumb a:hover { color: var(--accent-strong); border-color: var(--accent); }
  .breadcrumb__sep { margin: 0 6px; opacity: 0.5; }
  .breadcrumb__current { color: var(--fg); font-weight: 600; }

  .city-switcher { position: relative; margin-left: auto; }
  .city-switcher__panel { max-height: 320px; overflow-y: auto; }
  .city-switcher__link {
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.84rem;
    text-decoration: none;
    color: var(--fg);
  }
  .city-switcher__link:hover { background: var(--surface-2); }
  .city-switcher__link--city { padding-left: 20px; font-size: 0.82rem; color: var(--muted); }
  .city-switcher__link.is-current { color: var(--accent-strong); font-weight: 700; }

  .page-switch {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: var(--surface-2);
    border-radius: 999px;
  }
  .page-switch__link {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
  }
  .page-switch__link:hover { color: var(--fg); }
  .page-switch__link.is-active {
    background: var(--surface);
    color: var(--fg);
    box-shadow: var(--shadow);
  }
  .page-switch__link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

  .city-intro {
    max-width: 68ch;
    margin: 20px 0 0;
    font-size: 1rem;
    color: var(--fg);
    line-height: 1.65;
  }

  /* ---- venue cards ---- */
  .venues {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
  }

  .venue-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .venue-card.is-hidden { display: none; }

  .venue-detail-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg);
    padding-top: 16px;
    padding-bottom: 12px;
    margin-top: -16px;
    margin-bottom: -12px;
    border-bottom: 1px solid var(--border);
  }

  .venue-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -12px;
  }
  .venue-main, .venue-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .venue-aside { order: -1; }

  @media (min-width: 900px) {
    .venue-detail {
      display: grid;
      grid-template-columns: 1fr 320px;
      align-items: start;
      gap: 32px;
    }
    .venue-aside {
      order: 0;
      position: sticky;
      top: 160px;
    }
  }

  .venue-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }

  .venue-card__name {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: 1.4rem;
    margin: 0 0 4px;
  }
  .venue-card__name a { color: inherit; text-decoration: none; }
  .venue-card__name a:hover { color: var(--accent-strong); text-decoration: underline; }
  .venue-card__name a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

  .venue-card__category {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
  }
  .venue-card__category .flag { margin-left: 4px; margin-right: 4px; }
  .venue-flag-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: -5px;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .pill--closed { background: var(--surface-2); color: var(--muted); }
  .pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
  }

  .venue-card__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .card-stat { display: flex; align-items: center; gap: 8px; }
  .card-stat__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    color: var(--accent-strong);
  }
  .card-stat__text { font-size: 0.88rem; color: var(--fg); }
  .card-stat__text b { font-weight: 700; font-variant-numeric: tabular-nums; }

  .venue-card__desc {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
  }

  .venue-detail__lead {
    margin: 0;
    font-size: 1rem;
    color: var(--fg);
    line-height: 1.65;
    max-width: 68ch;
  }

  .venue-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-tile {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 20px;
  }
  .stat-tile__value {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    font-variant-numeric: tabular-nums;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
  }
  .stat-tile__label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0 16px;
  }
  .contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }
  .contact-row + .contact-row { border-top: 1px solid var(--border); }
  .contact-row__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    color: var(--accent-strong);
  }
  .contact-row__text {
    font-size: 0.88rem;
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .contact-row__extra {
    font-size: 0.78rem;
    margin-left: 4px;
  }

  /* ---- compare toolbar ---- */
  .compare, .directory { display: flex; flex-direction: column; gap: 14px; }

  .compare-head {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
  }
  #row-count, #directory-count {
    font-size: 0.82rem;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
  }

  .toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  #search {
    flex: 1 1 220px;
    min-width: 200px;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--fg);
    font-size: 0.88rem;
  }
  #search:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }

  .toolbar select {
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--fg);
    font-size: 0.84rem;
    font-family: inherit;
    cursor: pointer;
  }
  .toolbar select:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
  .toolbar select:hover { border-color: var(--accent); }

  .filters { display: flex; flex-wrap: wrap; gap: 8px; }

  .filter-btn {
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
  }
  .filter-btn:hover { border-color: var(--accent); color: var(--fg); }
  .filter-btn[aria-pressed="true"] {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent-strong);
  }
  .filter-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

  .columns-menu { position: relative; margin-left: auto; }
  .filter-menu { position: relative; }
  .columns-panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 20;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 8px;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .columns-panel[hidden] { display: none; }
  .columns-panel label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
  }
  .columns-panel label:hover { background: var(--surface-2); }
  .columns-panel input[type="checkbox"] { accent-color: var(--accent); width: 15px; height: 15px; }

  /* ---- table ---- */
  .table-scroll {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  table {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.84rem;
  }

  thead th {
    position: sticky;
    top: 0;
    background: var(--surface-2);
    text-align: left;
    padding: 10px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
  }
  thead th:hover { color: var(--fg); }
  thead th::after {
    content: "";
    display: inline-block;
    width: 0.7em;
    margin-left: 2px;
    opacity: 0.5;
  }
  thead th[aria-sort="ascending"]::after { content: "▲"; font-size: 0.6em; opacity: 1; color: var(--accent-strong); }
  thead th[aria-sort="descending"]::after { content: "▼"; font-size: 0.6em; opacity: 1; color: var(--accent-strong); }

  .info-tip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 700;
    cursor: help;
    vertical-align: middle;
  }
  .info-tip:hover, .info-tip:focus { border-color: var(--accent); color: var(--accent-strong); outline: none; }

  .shared-tooltip {
    position: fixed;
    width: 220px;
    background: var(--surface);
    color: var(--fg);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 8px 10px;
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.12s ease;
    z-index: 100;
    pointer-events: none;
  }
  .shared-tooltip.is-visible { opacity: 1; visibility: visible; }

  tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  tbody tr:last-child td { border-bottom: none; }
  tbody tr:hover td { background: var(--surface-2); }
  tbody tr.is-hidden { display: none; }
  .col-hidden { display: none !important; }

  th.col-venue, td.col-venue,
  th.col-room, td.col-room {
    position: sticky;
    background: var(--surface);
  }
  th.col-venue, td.col-venue { left: 0; min-width: 168px; }
  th.col-room, td.col-room { left: 168px; min-width: 108px; box-shadow: 2px 0 0 var(--border); }
  thead th.col-venue, thead th.col-room { background: var(--surface-2); z-index: 3; }
  tbody tr:hover td.col-venue, tbody tr:hover td.col-room { background: var(--surface-2); }
  td.col-venue, td.col-room { z-index: 1; }

  @media (max-width: 640px) {
    th.col-venue, td.col-venue,
    th.col-room, td.col-room {
      position: static;
      box-shadow: none;
    }
  }

  .room-name { font-weight: 600; }
  .venue-name { font-weight: 700; }

  .mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace; font-variant-numeric: tabular-nums; }
  th[data-key="screen"], td[data-col="screen"] { white-space: nowrap; }
  td[data-col="screen"] { font-size: 0.78rem; }

  .chips { display: flex; flex-wrap: wrap; gap: 4px; }
  .chip {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--muted);
    white-space: nowrap;
  }
  .chip--accent { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-strong); }

  .yn { font-weight: 700; }
  .yn--yes { color: var(--good); }
  .yn--no { color: var(--muted); font-weight: 400; }
  .yn--unknown { color: var(--muted); font-style: italic; font-weight: 400; font-size: 0.8rem; }

  .notes-cell { max-width: 240px; color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
  .notes-cell.empty { font-style: italic; opacity: 0.6; }

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

  .grade { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
  .grade-stars { font-size: 0.95rem; letter-spacing: 1px; color: var(--border); line-height: 1; }
  .grade-stars .star--filled { color: var(--accent); }
  .grade-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); }
  .grade--premium .grade-label, .grade--flagship .grade-label { color: var(--accent-strong); font-weight: 700; }

  tbody tr[data-openable] { cursor: pointer; }
  tbody tr[data-openable] .room-name { border-bottom: 1px solid var(--border); }
  tbody tr[data-openable]:hover .room-name,
  tbody tr[data-openable]:focus-visible .room-name { color: var(--accent-strong); }
  tbody tr[data-openable]:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

  /* ---- modal ---- */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 14, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 100;
  }
  .modal-overlay[hidden] { display: none; }

  .modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 640px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .modal-header h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 0 2px;
    letter-spacing: -0.01em;
  }
  .modal-header p { margin: 0; font-size: 0.82rem; color: var(--muted); }

  .modal-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
  }
  .modal-close:hover { color: var(--fg); border-color: var(--accent); }
  .modal-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

  .modal-body { padding: 20px; overflow-y: auto; }
  .modal-body h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin: 24px 0 10px;
  }
  .modal-body h3:first-child { margin-top: 0; }
  .modal-body p.desc { margin: 0 0 4px; font-size: 0.92rem; line-height: 1.55; }

  .spec-list {
    display: grid;
    grid-template-columns: minmax(100px, auto) 1fr;
    gap: 8px 16px;
    margin: 0;
    font-size: 0.86rem;
  }
  .spec-list dt {
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 2px;
  }
  .spec-list dd { margin: 0; }

  .projector-block + .projector-block { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--border); }


  .venue-rooms-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .venue-rooms-list__loading { color: var(--muted); font-style: italic; font-size: 0.9rem; }

  .room-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .room-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px 16px;
    font: inherit;
    text-align: left;
    background: none;
    border: none;
    padding: 14px 16px;
    cursor: pointer;
    color: var(--fg);
  }
  .room-row:hover { background: var(--surface-2); }
  .room-row:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
  .venue-rooms-list__name { font-weight: 700; font-size: 1rem; display: block; }
  .venue-rooms-list__meta { font-size: 0.82rem; color: var(--muted); }
  .venue-rooms-list__right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

  .room-row__chevron { flex-shrink: 0; color: var(--muted); transition: transform 0.15s ease; }
  .room-row[aria-expanded="true"] .room-row__chevron { transform: rotate(180deg); }

  .room-body {
    padding: 16px 16px 18px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .room-body[hidden] { display: none; }
  .room-body__notes { margin: 0; font-size: 0.88rem; color: var(--fg); line-height: 1.5; }

  .room-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
  }
  .room-spec-tile { display: flex; flex-direction: column; gap: 4px; }
  .room-spec-tile__label {
    font-size: 0.68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .room-spec-tile__value { font-size: 0.88rem; }

  .projector-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
  }
  .projector-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
  }
  .projector-card h4 {
    margin: 0 0 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
  }

  footer {
    color: var(--muted);
    font-size: 0.82rem;
  }
  footer:not(:empty) {
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
  .footer-disclaimer { margin: 0; }
  .footer-disclaimer__highlight { color: var(--accent-strong); font-style: italic; }
  .footer-disclaimer__body { opacity: 0.75; }
  #footer-note:not(:empty) { margin-top: 12px; }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
  }
