/* a11y.css — primitives the template had none of. */

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--base-100);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100001;
  padding: 0.75em 1.25em;
  background: var(--base-100);
  color: var(--base-600);
  font-family: "DM Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 0.2s;
}

.skip-link:focus { transform: translateY(0); }

.vh {
  position: absolute;
  width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* The menu toggle and the carousel controls were <div>s with click handlers. */
.nav-toggle,
.testimonials-nav-button,
.dining-nav-button,
.dining-minimap-item {
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* The preloader's Enter is a <button> wearing the link button's styles.
   It must NOT take `color: inherit` — button.css sets its own dark ink, and
   inheriting the cream body colour paints the label onto its own cream pill. */
button.slide-button {
  background: none;
  border: 0;
  font: inherit;
}

.nav-menu-links { list-style: none; }

/* Display scale, decoupled from the heading level: several titles here are
   decoration or a repeated label, not a section heading. */
.dsp {
  font-family: "Bodoni Moda", serif;
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
}

.icon {
  width: 1em;
  height: 1em;
  display: block;
}

address { font-style: normal; }
