
  :root { --font-heading: "Sora", system-ui, sans-serif; --font-body: "Outfit", system-ui, sans-serif; --ink: #201e1d; --paper: #f3f2f2; --blue: #079FFC; }
  body { margin: 0; background: var(--ink); color: var(--paper); font-family: var(--font-body); font-weight: 300; text-wrap: pretty; overflow: hidden; }
  pano-view { display: block; width: 100%; height: 100%; }
  image-slot { display: block; width: 100%; height: 100%; }
  a { color: var(--paper); text-decoration: none; }
  a:hover { color: var(--blue); }
  ::selection { background: var(--blue); color: var(--paper); }
  :focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
  @keyframes riseIn { from { opacity: 0; transform: translateY(0.5em); } to { opacity: 1; transform: none; } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  [data-page] [data-step] { opacity: 0; transform: translateY(30px); }
  [data-page][data-live] [data-step] { opacity: 1; transform: none; transition: opacity 900ms cubic-bezier(.22,.61,.36,1), transform 900ms cubic-bezier(.22,.61,.36,1); }
  [data-page] [data-rule] { transform: scaleX(0); transform-origin: left; }
  [data-page][data-live] [data-rule] { transform: scaleX(1); transition: transform 1100ms cubic-bezier(.22,.61,.36,1) 220ms; }
  [data-page] [data-zoom] { transform: scale(1.09); }
  [data-page][data-live] [data-zoom] { transform: none; transition: transform 2200ms cubic-bezier(.22,.61,.36,1); }
  [data-nav] { transition: background 260ms ease, color 260ms ease, opacity 260ms ease; }
  [data-nav]:hover { background: var(--blue) !important; color: var(--paper) !important; }
  [data-dot] { transition: background 380ms ease, width 380ms cubic-bezier(.34,1.56,.64,1); }
  @media (prefers-reduced-motion: reduce) {
    [data-page] [data-step] { opacity: 1 !important; transform: none !important; }
    [data-page] [data-zoom] { transform: none !important; }
  }
  @media (max-width: 1000px) {
    [data-two] { grid-template-columns: minmax(0, 1fr) !important; grid-template-rows: 40% 60% !important; }
    [data-three] { grid-template-columns: minmax(0, 1fr) !important; }
    [data-four] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  }
  @media (max-width: 640px) { [data-four] { grid-template-columns: minmax(0, 1fr) !important; } [data-slotframe] { display: none !important; } }
  /* Only the screen the address selects. Hidden rather than removed, so the
     words are still in the page for a search engine to read. */
  [data-page] { visibility: hidden; }
  [data-page][data-live] { visibility: visible; }
  /* The deck was drawn to be presented on a large screen, and its bar of
     nine dots, a counter and two buttons does not fit across a phone: Next
     ran off the edge and the counter broke onto three lines. The buttons
     matter most, so they keep their room and the dots stand down. */
  @media (max-width: 640px) {
    [data-dots] { display: none !important; }
    [data-counter] { white-space: nowrap; }
    [data-nav][data-prev], [data-nav][data-next] { padding: 12px 16px !important; }
  }
  [data-callslots]:not([data-open]) { display: none; }
  /* The design worked out the selected look in a script. A rule keyed on
     aria-pressed does the same job and keeps itself in step. */
  [data-opt][aria-pressed="true"] {
    background: var(--color-text) !important;
    color: var(--color-bg) !important;
    border-color: var(--color-text) !important;
  }
  [data-slot][aria-pressed="true"] {
    background: var(--color-text) !important;
    color: var(--color-bg) !important;
    border-color: var(--color-text) !important;
  }
